        :root {
            --primary: #0f5c48;
            --secondary: #d97706;
            --accent: #f59e0b;
            --dark: #0b3d2e;
            --light: #f3f8f5;
            --gray: #5f6f68;
            --white: #ffffff;
            --gradient: linear-gradient(135deg, #0f5c48 0%, #0b3d2e 100%);
            --accent-gradient: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

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

        /* Top Bar */
        .top-bar {
            background: var(--dark);
            color: var(--white);
            padding: 10px 0;
            font-size: 14px;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar-left svg {
            width: 18px;
            height: 18px;
            fill: var(--secondary);
        }

        .top-bar-right {
            display: flex;
            gap: 15px;
        }

        .top-bar-right a {
            width: 32px;
            height: 32px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .top-bar-right a:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }

        .top-bar-right svg {
            width: 16px;
            height: 16px;
            fill: white;
        }

        /* Header */
        header {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            gap: 20px;
        }

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

        .logo img {
            width: 70px;
            height: 70px;
            object-fit: contain;
        }

        .logo-text h1 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
        }

        .logo-text span {
            font-size: 12px;
            color: var(--secondary);
            font-weight: 600;
            letter-spacing: 1px;
        }

        nav ul {
            display: flex;
            gap: 28px;
            align-items: center;
        }

        nav a {
            font-weight: 500;
            font-size: 15px;
            color: var(--dark);
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover,
        nav a.active {
            color: var(--secondary);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }

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

        .header-cta {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--accent-gradient);
            color: white;
            padding: 12px 22px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
        }

        .header-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
        }

        .header-cta svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--primary);
            margin: 5px 0;
            border-radius: 2px;
            transition: 0.3s;
        }

        /* Hero */
        .hero {
            background: var(--gradient);
            color: white;
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(217,119,6,0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h2 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .hero-content h2 span {
            color: var(--secondary);
        }

        .hero-content p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 480px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--accent-gradient);
            color: white;
            box-shadow: 0 4px 20px rgba(217, 119, 6, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(217, 119, 6, 0.5);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.4);
        }

        .btn-outline:hover {
            background: white;
            color: var(--primary);
            border-color: white;
        }

        .hero-image {
            position: relative;
            text-align: center;
        }

        .hero-slider {
            position: relative;
            width: 100%;
            max-width: 460px;
            margin: 0 auto;
            aspect-ratio: 4 / 3;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.35);
        }

        .hero-slider .slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transform: scale(1.03);
            transition: opacity 1s ease, transform 6s ease;
        }

        .hero-slider .slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 1;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 16px;
            position: relative;
            z-index: 2;
        }

        .slider-dots .dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dots .dot.active {
            background: var(--secondary);
            width: 24px;
            border-radius: 5px;
        }

        .hero-badge {
            position: relative;
            display: inline-flex;
            margin-top: 14px;
            background: white;
            color: var(--dark);
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            z-index: 2;
        }

        .hero-badge span {
            color: var(--secondary);
            font-size: 20px;
        }

        /* Features */
        .features {
            background: var(--white);
            padding: 0;
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .feature-card {
            background: white;
            padding: 30px 20px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.12);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #e7f5ee, #cdeada);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 28px;
        }

        .feature-card h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--primary);
        }

        .feature-card p {
            font-size: 13px;
            color: var(--gray);
        }

        /* About */
        .about {
            padding: 100px 0;
            background: var(--light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header .label {
            display: inline-block;
            background: rgba(217, 119, 6, 0.1);
            color: var(--secondary);
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .section-header p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            font-size: 16px;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-content h3 {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .about-content p {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 15px;
        }

        .about-list {
            margin: 25px 0;
        }

        .about-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-weight: 500;
            font-size: 15px;
        }

        .about-list li::before {
            content: '✓';
            width: 24px;
            height: 24px;
            background: var(--accent-gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .stat-item h4 {
            font-size: 32px;
            font-weight: 800;
            color: var(--secondary);
            line-height: 1;
        }

        .stat-item span {
            font-size: 13px;
            color: var(--gray);
            font-weight: 500;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        /* Services */
        .services {
            padding: 100px 0;
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: var(--light);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent-gradient);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(217, 119, 6, 0.2);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 36px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }

        .service-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 20px;
        }

        .service-card .btn-sm {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--secondary);
            font-weight: 600;
            font-size: 14px;
            transition: gap 0.3s;
        }

        .service-card .btn-sm:hover {
            gap: 10px;
        }

        /* CTA */
        .cta {
            background: var(--gradient);
            padding: 80px 0;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(217,119,6,0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
        }

        .cta p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        .cta .btn-primary {
            font-size: 18px;
            padding: 18px 40px;
            position: relative;
        }

        /* Contact */
        .contact {
            padding: 100px 0;
            background: var(--light);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info h3 {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .contact-info p {
            color: var(--gray);
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        .contact-item .icon {
            width: 50px;
            height: 50px;
            background: var(--accent-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 20px;
        }

        .contact-item h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .contact-item a,
        .contact-item span {
            color: var(--gray);
            font-size: 15px;
        }

        .contact-item a:hover {
            color: var(--secondary);
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        .contact-form h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 6px;
            color: var(--dark);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-family: inherit;
            font-size: 15px;
            transition: border-color 0.3s;
            background: var(--light);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--secondary);
        }

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

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .logo-text h1 {
            color: white;
            font-size: 20px;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
            margin: 15px 0 20px;
            max-width: 280px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

        .footer-social svg {
            width: 18px;
            height: 18px;
            fill: white;
        }

        .footer-col h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul a {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-col ul a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 20px 0;
            text-align: center;
            color: rgba(255,255,255,0.5);
            font-size: 13px;
        }

        /* Floating Buttons */
        .float-btns {
            position: fixed;
            bottom: 25px;
            right: 25px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 999;
        }

        .float-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }

        .float-btn:hover {
            transform: scale(1.1);
        }

        .float-btn.call {
            background: var(--accent-gradient);
        }

        .float-btn.whatsapp {
            background: #25d366;
        }

        .float-btn svg {
            width: 26px;
            height: 26px;
            fill: white;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image {
                order: -1;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            nav {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .header-cta span {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero-content h2 {
                font-size: 32px;
            }

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

            .services-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .features-grid {
                grid-template-columns: 1fr;
            }

            .hero {
                padding: 50px 0 80px;
            }

            .btn {
                padding: 14px 24px;
                font-size: 14px;
            }
        }

        /* Mobile Nav */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 2000;
            padding: 80px 30px 30px;
            flex-direction: column;
            gap: 20px;
        }

        .mobile-nav.active {
            display: flex;
        }

        .mobile-nav a {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary);
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }

        .mobile-nav .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 30px;
            cursor: pointer;
            color: var(--primary);
        }

/* ============ Page Hero (Services / Contact inner pages) ============ */
.page-hero {
    background: var(--gradient);
    color: white;
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217,119,6,0.18) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}

.page-hero p {
    font-size: 17px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 18px;
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.85;
    position: relative;
}

.breadcrumb a {
    color: white;
}

.breadcrumb a:hover {
    color: var(--secondary);
}

/* ============ Photo Services Showcase (Home) ============ */
.photo-services {
    padding: 100px 0;
    background: var(--light);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.photo-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.photo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.photo-card .photo-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.photo-card .photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.photo-card:hover .photo-wrap img {
    transform: scale(1.06);
}

.photo-card-body {
    padding: 24px 22px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.photo-card-body h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.photo-card-body p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 18px;
    flex: 1;
}

.photo-card-actions {
    display: flex;
    gap: 10px;
}

.btn-tiny {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-tiny svg {
    width: 15px;
    height: 15px;
}

.btn-tiny.call {
    background: var(--accent-gradient);
    color: white;
}

.btn-tiny.call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(217,119,6,0.35);
}

.btn-tiny.whatsapp {
    background: #25d366;
    color: white;
}

.btn-tiny.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37,211,102,0.35);
}

/* ============ Areas We Serve (Service-area SEO chips) ============ */
.areas-served {
    padding: 90px 0;
    background: white;
}

.area-block {
    background: var(--light);
    border-radius: 16px;
    padding: 28px 26px;
    margin-bottom: 20px;
}

.area-block h3 {
    color: var(--primary);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
}

.area-block .area-sub {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 16px;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    background: white;
    border: 1px solid #e2e8f0;
    color: var(--dark);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 50px;
}

/* ============ FAQ ============ */
.faq {
    padding: 90px 0;
    background: var(--light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 14px;
    margin-bottom: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
}

.faq-question .plus {
    font-size: 22px;
    color: var(--secondary);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question .plus {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray);
    font-size: 14px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ============ Services page detail cards ============ */
.services-detail {
    padding: 100px 0;
    background: white;
}

/* ============ Map ============ */
.map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    margin-top: 40px;
}

.map-wrap iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

/* ============ Responsive additions ============ */
@media (max-width: 992px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 30px;
    }

    .area-block {
        padding: 22px 18px;
    }
}

/* Anchor offset for sticky header */
section[id] { scroll-margin-top: 90px; }
