/* ============================================
   Squeaky's Cleaning Services Louisville
   Global Stylesheet
   ============================================ */

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

:root {
    --primary-tan: #9B8568;
    --primary-tan-dark: #8a7458;
    --cream: #FAF7F2;
    --dark-text: #2C2420;
    --light-tan: #C4B5A0;
    --white: #FFFFFF;
    --text-muted: #5C5248;
    --border-light: rgba(0,0,0,0.1);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 24px rgba(0,0,0,0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-tan);
    text-decoration: none;
    white-space: nowrap;
    margin-right: auto;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    gap: 1.75rem;
    align-items: center;
    margin-right: 1.5rem;
}

.nav a,
.nav .dropdown > a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.nav a:hover {
    color: var(--primary-tan);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow-md);
    z-index: 100;
    border-radius: 8px;
    padding: 0.75rem 0;
    padding-top: 0.75rem;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-content::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    background: transparent;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    padding: 0.6rem 1.5rem;
    display: block;
    color: var(--dark-text);
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background: var(--cream);
    color: var(--primary-tan);
}

.header-cta {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-shrink: 0;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    min-width: 48px;
    min-height: 48px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-text);
    margin: 5px 0;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 0.8rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    text-align: center;
}

.btn-primary {
    background: var(--primary-tan);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-tan-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(155, 133, 104, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary-tan);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary-tan);
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

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

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

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   HERO SECTION (Full-Height, Homepage)
   ============================================ */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #2C2420;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    padding: 0 2rem;
    color: var(--white);
}

.google-rating-bubble {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
}

.google-rating-stars {
    color: #FFB800;
    font-size: 0.95rem;
    line-height: 1;
    display: inline-flex;
    gap: 2px;
}

.google-rating-text {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero h2 {
    font-size: 1.35rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    line-height: 1.6;
}

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

/* ============================================
   HERO SMALL (Subpages)
   ============================================ */
.hero-small {
    position: relative;
    background: linear-gradient(135deg, rgba(155, 133, 104, 0.85) 0%, rgba(44, 36, 32, 0.85) 100%),
                url('https://images.unsplash.com/photo-1548802673-380ab8ebc7b7?w=1920&h=1080&fit=crop') center/cover;
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.hero-small h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-small p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 300;
}

.hero-small .hero-buttons {
    margin-top: 1.5rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 5rem 2rem;
}

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

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.bg-white {
    background: var(--white);
}

.bg-cream {
    background: var(--cream);
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 3rem 2rem;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    min-width: 130px;
}

.badge-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-tan), var(--primary-tan-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(155, 133, 104, 0.3);
}

.badge-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-text);
    text-align: center;
    letter-spacing: 0.01em;
}

/* ============================================
   REVIEW PLATFORMS BAR
   ============================================ */
.review-platforms {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    padding: 1.75rem 2rem;
}

.review-platforms-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.review-platforms-label {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex-shrink: 0;
}

.review-platforms-title {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.3;
}

.review-platforms-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.review-platforms-logos {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.review-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.platform-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1;
}

