/* ============================================
   WallCover Experts LA - Main Stylesheet
   Warm Taupe & Olive Residential Luxury Style
   ============================================ */

/* Google Fonts Import - Different from Seattle site */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS Variables - Warm Taupe Color Palette
   ============================================ */
:root {
    /* Primary Colors - Warm Taupe Theme */
    --warm-taupe: #8b7355;
    --deep-taupe: #5c4a3d;
    --soft-mushroom: #a89f91;
    --ivory-cream: #f7f4ef;
    --soft-cream: #faf8f4;
    --muted-olive: #7a8b6e;
    --olive-dark: #5d6b52;
    --olive-light: #9aab8e;
    
    /* Text Colors */
    --text-dark: #3d3428;
    --text-medium: #6b5d4d;
    --text-light: #f5f2ed;
    --text-muted: #9a8d7f;
    
    /* Background Colors */
    --bg-primary: var(--ivory-cream);
    --bg-secondary: #e8e2d9;
    --bg-dark: #3d3428;
    --bg-accent: var(--soft-mushroom);
    
    /* Border Colors */
    --border-light: rgba(139, 115, 85, 0.2);
    --border-medium: rgba(139, 115, 85, 0.4);
    
    /* Typography */
    --font-heading: 'Libre Baskerville', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1340px;
    --header-height: 85px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.35s ease;
    --transition-slow: 0.5s ease;
    --transition-dropdown: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(61, 52, 40, 0.08);
    --shadow-medium: 0 8px 30px rgba(61, 52, 40, 0.12);
    --shadow-strong: 0 15px 50px rgba(61, 52, 40, 0.18);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-dark);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
}

h3 {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.85;
}

.text-olive {
    color: var(--muted-olive);
}

.text-taupe {
    color: var(--warm-taupe);
}

.text-light {
    color: var(--text-light);
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    padding: var(--section-padding) 0;
}

.section-cream {
    background-color: var(--ivory-cream);
    color: var(--text-dark);
}

.section-mushroom {
    background-color: var(--bg-secondary);
    color: var(--text-dark);
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-taupe {
    background-color: var(--warm-taupe);
    color: var(--text-light);
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--bg-dark);
    height: var(--header-height);
    transition: var(--transition-medium);
}

.header.scrolled {
    background-color: rgba(61, 52, 40, 0.98);
    box-shadow: var(--shadow-medium);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 28px;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.01em;
}

.logo-text span {
    color: var(--olive-light);
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--olive-light);
}

.nav-link .arrow {
    font-size: 0.65rem;
    transition: transform var(--transition-medium);
    opacity: 0.7;
}

.nav-item:hover .nav-link .arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu - Wallpaper Unfold Animation */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background-color: var(--deep-taupe);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: perspective(600px) rotateX(-15deg);
    transform-origin: top center;
    transition: opacity var(--transition-dropdown), 
                visibility var(--transition-dropdown),
                transform var(--transition-dropdown);
    z-index: 100;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: perspective(600px) rotateX(0deg);
}

.dropdown-menu a {
    display: block;
    padding: 13px 22px;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateX(-20px);
    transition: background-color var(--transition-fast),
                color var(--transition-fast),
                opacity 0.35s ease,
                transform 0.35s ease,
                padding-left var(--transition-fast);
}

.nav-item:hover .dropdown-menu a {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation - wallpaper unfold effect */
.nav-item:hover .dropdown-menu a:nth-child(1) { transition-delay: 0.03s; }
.nav-item:hover .dropdown-menu a:nth-child(2) { transition-delay: 0.06s; }
.nav-item:hover .dropdown-menu a:nth-child(3) { transition-delay: 0.09s; }
.nav-item:hover .dropdown-menu a:nth-child(4) { transition-delay: 0.12s; }
.nav-item:hover .dropdown-menu a:nth-child(5) { transition-delay: 0.15s; }
.nav-item:hover .dropdown-menu a:nth-child(6) { transition-delay: 0.18s; }
.nav-item:hover .dropdown-menu a:nth-child(7) { transition-delay: 0.21s; }
.nav-item:hover .dropdown-menu a:nth-child(8) { transition-delay: 0.24s; }
.nav-item:hover .dropdown-menu a:nth-child(9) { transition-delay: 0.27s; }
.nav-item:hover .dropdown-menu a:nth-child(10) { transition-delay: 0.30s; }
.nav-item:hover .dropdown-menu a:nth-child(11) { transition-delay: 0.33s; }
.nav-item:hover .dropdown-menu a:nth-child(12) { transition-delay: 0.36s; }

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: rgba(122, 139, 110, 0.2);
    color: var(--olive-light);
    padding-left: 30px;
}

/* Header Contact Info */
.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.header-contact-item svg {
    width: 15px;
    height: 15px;
    fill: var(--olive-light);
}

.header-contact-item a:hover {
    color: var(--olive-light);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-medium);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(61, 52, 40, 0.92) 0%, rgba(61, 52, 40, 0.65) 50%, rgba(61, 52, 40, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 70px 0;
}

