:root {
            --gold: #C9A96E;
            --gold-light: #D4B97A;
            --gold-dark: #B8944F;
            --bronze: #A0784C;
            --brown-dark: #3A2A1A;
            --brown: #5C4033;
            --brown-light: #8B7355;
            --cream: #FAF6F0;
            --cream-dark: #F0E8DC;
            --beige: #F5EDE3;
            --white: #FFFFFF;
            --text-dark: #2C1810;
            --text-medium: #6B5B4F;
            --text-light: #9A8B7F;
            --shadow: 0 4px 20px rgba(58, 42, 26, 0.08);
            --shadow-lg: 0 10px 40px rgba(58, 42, 26, 0.12);
            --radius: 12px;
            --radius-sm: 8px;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Lato', sans-serif;
            color: var(--text-dark);
            background: var(--cream);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            line-height: 1.3;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-label {
            font-family: 'Lato', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            background: rgba(201, 169, 110, 0.1);
            display: inline-block;
            padding: 6px 20px;
            border-radius: 30px;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--brown-dark);
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--text-medium);
            max-width: 600px;
            margin: 0 auto 48px;
            line-height: 1.7;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--white);
            padding: 14px 32px;
            border: none;
            border-radius: 50px;
            font-family: 'Lato', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(201, 169, 110, 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(201, 169, 110, 0.5);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--white);
            padding: 14px 32px;
            border: 2px solid rgba(255,255,255,0.6);
            border-radius: 50px;
            font-family: 'Lato', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.15);
            border-color: var(--white);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--gold-dark);
            padding: 10px 24px;
            border: 1.5px solid var(--gold);
            border-radius: 50px;
            font-family: 'Lato', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }

        .btn-outline:hover {
            background: var(--gold);
            color: var(--white);
        }

        /* Scroll Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* ============ NAVBAR ============ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 40px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: var(--transition);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .nav-logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: white;
            font-weight: 700;
        }

        .nav-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 3px;
            transition: color 0.3s;
        }

        .navbar.scrolled .nav-logo-text {
            color: var(--brown-dark);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            color: rgba(255,255,255,0.85);
            transition: color 0.3s;
            letter-spacing: 0.3px;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--white);
        }

        .navbar.scrolled .nav-links a {
            color: var(--text-medium);
        }

        .navbar.scrolled .nav-links a:hover,
        .navbar.scrolled .nav-links a.active {
            color: var(--gold-dark);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .nav-book-btn {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--white);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .nav-book-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
        }

        .nav-icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: rgba(255,255,255,0.15);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .navbar.scrolled .nav-icon-btn {
            background: var(--cream);
            color: var(--text-dark);
        }

        .nav-icon-btn:hover {
            background: rgba(255,255,255,0.25);
        }

        .navbar.scrolled .nav-icon-btn:hover {
            background: var(--cream-dark);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--white);
            transition: var(--transition);
        }

        .navbar.scrolled .hamburger span {
            background: var(--brown-dark);
        }

        /* ============ HERO ============ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(139, 115, 85, 0.75) 0%, rgba(160, 120, 76, 0.6) 50%, rgba(201, 169, 110, 0.4) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 120px 0 80px;
            max-width: 650px;
        }

        .hero-label {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold-light);
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: 3.8rem;
            color: var(--white);
            margin-bottom: 24px;
            line-height: 1.15;
        }

        .hero-title span {
            font-style: italic;
            color: var(--gold-light);
        }

        .hero-desc {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 36px;
            line-height: 1.8;
            max-width: 520px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* ============ STATS BAR ============ */
        .stats-bar {
            background: var(--white);
            padding: 48px 0;
            box-shadow: var(--shadow);
            position: relative;
            z-index: 3;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            text-align: center;
        }

        .stat-item {
            padding: 16px;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold-dark);
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-light);
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 700;
        }

        /* ============ SERVICES ============ */
        .services {
            padding: 100px 0;
            background: var(--cream);
        }

        .services-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 40px 32px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-dark));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.6rem;
        }

        .service-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            color: var(--brown-dark);
            margin-bottom: 8px;
        }

        .service-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold-dark);
            margin-bottom: 16px;
            font-family: 'Playfair Display', serif;
        }

        .service-desc {
            font-size: 0.9rem;
            color: var(--text-medium);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        /* ============ WHY CHOOSE ============ */
        .why-choose {
            padding: 100px 0;
            background: var(--white);
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .why-content {
            padding-right: 20px;
        }

        .why-content .section-title {
            font-size: 2.2rem;
        }

        .why-content .section-subtitle {
            margin: 0 0 36px;
            text-align: left;
        }

        .why-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .why-feature {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .why-feature-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .why-feature-title {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            color: var(--brown-dark);
            margin-bottom: 2px;
        }

        .why-feature-desc {
            font-size: 0.82rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        .why-image {
            position: relative;
        }

        .why-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
        }

        .google-badge {
            position: absolute;
            top: 24px;
            right: -20px;
            background: var(--white);
            border-radius: var(--radius);
            padding: 16px 20px;
            box-shadow: var(--shadow-lg);
            text-align: center;
        }

        .google-badge-score {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--brown-dark);
        }

        .google-badge-stars {
            color: #F5A623;
            font-size: 0.85rem;
            margin-bottom: 2px;
        }

        .google-badge-text {
            font-size: 0.7rem;
            color: var(--text-light);
            letter-spacing: 0.5px;
        }

        /* ============ GALLERY ============ */
        .gallery {
            padding: 100px 0;
            background: var(--cream);
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            height: 280px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-item-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(58, 42, 26, 0.5) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }

        /* ============ TESTIMONIALS ============ */
        .testimonials {
            padding: 100px 0;
            background: var(--white);
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .testimonial-card {
            background: var(--cream);
            border-radius: var(--radius);
            padding: 40px;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            color: var(--gold);
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 30px;
            line-height: 1;
        }

        .testimonial-stars {
            color: #F5A623;
            font-size: 0.9rem;
            margin-bottom: 16px;
        }

        .testimonial-text {
            font-size: 1rem;
            color: var(--text-medium);
            line-height: 1.8;
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .testimonial-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-name {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            color: var(--brown-dark);
        }

        .testimonial-role {
            font-size: 0.82rem;
            color: var(--text-light);
        }

        /* ============ CONTACT ============ */
        .contact {
            padding: 100px 0;
            background: var(--cream);
        }

        .contact-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 64px;
            align-items: start;
        }

        .contact-info {
            padding-top: 10px;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 28px;
        }

        .contact-info-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.1rem;
        }

        .contact-info-label {
            font-size: 0.8rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .contact-info-value {
            font-size: 0.95rem;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .contact-socials {
            display: flex;
            gap: 12px;
            margin-top: 32px;
        }

        .contact-social-btn {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            border: none;
            background: var(--gold);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            text-decoration: none;
        }

        .contact-social-btn:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
        }

        .contact-form-wrapper {
            background: var(--white);
            border-radius: var(--radius);
            padding: 48px;
            box-shadow: var(--shadow);
        }

        .contact-form-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--brown-dark);
            margin-bottom: 8px;
        }

        .contact-form-subtitle {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 32px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            border: 1.5px solid var(--cream-dark);
            border-radius: var(--radius-sm);
            font-family: 'Lato', sans-serif;
            font-size: 0.95rem;
            color: var(--text-dark);
            background: var(--cream);
            transition: var(--transition);
            outline: none;
        }

        .form-control:focus {
            border-color: var(--gold);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
        }

        .form-control::placeholder {
            color: var(--text-light);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-submit {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 8px;
        }

        .form-submit:hover {
            box-shadow: 0 6px 25px rgba(201, 169, 110, 0.45);
            transform: translateY(-2px);
        }

        /* ============ FOOTER ============ */
        .footer {
            background: var(--brown-dark);
            color: rgba(255,255,255,0.7);
            padding: 80px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 48px;
            padding-bottom: 60px;
        }

        .footer-brand .nav-logo-text {
            color: var(--white);
            font-size: 1.6rem;
            margin-bottom: 16px;
            display: block;
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .footer-socials {
            display: flex;
            gap: 10px;
        }

        .footer-social-link {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .footer-social-link:hover {
            background: var(--gold);
        }

        .footer-heading {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: var(--white);
            margin-bottom: 24px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--gold-light);
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 16px;
            font-size: 0.9rem;
        }

        .footer-contact-item span:first-child {
            min-width: 20px;
            text-align: center;
        }

        .footer-newsletter p {
            font-size: 0.9rem;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .footer-newsletter-form {
            display: flex;
            gap: 8px;
        }

        .footer-newsletter-input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 50px;
            background: rgba(255,255,255,0.08);
            color: var(--white);
            font-family: 'Lato', sans-serif;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .footer-newsletter-input::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .footer-newsletter-input:focus {
            border-color: var(--gold);
        }

        .footer-newsletter-btn {
            padding: 12px 24px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-family: 'Lato', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }

        .footer-newsletter-btn:hover {
            box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.82rem;
        }

        .footer-bottom a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            color: var(--gold-light);
        }

        /* ============ MOBILE NAV ============ */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            padding: 32px 24px;
            flex-direction: column;
            gap: 0;
        }

        .mobile-nav.active {
            display: flex;
        }

        .mobile-nav a {
            display: block;
            padding: 16px 0;
            font-size: 1.1rem;
            color: var(--text-dark);
            text-decoration: none;
            border-bottom: 1px solid var(--cream-dark);
            transition: color 0.3s;
        }

        .mobile-nav a:hover {
            color: var(--gold-dark);
        }

        .mobile-nav .btn-primary {
            margin-top: 24px;
            text-align: center;
            justify-content: center;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3rem;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                gap: 40px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .nav-actions .nav-book-btn,
            .nav-actions .nav-icon-btn:not(.hamburger) {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .navbar {
                padding: 0 20px;
            }

            .hero-title {
                font-size: 2.4rem;
            }

            .hero-desc {
                font-size: 1rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .section-title {
                font-size: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                max-width: 420px;
                margin: 0 auto;
            }

            .why-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .why-content {
                padding-right: 0;
                text-align: center;
            }

            .why-content .section-subtitle {
                text-align: center;
            }

            .why-features {
                max-width: 400px;
                margin: 0 auto;
            }

            .google-badge {
                right: 16px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-form-wrapper {
                padding: 32px 24px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
        }