.platform-google {
    font-family: 'Product Sans', 'Lato', sans-serif;
    background: linear-gradient(90deg, #4285F4 0%, #4285F4 20%, #EA4335 20%, #EA4335 40%, #FBBC05 40%, #FBBC05 60%, #34A853 60%, #34A853 80%, #EA4335 80%, #EA4335 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.65rem;
}

.platform-facebook {
    color: #1877F2;
    font-size: 1.75rem;
}

.platform-facebook .fab {
    font-size: 1.75rem;
}

.platform-yelp {
    color: #D32323;
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.yelp-icon {
    color: #D32323;
    font-style: normal;
    font-size: 1.1rem;
}

.platform-thumbtack {
    color: #2b2b2b;
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.platform-nextdoor {
    color: #8BC34A;
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.platform-stars {
    font-size: 0.95rem;
    letter-spacing: 2px;
    line-height: 1;
}

.platform-stars-green {
    color: #34A853;
}

@media (max-width: 768px) {
    .review-platforms {
        padding: 1.25rem 1rem;
    }

    .review-platforms-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .review-platforms-label {
        text-align: center;
    }

    .review-platforms-logos {
        gap: 1.5rem;
    }

    .platform-name {
        font-size: 0.95rem;
    }

    .platform-google {
        font-size: 1.05rem;
    }

    .platform-facebook,
    .platform-yelp,
    .platform-thumbtack,
    .platform-nextdoor {
        font-size: 0.95rem;
    }

    .platform-stars {
        font-size: 0.7rem;
    }
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-tan);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: var(--primary-tan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.process-item {
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: var(--primary-tan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
}

.process-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.process-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 12px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-tan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    color: var(--dark-text);
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-stars {
    color: #FFB800;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
}

/* ============================================
   BEFORE/AFTER GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--primary-tan);
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
}

.cta-section.cta-bg-image {
    background: linear-gradient(135deg, rgba(44, 36, 32, 0.82) 0%, rgba(155, 133, 104, 0.78) 100%), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&h=800&fit=crop') center/cover no-repeat;
    padding: 6rem 2rem;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.92;
}

.cta-section .btn {
    margin: 0 0.5rem;
}

/* ============================================
   MAP SECTION
   ============================================ */
/* ============================================
   SERVICE AREA SECTION
   ============================================ */
.service-area-section {
    background: var(--white);
    padding: 5rem 2rem;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.area-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.area-region-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-tan) 0%, var(--primary-tan-dark) 100%);
    color: var(--white);
    border-radius: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(155, 133, 104, 0.3);
}

.area-region-card.area-region-indiana {
    background: linear-gradient(135deg, #6B8F71 0%, #4A6B4F 100%);
    box-shadow: 0 4px 12px rgba(74, 107, 79, 0.3);
}

.area-region-icon {
    font-size: 1rem;
    opacity: 0.85;
    color: var(--primary-tan);
}

.area-location-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    background: var(--cream);
    color: var(--dark-text);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.area-location-card:hover {
    background: var(--cream);
    border-color: var(--primary-tan);
    box-shadow: 0 4px 12px rgba(155, 133, 104, 0.2);
    transform: translateY(-2px);
    color: var(--primary-tan);
}

.area-pin {
    color: var(--primary-tan);
    font-size: 0.4rem;
    flex-shrink: 0;
}

.area-region-indiana ~ .area-location-card .area-pin {
    color: #6B8F71;
}

.area-column:last-child .area-location-card:hover {
    border-color: #6B8F71;
    box-shadow: 0 4px 12px rgba(74, 107, 79, 0.15);
    color: #4A6B4F;
}

@media (max-width: 1024px) {
    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service-area-section {
        padding: 3.5rem 1.25rem;
    }

    .area-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .area-region-card {
        font-size: 1rem;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    border-left: 4px solid transparent;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-item.active {
    border-left-color: var(--primary-tan);
    box-shadow: 0 4px 16px rgba(155, 133, 104, 0.15);
}

.faq-question {
    padding: 1.35rem 1.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    user-select: none;
    color: var(--dark-text);
}

.faq-question:hover {
    color: var(--primary-tan);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--primary-tan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    line-height: 1;
}

.faq-item.active .faq-icon {
    background: var(--primary-tan);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.75rem 0 1.75rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.98rem;
    border-top: 0px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.75rem 1.5rem 1.75rem;
    border-top: 1px solid var(--cream);
    padding-top: 1.25rem;
}

/* ============================================
   CONTENT PAGES (Service / Location)
   ============================================ */
.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.content-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: var(--primary-tan);
    margin-bottom: 1.25rem;
}

.content-block p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block ul {
    list-style: none;
    margin: 1rem 0;
}

.content-block ul li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.content-block ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-tan);
    font-weight: 700;
}

/* Image Row */
.image-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.image-row img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

/* Related Services */
.related-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.related-service-link {
    background: var(--cream);
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--dark-text);
    transition: all 0.3s;
    display: block;
    font-weight: 500;
}

.related-service-link:hover {
    transform: translateY(-4px);
    background: var(--primary-tan);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

/* CTA Box (in content) */
.cta-box {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
}

.cta-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.cta-box p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* ============================================
   CHECKLIST TABS
   ============================================ */
.checklist-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

.checklist-tab {
    padding: 0.85rem 2.25rem;
    background: none;
    border: 1px solid #d0d0d0;
    border-right: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s;
}

.checklist-tab:first-child {
    border-radius: 8px 0 0 8px;
}

.checklist-tab:last-child {
    border-radius: 0 8px 8px 0;
    border-right: 1px solid #d0d0d0;
}

.checklist-tab:hover {
    color: var(--primary-tan);
    background: rgba(155, 133, 104, 0.05);
}

.checklist-tab.active {
    color: var(--primary-tan);
    background: var(--white);
    border-color: var(--primary-tan);
    border-right: 1px solid var(--primary-tan);
    position: relative;
    z-index: 1;
}

.checklist-tab.active + .checklist-tab {
    border-left-color: var(--primary-tan);
}

.checklist-tab-content {
    display: none;
}

.checklist-tab-content.active {
    display: block;
}

/* ============================================
   CHECKLIST TABLE
   ============================================ */
.checklist-table-wrapper {
    overflow-x: auto;
    background: var(--cream);
    border-radius: 16px;
    padding: 1.5rem;
}

.checklist-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    min-width: 600px;
}

.checklist-table thead th {
    background: var(--light-tan);
    color: var(--white);
    padding: 1.25rem 2rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.05rem;
}

.checklist-table thead th:first-child {
    text-align: left;
    min-width: 300px;
    border-radius: 10px 0 0 10px;
}

.checklist-table thead th:last-child {
    border-radius: 0 10px 10px 0;
}

.checklist-table tbody td {
    padding: 1.15rem 2rem;
    font-size: 1rem;
    color: var(--dark-text);
    background: var(--white);
}

.checklist-table tbody td:first-child {
    border-radius: 8px 0 0 8px;
}

.checklist-table tbody td:last-child {
    border-radius: 0 8px 8px 0;
}

.checklist-table tbody tr:nth-child(odd) td {
    background: var(--cream);
}

.checklist-table tbody tr:nth-child(even) td {
    background: var(--white);
}

.checklist-table tbody td:not(:first-child) {
    text-align: center;
    font-size: 1.35rem;
}

.checklist-table tbody tr:hover td {
    background: rgba(155, 133, 104, 0.1);
}

.check-yes {
    color: #4CAF50;
    font-weight: 700;
}

.check-no {
    color: #e74c3c;
    font-weight: 700;
}

.check-na {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
}

/* ============================================
   SERVICE PAGE LAYOUT
   ============================================ */
.service-hero {
    background: linear-gradient(135deg, rgba(155, 133, 104, 0.9) 0%, rgba(44, 36, 32, 0.9) 100%),
                url('https://images.unsplash.com/photo-1548802673-380ab8ebc7b7?w=1920&h=1080&fit=crop') center/cover;
    color: var(--white);
    padding: 4.5rem 2rem 3rem;
    text-align: center;
}

.service-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.service-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 300;
    line-height: 1.7;
}

.service-hero .hero-buttons {
    margin-bottom: 0;
}

.service-content {
    padding: 4rem 2rem;
}

.service-content .section-container {
    max-width: 1100px;
}

.service-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.service-two-col.reversed {
    direction: rtl;
}

.service-two-col.reversed > * {
    direction: ltr;
}

.service-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-text p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-text p:last-child {
    margin-bottom: 0;
}

.service-text ul {
    list-style: none;
    margin: 1.25rem 0;
}

.service-text ul li {
    padding: 0.45rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.service-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

.service-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}

.service-full-width {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.service-full-width h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: var(--dark-text);
    margin-bottom: 1.25rem;
}

.service-full-width p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-full-width p:last-child {
    margin-bottom: 0;
}

.service-full-width ul {
    list-style: none;
    margin: 1.25rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem 2rem;
}

.service-full-width ul li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-muted);
    font-size: 1.02rem;
}

