/* ============================================
   FELIX'S CLEANING SERVICE - STYLESHEET
   Brand Colors: Navy Blue (#1A2B4D), Golden Yellow (#FFD700), White, Brown (#8B4513)
   ============================================ */

/* CSS Variables for Brand Colors */
:root {
    --primary-navy: #1A2B4D;
    --primary-gold: #FFD700;
    --primary-brown: #8B4513;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --text-gray: #666666;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--primary-navy);
}

.btn-primary:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    display: block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-navy);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--primary-gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-navy);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    transition: var(--transition);
    border-radius: 3px;
}

/* Hero Section with Parallax */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(135deg, rgba(26, 43, 77, 0.4) 0%, rgba(42, 63, 95, 0.4) 100%), url('https://lirp.cdn-website.com/22fd6f6b/dms3rep/multi/opt/ceiling+fan+installation-1920w.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="stars" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23FFD700" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%23FFD700" opacity="0.4"/><circle cx="40" cy="70" r="1" fill="%23FFD700" opacity="0.3"/><circle cx="90" cy="80" r="1" fill="%23FFD700" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 43, 77, 0.4);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 1400px;
    width: 100%;
}

.hero-main-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-form-container {
    flex: 0 0 380px;
}

.hero-contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-form-title {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    text-align: center;
}

.hero-contact-form .contact-form {
    gap: 0.75rem;
}

.hero-contact-form .form-group {
    margin-bottom: 0;
}

.hero-contact-form .form-group label {
    color: var(--primary-navy);
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.hero-contact-form .form-group input,
.hero-contact-form .form-group select,
.hero-contact-form .form-group textarea {
    color: var(--dark-gray);
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 6px;
    border: 2px solid #ddd;
}

.hero-contact-form .form-group textarea {
    min-height: 80px;
    rows: 4;
}

.hero-contact-form .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.mobile-contact-form {
    display: none;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-gold);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

/* Services Section */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-gold);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-gold), #FFC700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.services-note {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.services-note p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin: 0;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    display: flex;
    flex-direction: column;
}

.about-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-header .section-title {
    margin-bottom: 0;
    flex: 1;
}

.about-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 12px;
    flex-shrink: 0;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-gold);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-item span:last-child {
    color: var(--dark-gray);
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    background: var(--light-gray);
}

.gallery-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Desktop Gallery Carousel */
.gallery-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 20px;
}

.gallery-carousel {
    overflow: hidden;
    border-radius: 15px;
}

.gallery-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    width: 100%;
}

.gallery-carousel-track .gallery-item {
    min-width: calc((100% - 4rem) / 3);
    flex-shrink: 0;
    width: calc((100% - 4rem) / 3);
}

.gallery-carousel-nav {
    display: none;
}

.gallery-carousel-nav:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-50%) scale(1.1);
}

.gallery-carousel-prev {
    left: 10px;
}

.gallery-carousel-next {
    right: 10px;
}

.gallery-carousel-nav svg {
    width: 24px;
    height: 24px;
}

.gallery-carousel-dots {
    display: none;
}

.gallery-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-gray);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.gallery-carousel-dot.active {
    background: var(--primary-gold);
    transform: scale(1.3);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-view-all {
    text-align: center;
    margin-top: 2rem;
}

.gallery-carousel-wrapper {
    position: relative;
    display: block;
}

.gallery-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow-lg);
    display: none;
}

.gallery-nav {
    display: none;
}

.gallery-dots {
    display: none;
}

.gallery-slide {
    display: none;
    width: 100%;
}

.gallery-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 3px 10px var(--shadow);
}

.gallery-nav:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-nav svg {
    width: 24px;
    height: 24px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-gray);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.gallery-dot.active {
    background: var(--primary-gold);
    transform: scale(1.3);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 3rem;
}

.contact-info-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    max-width: 500px;
    width: 100%;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
    width: 100%;
    align-items: center;
    text-align: left;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px var(--shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-gold);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details {
    text-align: left;
    flex: 1;
}

.contact-details h3 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details a,
.contact-details address {
    color: var(--text-gray);
    font-style: normal;
    line-height: 1.6;
}

.contact-details a:hover {
    color: var(--primary-navy);
}

.contact-form-container {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo h3 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.footer-logo p {
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    /* Navigation Mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 0;
        box-shadow: 0 5px 20px var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }

    .logo-text {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        min-height: 500px;
        margin-top: 70px;
    }

    .hero-main-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-form-container {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .mobile-contact-form {
        display: block;
    }

    /* Services Mobile - Single Card Slider */
    .services {
        padding: 50px 0;
    }

    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
        padding: 0 20px 1rem;
        margin-bottom: 2rem;
        scrollbar-width: none;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        min-width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        scroll-snap-align: start;
        flex-shrink: 0;
        padding: 2rem 1.5rem;
        margin: 0;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.25rem;
    }

    .service-icon svg {
        width: 35px;
        height: 35px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.875rem;
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .services-note {
        padding: 1.5rem;
        margin: 0 20px;
        font-size: 1rem;
    }

    .services-note p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* About Mobile */
    .about-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-logo {
        width: 100px;
        height: 100px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    /* Gallery Mobile */
    .gallery-carousel-wrapper {
        display: none;
    }

    .gallery-carousel-dots {
        display: none;
    }

    .gallery-slider {
        display: block;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-nav svg {
        width: 20px;
        height: 20px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    /* Contact Mobile */
    .contact-wrapper {
        gap: 2rem;
    }

    .contact-info-wrapper {
        width: 100%;
    }

    .contact-info {
        max-width: 100%;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .contact-details {
        text-align: center;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Typography Mobile */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-top: 1rem;
        padding: 0 10px;
    }

    .section-title {
        font-size: 1.75rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        padding: 0 15px 1rem;
        gap: 1rem;
    }

    .service-card {
        min-width: calc(100% - 30px);
        max-width: calc(100% - 30px);
        padding: 1.75rem 1.25rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }

    .service-icon svg {
        width: 30px;
        height: 30px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .services-note {
        padding: 1.25rem;
        margin: 0 15px;
    }

    .services-note p {
        font-size: 0.95rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-background {
        background-attachment: scroll;
    }
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-buttons,
    .contact-form,
    .footer {
        display: none;
    }

    .hero {
        height: auto;
        min-height: auto;
    }
}