.hero-text {
    max-width: 580px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 22px;
    background-color: rgba(122, 139, 110, 0.2);
    border: 1px solid var(--muted-olive);
    color: var(--olive-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 22px;
    border-radius: 30px;
}

.hero-title {
    color: var(--text-light);
    margin-bottom: 22px;
    font-weight: 400;
}

.hero-title span {
    color: var(--olive-light);
    font-style: italic;
}

.hero-description {
    color: rgba(245, 242, 237, 0.85);
    font-size: 1.1rem;
    margin-bottom: 28px;
    line-height: 1.9;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 36px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.hero-feature svg {
    width: 18px;
    height: 18px;
    fill: var(--olive-light);
}

/* Hero Form */
.hero-form-wrapper {
    background-color: var(--ivory-cream);
    padding: 44px;
    padding-bottom: 56px;
    border-radius: 12px;
    box-shadow: var(--shadow-strong);
    position: relative;
    z-index: 10;
}

/* ============================================
   Buttons - Rounded Rectangle Style
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-olive {
    background-color: var(--muted-olive);
    color: var(--text-light);
    border-color: var(--muted-olive);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.btn-olive:hover {
    background-color: var(--olive-dark);
    border-color: var(--olive-dark);
    transform: translateY(-2px);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2), var(--shadow-medium);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--warm-taupe);
}

.btn-outline:hover {
    background-color: var(--warm-taupe);
    color: var(--text-light);
}

.btn-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--bg-dark);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
    background-color: var(--deep-taupe);
    border-color: var(--deep-taupe);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--ivory-cream);
    color: var(--text-dark);
    border-color: var(--ivory-cream);
}

.btn-light:hover {
    background-color: var(--text-light);
    border-color: var(--text-light);
}

/* ============================================
   Contact Form
   ============================================ */
.feedback-form-container {
    background-color: var(--ivory-cream);
    padding: 38px;
    border-radius: 10px;
}

.feedback-form-container h3 {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 26px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--soft-cream);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--muted-olive);
    box-shadow: 0 0 0 3px rgba(122, 139, 110, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.form-submit {
    margin-top: 6px;
    margin-bottom: 18px;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    background-color: var(--muted-olive);
    border: 2px solid var(--muted-olive);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-medium);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.submit-btn:hover {
    background-color: var(--olive-dark);
    border-color: var(--olive-dark);
    transform: translateY(-2px);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2), var(--shadow-soft);
}

#form-success {
    text-align: center;
    padding: 24px;
}

#form-success p {
    color: var(--muted-olive);
    font-size: 1rem;
    margin-bottom: 0;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
}

.section-header .subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted-olive);
    margin-bottom: 14px;
}

.section-header h2 {
    margin-bottom: 18px;
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.0625rem;
    margin-bottom: 0;
}

.section-dark .section-header .subtitle {
    color: var(--olive-light);
}

.section-dark .section-header h2 {
    color: var(--text-light);
}

.section-dark .section-header p {
    color: rgba(245, 242, 237, 0.75);
}

/* ============================================
   Services Grid
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-card {
    background-color: var(--soft-cream);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid var(--border-light);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--muted-olive);
}

.service-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-content {
    padding: 26px;
}

.service-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.service-card:hover .service-card-content h3 {
    color: var(--muted-olive);
}

.service-card-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted-olive);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.service-card-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform var(--transition-fast);
}

.service-card:hover .service-card-link svg {
    transform: translateX(4px);
}

/* ============================================
   Gallery Grid
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(61, 52, 40, 0.9), transparent);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-overlay h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 4px;
}

.gallery-item-overlay p {
    color: rgba(245, 242, 237, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ============================================
   Locations List Grid (Text Only)
   ============================================ */
.locations-list-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.location-list-item {
    display: block;
    padding: 28px 22px;
    background-color: var(--soft-cream);
    border: 1px solid var(--border-light);
    text-align: center;
    border-radius: 8px;
    transition: var(--transition-medium);
}

.location-list-item:hover {
    background-color: var(--bg-dark);
    border-color: var(--bg-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.location-list-item h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 6px;
    transition: var(--transition-fast);
}

.location-list-item:hover h3 {
    color: var(--olive-light);
}

.location-list-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    transition: var(--transition-fast);
}

.location-list-item:hover p {
    color: rgba(245, 242, 237, 0.7);
}

/* ============================================
   Content Grid (SEO Section)
   ============================================ */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    align-items: start;
}

.content-main h2 {
    margin-bottom: 22px;
}

.content-main h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--warm-taupe);
}

.content-main p {
    color: var(--text-medium);
}

.content-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 30px);
}

.sidebar-card {
    background-color: var(--soft-cream);
    padding: 28px;
    border-radius: 10px;
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
}

.sidebar-card h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-card ul li {
    margin-bottom: 10px;
}