.service-full-width ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

/* Service page FAQ overrides */
.service-faq {
    padding: 4rem 2rem;
    background: var(--white);
}

.service-faq .faq-container {
    max-width: 900px;
}

.service-faq h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Service related services grid */
.service-related {
    padding: 4rem 2rem;
    background: var(--cream);
}

.service-related h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 2.5rem;
}

.service-related .services-grid {
    max-width: 1100px;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
    .service-two-col {
        grid-template-columns: 1fr;
    }

    .service-two-col.reversed {
        direction: ltr;
    }

    .service-img img {
        min-height: 260px;
    }

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

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.25rem;
    }

    .service-content {
        padding: 3rem 1.5rem;
    }

    .service-full-width {
        padding: 2rem 1.5rem;
    }

    .service-full-width ul {
        grid-template-columns: 1fr;
    }

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

/* ============================================
   LOCATION PAGE LAYOUT
   ============================================ */
.loc-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(155, 133, 104, 0.92) 0%, rgba(44, 36, 32, 0.92) 100%),
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&h=1080&fit=crop') center/cover;
    color: var(--white);
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.loc-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.25rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.loc-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.95;
}

.loc-hero .hero-buttons {
    margin-bottom: 0;
}

/* Location Intro */
.loc-intro {
    padding: 4rem 2rem;
    background: var(--white);
}

.loc-intro .section-container {
    max-width: 900px;
}

.loc-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.loc-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.loc-intro p:last-child {
    margin-bottom: 0;
}

/* Location Two-Column */
.loc-content {
    padding: 4rem 2rem;
}

.loc-content .section-container {
    max-width: 1100px;
}

.loc-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3.5rem;
}

.loc-two-col.reversed {
    direction: rtl;
}

.loc-two-col.reversed > * {
    direction: ltr;
}

.loc-text {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-tan);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.loc-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.loc-text p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.loc-text p:last-child {
    margin-bottom: 0;
}

.loc-text ul {
    list-style: none;
    margin: 1.25rem 0;
}

.loc-text ul li {
    padding: 0.45rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.loc-text ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

.loc-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.loc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 340px;
    transition: transform 0.4s ease;
}

.loc-img:hover img {
    transform: scale(1.03);
}

/* Location Gallery */
.loc-gallery {
    padding: 4rem 2rem;
    background: var(--white);
}

.loc-gallery .section-container {
    max-width: 1100px;
}

.loc-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
}

.loc-gallery .gallery-card img {
    height: 280px;
}

/* Location Features Grid */
.loc-features {
    padding: 4rem 2rem;
    background: var(--cream);
}

.loc-features .section-container {
    max-width: 1100px;
}

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

.loc-feature-card {
    background: var(--white);
    padding: 2.25rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s;
}

.loc-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.loc-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary-tan), var(--primary-tan-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.35rem;
}

.loc-feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.loc-feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Location Checklist */
.loc-checklist {
    padding: 4rem 2rem;
    background: var(--white);
}

.loc-checklist .section-container {
    max-width: 1000px;
}

.loc-checklist-box {
    background: var(--cream);
    padding: 3rem;
    border-radius: 12px;
}

.loc-checklist-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
    text-align: center;
}

.loc-checklist-box > p {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.loc-checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 2.5rem;
    list-style: none;
}

.loc-checklist-grid li {
    padding: 0.55rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.loc-checklist-grid li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

/* Location FAQ */
.loc-faq {
    padding: 4rem 2rem;
    background: var(--cream);
}

.loc-faq .faq-container {
    max-width: 900px;
}

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

/* Location Nearby Areas */
.loc-nearby {
    padding: 4rem 2rem;
    background: var(--cream);
}

.loc-nearby .section-container {
    max-width: 1100px;
}

.loc-nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.loc-nearby-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: var(--dark-text);
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: block;
}

.loc-nearby-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(155, 133, 104, 0.2);
    border-color: var(--primary-tan);
}

.loc-nearby-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: var(--dark-text);
}

.loc-nearby-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Location CTA Banner (mid-page) */
.loc-cta-banner {
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-tan-dark) 0%, var(--dark-text) 100%);
    color: var(--white);
    text-align: center;
}

.loc-cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.loc-cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.loc-cta-banner .btn {
    margin: 0 0.5rem;
}

/* Location Services (reuses service-related but with location context) */
.loc-services {
    padding: 4rem 2rem;
    background: var(--white);
}

.loc-services .section-container {
    max-width: 1100px;
}