.sidebar-card ul li a {
    color: var(--text-medium);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card ul li a::before {
    content: '→';
    color: var(--muted-olive);
    font-size: 0.85rem;
}

.sidebar-card ul li a:hover {
    color: var(--muted-olive);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61, 52, 40, 0.95) 0%, rgba(92, 74, 61, 0.9) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--text-light);
    margin-bottom: 18px;
}

.cta-content p {
    color: rgba(245, 242, 237, 0.85);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 45px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 22px;
}

.footer-about p {
    color: rgba(245, 242, 237, 0.7);
    font-size: 0.95rem;
    margin-bottom: 22px;
    line-height: 1.8;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(245, 242, 237, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--olive-light);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--olive-light);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item p {
    color: rgba(245, 242, 237, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.footer-contact-item a {
    color: rgba(245, 242, 237, 0.7);
}

.footer-contact-item a:hover {
    color: var(--olive-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    color: rgba(245, 242, 237, 0.5);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(245, 242, 237, 0.5);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--olive-light);
}

/* ============================================
   Sticky Quote Button
   ============================================ */
.sticky-quote-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    padding: 14px 26px;
    background-color: var(--muted-olive);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(122, 139, 110, 0.4);
    transition: var(--transition-medium);
    max-width: 180px;
    white-space: nowrap;
}

.sticky-quote-btn:hover {
    background-color: var(--olive-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(122, 139, 110, 0.5);
}

/* ============================================
   Modal
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(61, 52, 40, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--ivory-cream);
    max-width: 520px;
    width: 100%;
    position: relative;
    border-radius: 12px;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-medium);
    box-shadow: var(--shadow-strong);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background-color: var(--bg-secondary);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background-color: var(--warm-taupe);
    color: var(--text-light);
}

.modal-content .feedback-form-container {
    padding: 48px;
    border-radius: 12px;
}

/* ============================================
   Page Header (Inner Pages)
   ============================================ */
.page-header {
    padding: 170px 0 90px;
    background-color: var(--bg-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(61, 52, 40, 0.7) 0%, rgba(61, 52, 40, 0.95) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--text-light);
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(245, 242, 237, 0.8);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--olive-light);
}

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

.breadcrumb span {
    color: rgba(245, 242, 237, 0.5);
}

/* ============================================
   About Page
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-medium);
}

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

.stat-item {
    text-align: center;
    padding: 24px;
    background-color: var(--soft-cream);
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--muted-olive);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
}

.contact-info-card {
    background-color: var(--soft-cream);
    padding: 36px;
    border-radius: 10px;
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
}

.contact-info-card h3 {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(122, 139, 110, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--muted-olive);
}

.contact-info-text h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.contact-info-text p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-info-text a {
    color: var(--text-dark);
}

.contact-info-text a:hover {
    color: var(--muted-olive);
}

.contact-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin-bottom: 24px;
}

.contact-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

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

.faq-item {
    background-color: var(--soft-cream);
    border-radius: 10px;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.faq-question {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--bg-secondary);
}

.faq-question h3 {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0;
    padding-right: 20px;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background-color: var(--muted-olive);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-medium);
}

.faq-icon span {
    color: var(--text-light);
    font-size: 1.25rem;
    line-height: 1;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

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

.faq-answer-content {
    padding: 0 28px 22px;
}

.faq-answer-content p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* ============================================
   Service Page
   ============================================ */
.service-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.service-hero-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.service-hero-image img {
    width: 100%;
    height: auto;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 32px;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.service-feature-icon {
    width: 42px;
    height: 42px;
    background-color: rgba(122, 139, 110, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-feature-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--muted-olive);
}

.service-feature-text h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.service-feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Image Grid Masonry */
.image-grid-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.image-grid-masonry img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition-medium);
}

.image-grid-masonry img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-medium);
}

/* ============================================
   Location Page
   ============================================ */
.location-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.location-intro-content h2 {
    margin-bottom: 20px;
}

.location-intro-content p {
    color: var(--text-medium);
}

.location-highlights {
    background-color: var(--soft-cream);
    padding: 32px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
}

.location-highlights h3 {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
}

.location-highlights ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-medium);
}

.location-highlights ul li::before {
    content: '✓';
    color: var(--muted-olive);
    font-weight: 700;
}

/* ============================================
   Reveal Animation
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .locations-list-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 75px;
    }
    
    .header-contact {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-form-wrapper {
        max-width: 500px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-sidebar {
        position: static;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero {
        grid-template-columns: 1fr;
    }
    
    .location-intro {
        grid-template-columns: 1fr;
    }
    
    .locations-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .image-grid-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .locations-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .sticky-quote-btn {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
    
    .hero-form-wrapper {
        padding: 28px 18px;
    }
    
    .feedback-form-container {
        padding: 28px 18px;
    }
    
    .modal-content .feedback-form-container {
        padding: 38px 18px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-list-grid {
        grid-template-columns: 1fr;
    }
    
    .location-list-item {
        padding: 22px 18px;
    }
    
    .page-header {
        padding: 130px 0 55px;
    }
    
    .image-grid-masonry {
        grid-template-columns: 1fr;
    }
}