.loc-services .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Location page responsive */
@media (max-width: 991px) {
    .loc-two-col {
        grid-template-columns: 1fr;
    }

    .loc-two-col.reversed {
        direction: ltr;
    }

    .loc-img img {
        min-height: 280px;
    }

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

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

@media (max-width: 768px) {
    .loc-hero {
        padding: 4rem 1.5rem 3rem;
    }

    .loc-hero h1 {
        font-size: 2.25rem;
    }

    .loc-content {
        padding: 3rem 1.5rem;
    }

    .loc-text {
        padding: 2rem 1.5rem;
    }

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

    .loc-checklist-grid {
        grid-template-columns: 1fr;
    }

    .loc-checklist-box {
        padding: 2rem 1.5rem;
    }

    .loc-gallery .gallery-grid {
        grid-template-columns: 1fr;
    }

    .loc-gallery .gallery-card img {
        height: 220px;
    }

    .loc-nearby-grid {
        grid-template-columns: 1fr 1fr;
    }

    .loc-cta-banner h2 {
        font-size: 1.85rem;
    }

    .loc-intro h2 {
        font-size: 1.85rem;
    }
}

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

    .loc-hero h1 {
        font-size: 1.85rem;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 4.5rem 2rem;
    background: var(--cream);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-form-card {
    background: var(--white);
    padding: 2.75rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-form-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: var(--dark-text);
    margin-bottom: 1.75rem;
}

.contact-submit-btn {
    width: 100%;
    font-size: 1.05rem;
    padding: 1rem;
    margin-top: 0.5rem;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    padding: 0 1.75rem;
}

.contact-info-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem 1.75rem;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.contact-info-block:first-child {
    border-radius: 16px 16px 0 0;
}

.contact-info-block:last-of-type {
    border-bottom: none;
    border-radius: 0 0 16px 16px;
}

.contact-info-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 10px;
    flex-shrink: 0;
    color: var(--primary-tan);
}

.contact-info-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

.contact-info-block p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.contact-info-link {
    color: var(--primary-tan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.15rem;
}

.contact-info-link:hover {
    text-decoration: underline;
}

.contact-areas-list {
    font-size: 0.82rem !important;
    margin-top: 0.25rem;
    line-height: 1.5 !important;
}


/* Contact Map Section */
.contact-map-section {
    padding: 4.5rem 2rem;
    background: var(--white);
}

.contact-map-wrap {
    margin-top: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 16px;
}

.contact-map-areas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-map-region {
    background: var(--cream);
    padding: 1.5rem 1.75rem;
    border-radius: 12px;
}

.contact-map-region h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.contact-map-region p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Form Elements (shared) */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--cream);
    border-radius: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: var(--white);
}

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

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

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

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-block:first-child {
        border-radius: 16px 16px 0 0;
    }

    .contact-map-areas {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 3rem 1.25rem;
    }

    .contact-form-card {
        padding: 1.75rem;
    }

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

    .contact-map-wrap iframe {
        height: 320px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.75);
    position: relative;
}

.footer-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-tan), var(--primary-tan-dark));
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
}

.footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-weight: 600;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.footer-logo span {
    color: var(--primary-tan);
}

.footer-description {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.25rem;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s, color 0.3s;
}

.footer-social-icons a:hover {
    background: var(--primary-tan);
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-tan);
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
}

.footer-contact-list li i {
    color: var(--primary-tan);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-map {
    margin-top: 1rem;
}

.footer-map iframe {
    border-radius: 8px;
    display: block;
}

.footer-bottom {
    background: rgba(0,0,0,0.25);
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--primary-tan);
}

.footer-divider {
    color: rgba(255,255,255,0.2);
    font-size: 0.82rem;
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.sitemap-column h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-tan);
}

.sitemap-links {
    list-style: none;
}

.sitemap-links li {
    margin-bottom: 0.6rem;
}

.sitemap-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.sitemap-links a:hover {
    color: var(--primary-tan);
}

/* ============================================
   QUOTE MODAL
   ============================================ */
.quote-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.quote-modal-overlay.active {
    display: flex;
}

.quote-modal {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2.5rem 2rem;
    width: 90%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.quote-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.quote-modal-close:hover {
    color: var(--dark-text);
}

.quote-modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.75rem;
    text-align: center;
}

.quote-modal h2 em {
    color: var(--primary-tan);
    font-style: italic;
}

.quote-modal form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.quote-modal input,
.quote-modal select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-text);
    background: #fafafa;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.quote-modal input::placeholder {
    color: #aaa;
}

.quote-modal input:focus,
.quote-modal select:focus {
    border-color: var(--primary-tan);
    box-shadow: 0 0 0 3px rgba(155, 133, 104, 0.15);
    background: var(--white);
}

.quote-modal select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.quote-modal select option[value=""][disabled] {
    color: #aaa;
}

.quote-modal-submit {
    width: 100%;
    padding: 0.95rem;
    background: var(--primary-tan);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 0.25rem;
}

.quote-modal-submit:hover {
    background: var(--primary-tan-dark);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        z-index: 999;
    }

    .nav.active {
        display: flex;
    }

    .nav .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        background: var(--cream);
        border-radius: 8px;
        margin-top: 0.5rem;
        display: none;
    }

    .nav .dropdown.active .dropdown-content {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-cta .btn-secondary {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 500px;
        padding: 4rem 1rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero h2 {
        font-size: 1.1rem;
    }

    .hero-small h1 {
        font-size: 2rem;
    }

    .section {
        padding: 3.5rem 1.5rem;
    }

    .services-grid,
    .benefits-grid,
    .process-grid,
    .testimonial-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .content-block {
        padding: 2rem 1.5rem;
    }

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

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

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

    .cta-section h2 {
        font-size: 2rem;
    }

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

    .checklist-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.35rem;
    }

    .checklist-tab {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        border-radius: 8px;
        border: 1px solid #d0d0d0;
        border-right: 1px solid #d0d0d0;
    }

    .checklist-tab:first-child {
        border-radius: 8px;
    }

    .checklist-tab:last-child {
        border-radius: 8px;
        border-right: 1px solid #d0d0d0;
    }

    .checklist-tab.active {
        border-radius: 8px;
    }

    .checklist-table-wrapper {
        padding: 0.5rem;
        border-radius: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .checklist-table {
        min-width: 520px;
    }

    .checklist-table thead th {
        padding: 0.85rem 0.75rem;
        font-size: 0.85rem;
    }

    .checklist-table thead th:first-child {
        min-width: 180px;
    }

    .checklist-table tbody td {
        padding: 0.75rem 0.75rem;
        font-size: 0.85rem;
    }

    .checklist-table tbody td:not(:first-child) {
        font-size: 1.1rem;
    }

    .quote-modal {
        width: 95%;
        max-width: 380px;
        padding: 2rem 1.5rem 1.5rem;
        margin: 0 auto;
    }

    .quote-modal h2 {
        font-size: 1.3rem;
    }

    .quote-modal input,
    .quote-modal select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .header-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.4rem;
    }

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

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .checklist-tabs {
        gap: 0.25rem;
    }

    .checklist-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.78rem;
    }

    .checklist-table {
        min-width: 460px;
    }

    .checklist-table thead th {
        padding: 0.7rem 0.5rem;
        font-size: 0.78rem;
    }

    .checklist-table thead th:first-child {
        min-width: 150px;
    }

    .checklist-table tbody td {
        padding: 0.6rem 0.5rem;
        font-size: 0.78rem;
    }

    .checklist-table tbody td:not(:first-child) {
        font-size: 1rem;
    }

    .quote-modal {
        width: 96%;
        padding: 1.75rem 1.25rem 1.25rem;
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    padding: 0.75rem 2rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--cream);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.breadcrumb a {
    color: var(--primary-tan);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--dark-text);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.blog-card .blog-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-tan), var(--primary-tan-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.blog-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card .read-more {
    color: var(--primary-tan);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
}

.blog-card .read-more:hover {
    text-decoration: underline;
}

/* Review Cards */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.review-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.review-stars {
    color: #FFB800;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    gap: 2px;
}

.review-card blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.review-card .review-author {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-tan);
}

.leave-review-section {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--cream);
    border-radius: 16px;
    margin: 2rem 0;
}

.leave-review-section h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.leave-review-section p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
