/**
 * The Quixote - Main Stylesheet
 *
 * A literary-themed coworking space for dreamers tilting at windmills
 */

.cta-dreams-subtitle p {
    color: white;
}

.hide { display:none !important; }
.text-center { text-align:center !important; }

.cta-dreams-subtitle {
    color: white;
}

.hero_image {
  display: center ;   /* Enable flexbox layout */
    justify-content: center;   /* Centers the image horizontally */
    align-items: center;       /* Centers the image vertically */
    height: 100vh;             /* Makes the container take the full viewport height */
}

/* ==========================================================================
   1. CSS Variables & Brand Colors
   ========================================================================== */

:root {
    /* Brand Colors */
    --color-espresso: #3C3630;
    --color-onyx: #1E1C1A;
    --color-heather-clay: #A26859;
    --color-olive-grove: #656B4C;
    --color-alabaster: #ffffff;
    --color-leather: #9B5527;
    --color-muted-bronze: #A27C3B;
    --color-midnight-blue: #2F3E4C;
    --color-oxblood: #4B1F1F;

    /* Functional Colors - Updated per requirements */
    --color-primary: var(--color-leather);        /* CTAs use Leather brown */
    --color-secondary: var(--color-espresso);     /* Secondary borders use Espresso */
    --color-accent: var(--color-heather-clay);    /* Heather Clay as accent, not primary */
    --color-text: var(--color-espresso);          /* Text should be Espresso for contrast */
    --color-text-dark: var(--color-onyx);
    --color-bg-primary: #ffffff;   /* Clean white background */
    --color-bg-light: #ffffff;
    --color-white: #FFFFFF;                       /* Only for card backgrounds */
    --color-gray-light: #F5F5F5;
    --color-gray: #E0E0E0;
    --color-gray-dark: #666666;

    /* Typography */
    --font-primary: 'LTC Goudy Oldstyle Pro', Georgia, serif;
    --font-script: 'Satisfy', cursive;
    --font-secondary: 'Adrianna Light', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: var(--font-primary);

    /* Font Sizes */
    --fs-xs: 0.75rem;    /* 12px */
    --fs-sm: 0.875rem;   /* 14px */
    --fs-base: 1rem;     /* 16px */
    --fs-md: 1.125rem;   /* 18px */
    --fs-lg: 1.25rem;    /* 20px */
    --fs-xl: 1.5rem;     /* 24px */
    --fs-2xl: 2rem;      /* 32px */
    --fs-3xl: 2.5rem;    /* 40px */
    --fs-4xl: 3rem;      /* 48px */
    --fs-5xl: 3.5rem;    /* 56px */

    /* Spacing */
    --space-xs: 0.25rem;  /* 4px */
    --space-sm: 0.5rem;   /* 8px */
    --space-md: 1rem;     /* 16px */
    --space-lg: 1.5rem;   /* 24px */
    --space-xl: 2rem;     /* 32px */
    --space-2xl: 3rem;    /* 48px */
    --space-3xl: 4rem;    /* 64px */
    --space-4xl: 6rem;    /* 96px */

    /* Container */
    --container-width: 1280px;
    --container-max-width: 1280px;
    --container-padding: var(--space-lg);

    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-fast: all 0.15s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(30, 28, 26, 0.05);
    --shadow-md: 0 4px 6px rgba(30, 28, 26, 0.1);
    --shadow-lg: 0 10px 25px rgba(30, 28, 26, 0.15);
    --shadow-xl: 0 20px 40px rgba(30, 28, 26, 0.2);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
}

/* ==========================================================================
   2. Reset & Base Styles
   ========================================================================== */

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

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

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    line-height: 1.2;
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
}

h1 { font-size: var(--fs-5xl); }
h2 { font-size: var(--fs-4xl); }
h3 { font-size: var(--fs-3xl); }
h4 { font-size: var(--fs-2xl); }
h5 { font-size: var(--fs-xl); }
h6 { font-size: var(--fs-lg); }

p {
    margin-bottom: var(--space-md);
   
}

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

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

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

/* ==========================================================================
   3. Utilities
   ========================================================================== */

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 52px;
    line-height: 1.2;
}

.btn-primary {
    background: #2F3E4C;
    color: #F3F0E6;
    border-color: #2F3E4C;
}

.btn-primary:hover {
    background: transparent;
    color: #2F3E4C;
    border-color: #2F3E4C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 62, 76, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2F3E4C;
    border-color: #2F3E4C;
}

.btn-secondary:hover {
    background: #2F3E4C;
    color: #F3F0E6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 62, 76, 0.3);
}

.btn-cta-primary {
    background: var(--color-leather);
    color: var(--color-white);
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--fs-md);
    border-radius: 12px;
}

.btn-cta-secondary {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-text);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: 12px;
}

/* ==========================================================================
   5. Header & Navigation (Brand Specification Compliant)
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 1000;
    padding: 20px 10px;
    height: auto;
    display: flex;
    align-items: center;
    overflow: visible; /* Ensure dropdowns aren't cut off */
}

.main-nav {
    padding: 0;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: visible !important; /* Allow dropdowns */
    min-height: 60px; /* Give it minimum height */
}

/* Ensure nav container allows dropdowns */
.main-nav .container {
    overflow: visible !important;
    position: relative;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    max-width: calc(100vw - 360px); /* Same as video container */
    margin: 0 auto;
    padding: 0;
    overflow: visible !important; /* Allow dropdowns to show */
    min-height: 60px; /* Minimum height */
}

/* ==========================================================================
   Logo Section (Left)
   ========================================================================== */

.nav-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    min-width: 150px; /* Reserve space for logo */
}

.logo-link {
    text-decoration: none;
    display: block;
}

/* Logo Image */
.logo-image {
    height: 57px; /* Reduced by 40% from 95px */
    width: auto;
    display: block;
    transition: opacity 0.2s ease;
}

.logo-link:hover .logo-image {
    opacity: 0.8;
}

/* ==========================================================================
   Navigation Section (Center)
   ========================================================================== */

.nav-center {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px; /* Add padding to prevent overlap */
    position: relative; /* Establish positioning context */
    z-index: 100; /* Ensure it's above other elements */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
    align-items: center;
    white-space: nowrap; /* Prevent wrapping */
    position: relative; /* Establish positioning context */
}

/* Nav items */
.nav-item {
    list-style: none;
    position: relative;
}

/* All nav links */
.nav-item > a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', sans-serif;
    font-size: 16px;
    color: #333333;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
    padding: 8px 4px;
    display: inline-block;
}

/* Underline effect only for non-dropdown items */
.nav-item:not(.menu-item-has-children) > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #A26859;
    transition: width 0.3s ease;
}

.nav-item:not(.menu-item-has-children) > a:hover::after {
    width: 100%;
}

.nav-item > a:hover {
    color: #A26859;
}

/* ==========================================================================
   Dropdown Menus - Direct targeting approach
   ========================================================================== */

/* Ensure nav menu allows overflow */
.desktop-nav {
    overflow: visible !important;
}

/* Make dropdown parents relative */
.desktop-nav .menu-item-has-children,
.nav-menu .menu-item-has-children {
    position: relative !important;
}

/* Add dropdown arrow */
.desktop-nav .menu-item-has-children > a::after,
.nav-menu .menu-item-has-children > a::after {
    content: ' ▾';
    font-size: 10px;
}

/* Dropdown menu - hidden by default */
.desktop-nav .sub-menu,
.nav-menu .sub-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #ffffff !important;
    min-width: 260px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #eee !important;
    border-radius: 8px !important;
    padding: 10px 0 !important;
    z-index: 999999 !important;
    display: none !important;
    margin-top: 0 !important;
}

/* Show dropdown on hover */
.desktop-nav .menu-item-has-children:hover > .sub-menu,
.nav-menu .menu-item-has-children:hover > .sub-menu,
.desktop-nav li.menu-item-has-children:hover > ul.sub-menu,
.nav-menu li.menu-item-has-children:hover > ul.sub-menu {
    display: block !important;
}

/* Dropdown list items */
.desktop-nav .sub-menu li,
.nav-menu .sub-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Dropdown links */
.desktop-nav .sub-menu a,
.nav-menu .sub-menu a {
    display: block !important;
    padding: 10px 20px !important;
    color: #333333 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    white-space: nowrap !important;
}

/* Dropdown link hover */
.desktop-nav .sub-menu a:hover,
.nav-menu .sub-menu a:hover {
    background: #f5f5f5 !important;
    color: #A26859 !important;
}

/* Mobile dropdown styles */
.mobile-nav-item.menu-item-has-children .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    margin-left: 20px;
    margin-top: 0;
    padding: 0;
}

.mobile-nav-item .sub-menu a {
    padding: 8px 16px;
    font-size: 14px;
}

/* ==========================================================================
   CTA Section (Right)
   ========================================================================== */

.nav-cta {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    min-width: 250px; /* Reserve space for buttons */
    justify-content: flex-end;
}

/* Desktop CTA */
.desktop-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Request Info button - Dark background */
.btn-request-info {
    background: #2D3D4B;
    color: #F4F2E8; /* Call Us button color for contrast */
    font-family: 'Avenir Roman', sans-serif;
    font-size: 12px !important; /* Much smaller for minimal look */
    font-weight: 500;
    padding: 8px 14px; /* Compact padding */
    border: none;
    border-radius: 12px; /* Straight corners only */
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Call Us button - Light background */
.btn-call-us {
    background: #F4F2E8;
    color: #2D3D4B; /* Request Info button color for contrast */
    font-family: 'Avenir Roman', sans-serif;
    font-size: 12px !important; /* Much smaller for minimal look */
    font-weight: 500;
    padding: 8px 14px; /* Compact padding */
    border: none;
    border-radius: 12px; /* Straight corners only */
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-request-info:hover {
    color: #F4F2E8;
    background: #1F2A35; /* Darker shade on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 61, 75, 0.3);
}

.btn-call-us:hover {
    background: #E8E6DC; /* Slightly darker on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 242, 232, 0.3);
}

/* Mobile CTA */
.mobile-cta {
    display: none;
    align-items: center;
    gap: 15px;
}

.mobile-phone {
    font-family: 'Avenir Roman', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #3C3630; /* Espresso */
    text-decoration: none;
}

.service-contact-form {
    padding: 80px 30px;
}

/* ==========================================================================
   Mobile Menu Toggle
   ========================================================================== */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: #A26859;
    border: 2px solid #A26859;
    cursor: pointer;
    padding: 10px;
    gap: 3px;
    z-index: 10001;
    position: relative;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.hamburger-line {
    width: 20px;
    height: 2.5px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 1px;
    display: block;
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==========================================================================
   Mobile Navigation Overlay
   ========================================================================== */

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    visibility: visible;
    opacity: 1;
}

.mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 54, 48, 0.6);
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: #ffffff;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    border-left: 3px solid #A26859; /* Heather Clay border to match header */
}

.mobile-nav.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #F3F0E6;
}

.mobile-nav-logo .logo-text {
    font-family: 'LTC Goudy Oldstyle Pro', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #3C3630;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #3C3630;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-menu {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin: 0;
}

.mobile-nav-menu a {
    display: block;
    padding: 15px 20px;
    font-family: 'Avenir Roman', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #3C3630;
    text-decoration: none;
    border-bottom: 1px solid #F3F0E6;
    transition: background-color 0.2s ease;
}

.mobile-nav-menu a:hover {
    background: #F3F0E6;
    color: #A26859;
}

.mobile-nav-cta {
    padding: 20px;
    border-top: 1px solid #F3F0E6;
}

.mobile-nav-cta-btn {
    display: block;
    width: 100%;
    background: #9B5527; /* Leather */
    color: #ffffff;
    font-family: 'Avenir Roman', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s ease;
}

.mobile-nav-cta-btn:hover {
    background: #8B4513;
}

/* ==========================================================================
   6. Footer
   ========================================================================== */

.site-footer {
    background: #ffffff;
    padding: var(--space-3xl) 0 var(--space-xl);
    margin-top: var(--space-4xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-column h3 {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-md);
    color: var(--color-text-dark);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--color-text);
    font-size: var(--fs-sm);
}

.footer-tagline {
    font-style: italic;
    color: var(--color-gray-dark);
    margin: var(--space-sm) 0 var(--space-md);
}

.footer-contact {
    margin-bottom: var(--space-lg);
}

.footer-phone {
    display: block;
    font-size: var(--fs-lg);
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

/* Literary Quote */
.footer-quote {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-gray);
}

.literary-quote {
    font-style: italic;
    color: var(--color-gray-dark);
    font-size: var(--fs-sm);
}

.footer-quote cite {
    display: block;
    margin-top: var(--space-xs);
    font-size: var(--fs-xs);
}

/* Newsletter */
.newsletter-signup {
    margin-top: var(--space-xl);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-gray);
    border-radius: 12px;
}

.btn-newsletter {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.search-form-group {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.search-field {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(47, 62, 76, 0.2);
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.search-field:focus {
    outline: none;
    border-color: #2F3E4C;
}

.search-submit {
    padding: 12px;
    background: #2F3E4C;
    color: #F3F0E6;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    margin-top: var(--space-sm);
}

.legal-links a {
    font-size: var(--fs-sm);
    color: var(--color-gray-dark);
}


/* ==========================================================================
   9. CTA Sections
   ========================================================================== */

.cta-section {
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: #ffffff;
}

.cta-secondary {
    background: var(--color-white);
    border-top: 1px solid var(--color-gray);
    border-bottom: 1px solid var(--color-gray);
}

.cta-dark {
    background: var(--color-text-dark);
    color: var(--color-white);
}

.cta-title {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-md);
    font-family: var(--font-primary);
}

.cta-subtitle {
    font-size: var(--fs-lg);
    color: var(--color-gray-dark);
    margin-bottom: var(--space-xl);
}

.cta-dark .cta-subtitle {
    color: var(--color-gray-light);
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
}

/* Windmill Decoration */
.cta-windmill {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    opacity: 0.1;
}

.windmill-spin {
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   9. Windmill Decoration
   ========================================================================== */

.windmill-decoration {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 10;
}

.windmill-svg {
    width: 100%;
    height: 100%;
    color: var(--color-secondary);
}

.windmill-blades {
    transform-origin: center;
    animation: spin 15s linear infinite;
}

/* ==========================================================================
   10. Updated Homepage Styles - Comprehensive Redesign
   ========================================================================== */

/* Global body background update */
body {
    background-color: #ffffff;
    color: var(--color-text);
    font-family: var(--font-primary);
    line-height: 1.6;
}

/* Typography hierarchy fixes */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: bold;
    color: var(--color-text);
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.2;
}

/* ==========================================================================
   Updated Hero Section - Full Viewport Height
   ========================================================================== */

.hero-section {
    position: fixed;
    top: 100px; /* Below header with spacing - adjusted for new header height */
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 1;
    padding: 180px;
}

.hero-container-wrapper {
    width: 100%;
    max-width: calc(100vw - 360px); /* Double the padding for max-width */
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.hero-image,
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-default-bg {
    width: 100%;
    height: 100%;
    background: #ffffff;
}

.hero-section .video-container .video-overlay-content .hero_image { display:block !important; text-align:center; margin-bottom:15px; height:auto !important; }
.hero-section .video-container .video-overlay-content .hero_image img { margin:auto !important; max-width:300px; }

/* No overlay - removed per user request */

/* Video scroll spacer - creates scrollable area */
.video-scroll-spacer {
    height: 200vh; /* Controls scroll length for video playback */
    position: relative;
    z-index: 0;
    pointer-events: none;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #FFFFFF;
    text-align: center;
    z-index: 4;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
}

.scroll-indicator .scroll-text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.scroll-indicator .scroll-arrow {
    display: block;
    margin: 0 auto;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Hero accent line */
.hero-accent-line {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.hero-accent-line::before {
    content: '';
    width: 40px;
    height: 1px;
    background: #FFFFFF;
    opacity: 0.6;
}

.hero-accent-line span {
    font-size: 11px;
    letter-spacing: 2px;
    color: #FFFFFF;
    font-weight: 400;
    text-transform: uppercase;
}

/* Centered Hero Windmill */
.hero-windmill-container {
    display: flex;
    justify-content: center;
    margin: var(--space-xl) 0;
}

.windmill-blades-hero {
    width: 200px;
    height: 200px;
    position: relative;
}

.windmill-svg {
    width: 100%;
    height: 100%;
}

.windmill-hero-blades {
    animation: windmill-rotate 30s linear infinite;
    transform-origin: 200px 200px;
}

@keyframes windmill-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Scroll-based rotation override */
.scroll-animation .windmill-hero-blades {
    animation: none;
}

/* Typewriter Animation */
.typewriter-text {
    position: relative;
    margin: var(--space-lg) 0;
}

.typewriter-display {
    border-right: 2px solid transparent;
}

.typewriter-cursor {
    color: var(--color-heather-clay);
    animation: blink 1s infinite;
    font-weight: normal;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

/* Responsive windmill sizing */
@media (max-width: 768px) {
    .windmill-blades-hero {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .windmill-blades-hero {
        width: 120px;
        height: 120px;
    }
    .hero-section .video-container .video-overlay-content .hero_image img { max-width:220px; }
}

/* Hero content styling */
.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: flex-end; /* Text on the right */
}

.video-overlay-content {
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 30px; /* 30px from center */
    z-index: 2;
    opacity: 1; /* Show overlay content */
}

.hero-content {
    max-width: 450px;
    text-align: left;
    padding: 40px;
}

@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 600px;
        padding: 40px;
    }

    .hero-video {
        width: calc(100% - 40px);
        height: calc(100vh - 140px);
        margin: 20px;
        top: 80px;
    }

    .hero-container {
        padding: 0 20px;
        justify-content: center;
        height: calc(100vh - 80px);
        margin-top: 0;
    }

    .hero-headline {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-subheadline {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 15px 30px;
    }

    .nav-wrapper {
        max-width: calc(100vw - 120px); /* Same as video container */
    }

    .hero-container-wrapper {
        max-width: calc(100vw - 120px);
    }

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

    .hero-description {
        font-size: 16px;
        margin: 0 auto 35px;
    }

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

    .hero-accent-line {
        right: 30px;
        bottom: 30px;
    }
}

/* Literary quote styling */
.hero-quote {
    margin-bottom: var(--space-xl);
}

.hero-quote .quote-text {
    font-family: var(--font-script);
    font-size: var(--fs-lg);
    color: var(--color-accent);
    font-style: italic;
    display: block;
}

/* Hero headline with chain accents */
.hero-headline-wrapper {
    position: relative;
    margin-bottom: var(--space-xl);
}

.chain-divider-top,
.chain-divider-bottom {
    position: relative;
    height: 4px;
    background: var(--color-accent);
    margin: var(--space-md) auto;
    width: 120px;
}

.chain-divider-top::before,
.chain-divider-bottom::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
}

/* Hero title - Using Satisfy for decorative header */
.hero-title {
    font-family: 'Satisfy', cursive;
    font-size: 4.5rem;
    color: #F4F2E8;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 400;
}

.hero-subtitle {
    font-family: 'LTC Goudy Oldstyle Pro', serif;
    font-size: 14px;
    font-weight: 600;
    color: #F4F2E8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-description {
    font-family: 'LTC Goudy Oldstyle Pro', serif;
    font-size: 17px;
    color: #F4F2E8;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 450px;
}

/* CTA buttons - Primary Leather, Secondary Espresso border */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    align-items: center;
}

/* Hero-specific button styles */
.hero-section .btn-primary {
    background: #F4F2E8;
    color: #2D3D4B;
    border: 2px solid #F4F2E8;
}

.hero-section .btn-primary:hover {
    background: transparent;
    color: #F4F2E8;
    border-color: #F4F2E8;
    transform: translateY(-2px);
}

.hero-section .btn-secondary {
    background: transparent;
    color: #F4F2E8;
    border: 2px solid #F4F2E8;
}

.hero-section .btn-secondary:hover {
    background: #2F3E4C;
    color: #F3F0E6;
    transform: translateY(-2px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-md) var(--space-xl);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--fs-base);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    line-height: 1.4;
    text-align: center;
}

.btn-primary {
    background-color: #2F3E4C;
    color: #F3F0E6;
    border-color: #2F3E4C;
}

.btn-primary:hover {
    background-color: transparent;
    color: #2F3E4C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 62, 76, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2F3E4C;
    border-color: #2F3E4C;
}

.btn-secondary:hover {
    background-color: #2F3E4C;
    color: #F3F0E6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 62, 76, 0.3);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--fs-lg);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    min-height: 60px;
    border-radius: 12px;
}

.btn-hero {
    min-width: 140px;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Hero stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: var(--fs-xl);
    font-weight: bold;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: var(--fs-sm);
    color: var(--color-text);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    color: var(--color-accent);
    font-size: var(--fs-lg);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-text);
}

.scroll-text {
    display: block;
    font-size: var(--fs-sm);
    margin-bottom: var(--space-xs);
    opacity: 0.7;
}

.scroll-arrow {
    opacity: 0.7;
}

.bounce-animation {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ==========================================================================
   Literary Quote Bar
   ========================================================================== */

/* Ensure content sections appear after video hero */
.video-scroll-spacer ~ section {
    position: relative;
    z-index: 10;
    background: var(--color-bg-primary);
}

/** Latest Video Banner Block **/
.hero-banner { background-color: #2F3E4C; padding-top:0px; }
.hero-banner .banner-content-block { display: flex; }
.hero-banner .banner-content-block .banner-content { width: 50%; max-width: 600px; margin-left: auto; padding: 4rem 2.5rem 4rem 0; padding-top: calc(4rem + 80px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero-banner .banner-content-block .banner-content p.hero-description { text-align:left !important; font-size:clamp(16px, 2.5vw, 18px); max-width:initial !important; }
.hero-banner .banner-content-block .banner-content .hero-actions { justify-content:flex-start; }
.hero-banner .banner-content-block .banner-content .hero-actions .btn-primary { border-color: #F3F0E6 !important; background:#F3F0E6 !important; color: #2F3E4C !important; }
.hero-banner .banner-content-block .banner-content .hero-actions .btn-primary:hover { background: #2F3E4C !important; border-color: #F3F0E6 !important; color:#F3F0E6 !important; }
.hero-banner .banner-content-block .video-block { width:50%; height:100vh; }
.hero-banner .banner-content-block .video-block video, .hero-banner .banner-content-block .video-block img { display:block; width:100%; height:100%; object-fit:cover; min-height:480px; object-position: 75% 0; }
.hero-banner .banner-content-block .video-block.banner-img { height: auto; position:relative; overflow:hidden; min-height:320px; }
.hero-banner .banner-content-block .video-block img { position:absolute; }

/* Add top padding to account for fixed header and hero */
body {
    padding-top: 0;
    background: #ffffff; /* White background for clean look */
    margin: 0;
}

.quote-bar {
    background-color: #2a3340;
    padding: var(--space-lg) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rotating-quotes {
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.quote-item.active {
    opacity: 1;
}

.quote-item .quote-text {
    font-family: var(--font-script);
    font-size: var(--fs-lg);
    color: var(--color-white);
    font-style: italic;
}

.quote-item .quote-author {
    font-size: var(--fs-sm);
    color: var(--color-white);
    opacity: 0.8;
    margin-top: var(--space-xs);
}


/** Typing Animation **/
.typing-words {
    display: flex;
    align-items: flex-start;
}

.typing-words span.typing-text {
    color: var(--color-primary);
}

/** Typing Animation ENDS **/

/* ==========================================================================
   Windmill Split Section - Asymmetric Design
   ========================================================================== */

.windmill-split-section {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
    background: #ffffff;
}

/* Header above windmill */
.windmill-header {
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
    text-align: center;
}

/* Split Background - Meet at center (50/50) */
.split-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 500px; /* Match windmill height */
    display: flex;
}

.split-left {
    width: 50%;
    background: #F3F0E6; /* Alabaster */
    position: relative;
}

.split-right {
    width: 50%;
    background: #1E1C1A; /* Onyx */
    position: relative;
}

/* Central Windmill Container */
.windmill-x-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 10;
}

.windmill-blades {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.1s ease-out;
}

/* Windmill Image */
.windmill-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Text Overlay on Windmill */
.windmill-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Blade Text Positioning */
.blade-text {
    position: absolute;
    color: #F3F0E6; /* Alabaster text */
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform-origin: center;
}

.blade-text-top {
    top: 20%;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    writing-mode: vertical-rl;
}

.blade-text-right {
    top: 50%;
    right: 20%;
    transform: translateY(-50%) rotate(45deg);
}

.blade-text-bottom {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
    writing-mode: vertical-rl;
}

.blade-text-left {
    top: 50%;
    left: 20%;
    transform: translateY(-50%) rotate(-135deg);
}

/* Content Wrapper */
.split-content-wrapper {
    position: relative;
    z-index: 20;
    margin-top: -350px; /* Pull up over the windmill */
}

.split-content-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 600px; /* Large gap for windmill in center */
    padding-top: 100px;
    max-width: 1400px;
    margin: 0 auto;
}


/* Left Light Content */
.content-left-light {
    flex: 0 0 auto;
    max-width: 400px;
}

.content-left-light h3 {
    font-size: 1.8rem;
    color: #3C3630;
    margin-bottom: 1rem;
    font-family: 'LTC Goudy Oldstyle Pro', serif;
}

.content-left-light p {
    color: #3C3630;
    line-height: 1.6;
}

.content-card {
    background: transparent;
}

.card-header-bar {
    width: 60px;
    height: 6px;
    margin-bottom: 20px;
}

.olive-bar {
    background: #656B4C; /* Olive Grove */
}

.clay-bar {
    background: #A26859; /* Heather Clay */
}

.content-card h3 {
    font-size: 24px;
    color: #3C3630;
    margin-bottom: 15px;
}

.content-card p {
    color: #3C3630;
    line-height: 1.6;
    margin-bottom: 20px;
}

.simple-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.simple-list li {
    padding: 8px 0;
    color: #3C3630;
    position: relative;
    padding-left: 20px;
}

.simple-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #656B4C;
}

.btn-outline-dark {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #3C3630;
    color: #3C3630;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-outline-dark:hover {
    background: #3C3630;
    color: #F3F0E6;
}

/* Right Dark Content */
.content-right-dark {
    flex: 0 0 auto;
    max-width: 400px;
}

.content-right-dark h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'LTC Goudy Oldstyle Pro', serif;
}

.content-right-dark p {
    color: #ffffff;
    line-height: 1.6;
}

.dark-card .simple-list li:before {
    color: #A26859;
}

/* Mobile Responsive */
@media (max-width: 1440px) {
    .banner-content {
        padding: 4rem 2.5rem 4rem 2.5rem !important;
    }
}

@media (max-width: 1024px) {
    .windmill-split-section {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }

    .split-background {
        position: static;
        flex-direction: column;
    }

    .split-left,
    .split-right {
        width: 100%;
        height: 400px;
    }

    .windmill-x-container {
        position: relative;
        width: 300px;
        height: 300px;
        margin: 40px auto;
        transform: none;
        top: auto;
        left: auto;
    }

    .blade-text {
        font-size: 14px;
    }

    .split-content-wrapper {
        margin-top: 40px;
    }

    .split-content-inner {
        flex-direction: column;
        gap: 40px;
        padding: 20px;
    }

    .content-left-light,
    .content-right-dark {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .windmill-x-container {
        width: 200px;
        height: 200px;
    }

    .blade-text {
        font-size: 10px;
    }
}

/* ==========================================================================
   Services Section with Industrial Styling
   ========================================================================== */

.services-section {
    position: relative;
    padding: 100px 0;
    background-color: #ffffff;
}

.services-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Concrete texture background */
.concrete-texture {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 50%, rgba(162, 104, 89, 0.02) 52%, transparent 54%),
        linear-gradient(0deg, transparent 50%, rgba(162, 104, 89, 0.02) 52%, transparent 54%);
    background-size: 20px 20px;
    opacity: 0.5;
}

/* Chain section divider */
.section-divider {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.chain-links {
    display: inline-flex;
    gap: var(--space-xs);
    align-items: center;
}

.chain-link {
    width: 20px;
    height: 12px;
    border: 2px solid var(--color-accent);
    border-radius: 12px;
    background: transparent;
}

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: 20px;
    color: #2F3E4C;
    font-family: 'Satisfy', cursive;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

/* Services grid - 4 columns on desktop, responsive */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: var(--space-3xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Desktop: 2x2 grid */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Tablet: 2 columns */
@media (min-width: 768px) and (max-width: 1023px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 900px;
    }

    .service-card {
        padding: 30px;
        min-height: 380px;
    }
}

/* Service cards with squared layout */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: visible;
    position: relative;
    box-shadow: 0 4px 6px rgba(47, 62, 76, 0.05), 0 10px 30px rgba(47, 62, 76, 0.08);
    border: 1px solid rgba(47, 62, 76, 0.08);
    min-height: 360px;
    display: flex;
    padding: 32px;
    flex-direction: column;
}

/* Removed card hover effect to improve link clickability */

/* Card number accent - REMOVED per client request */
/* .service-card::before {
    content: attr(data-card);
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: 'Satisfy', cursive;
    color: rgba(47, 62, 76, 0.3);
    font-size: 13px;
    font-weight: 500;
    font-style: italic;
    z-index: 2;
    transition: color 0.3s ease;
}

.service-card:hover::before {
    color: rgba(47, 62, 76, 0.5);
    transform: scale(1.1);
} */

.card-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Service icons */
.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border: 1.5px solid rgba(47, 62, 76, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    border-color: #2F3E4C;
    transform: scale(1.05);
}

.service-icon svg,
.service-icon i {
    width: 24px;
    height: 24px;
    font-size: 24px;
    transition: all 0.3s ease;
    color: #2F3E4C;
}

.service-card:hover .service-icon svg,
.service-card:hover .service-icon i {
    color: #A26859;
}

/* Service Card content - Homepage specific */
.service-card .service-content {
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


.service-card .service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2F3E4C;
    font-family: 'Satisfy', cursive;
    line-height: 1.3;
}

.service-card .service-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #6b7280;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    flex: 1;
    margin-top: 0;
    background: transparent;
    padding: 0;
}

.service-card .service-description a {
    color: #2F3E4C;
    text-decoration: underline;
    font-weight: 500;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.service-card .service-description a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.service-card .service-price {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(47, 62, 76, 0.08);
    margin-top: auto;
}

.service-card .price-label {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.service-card .price-value {
    font-size: 32px;
    font-weight: 300;
    color: #2F3E4C;
    font-family: 'Satisfy', cursive;
    letter-spacing: -1px;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2F3E4C;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    margin-top: auto;
}

.service-card .service-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 1px;
    background: #2F3E4C;
    transition: width 0.3s ease;
}

.service-card .service-link:hover {
    color: #1a252f;
}

.service-card .service-link:hover::after {
    width: calc(100% - 24px);
}

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

.service-card .link-arrow {
    transition: transform 0.3s ease;
    font-size: 16px;
}

/* ==========================================================================
   Workspace Showcase Section
   ========================================================================== */

.workspace-showcase {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    overflow: hidden;
}


.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Text Content */
.showcase-content {
    position: relative;
    z-index: 2;
}

.showcase-text {
    max-width: 500px;
    margin-left: auto;
}

.showcase-title {
    font-size: clamp(36px, 4vw, 48px);
    color: #2F3E4C;
    margin-bottom: 20px;
    font-family: 'Satisfy', cursive;
    font-weight: 400;
    line-height: 1.2;
}

.showcase-subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 40px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Features List */
.showcase-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 12px 20px;
    background: rgba(47, 62, 76, 0.03);
    border-radius: 8px;
    border-left: 3px solid #2F3E4C;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(47, 62, 76, 0.06);
    transform: translateX(5px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: #2F3E4C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.feature-text {
    font-size: 16px;
    color: #2F3E4C;
    font-weight: 500;
}

/* CTA Button */
.btn-showcase {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: #2F3E4C;
    color: #F3F0E6;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #2F3E4C;
    min-height: 52px;
    line-height: 1.2;
}

.btn-showcase:hover {
    background: transparent;
    color: #2F3E4C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 62, 76, 0.3);
}

.btn-showcase:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-arrow {
    transition: transform 0.3s ease;
    font-size: 20px;
}

/* Image Section */
.showcase-image {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(47, 62, 76, 0.15);
    border-radius: 12px;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(47, 62, 76, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -20px) scale(1.05); }
}

.workspace-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 12px;
}

.image-frame:hover .workspace-image {
    transform: scale(1.05);
}

/* Image Overlay Label */
.image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.overlay-text {
    font-size: 14px;
    color: #2F3E4C;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Decorative Elements */
.workspace-showcase::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(47, 62, 76, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.workspace-showcase::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(47, 62, 76, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .showcase-text {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .showcase-features {
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .feature-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .workspace-showcase {
        padding: 60px 0;
    }

    .showcase-title {
        font-size: 32px;
    }

    .showcase-subtitle {
        font-size: 16px;
    }

    .image-overlay {
        bottom: 20px;
        left: 20px;
        padding: 10px 20px;
    }
}

/* ==========================================================================
   CTA Windmill Section - Open Flow Design
   ========================================================================== */

.cta-windmill-section {
    position: relative;
    padding: 140px 0;
    background: #F3F0E6;
    overflow: hidden;
    width: 100%;
}

/* Decorative Windmills */
.cta-windmill-left {
    position: absolute;
    left: -75px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    opacity: 0.03;
    animation: rotateWindmill 120s linear infinite;
    pointer-events: none;
}

.cta-windmill-right {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    opacity: 0.03;
    animation: rotateWindmill 120s linear infinite reverse;
    pointer-events: none;
}

@keyframes rotateWindmill {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.windmill-decorative {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* CTA Content - Open Flow */
.cta-content-flow {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Decorative Divider */
.cta-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.divider-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2F3E4C, transparent);
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: #2F3E4C;
    border-radius: 50%;
}

.cta-title-flow {
    font-size: clamp(48px, 6vw, 72px);
    color: #2F3E4C;
    margin: 0;
    font-family: 'Satisfy', cursive;
    font-weight: 400;
    line-height: 1;
    position: relative;
}

.cta-subtitle-flow {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.8;
    margin: 0 auto 50px;
    max-width: 700px;
    font-weight: 300;
}

/* Stats Row */
.cta-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #2F3E4C;
    font-family: 'Satisfy', cursive;
}

.stat-label {
    font-size: 14px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-separator {
    color: #d1d5db;
    font-size: 24px;
    line-height: 1;
    padding: 0 10px;
}

/* CTA Buttons Flow */
.cta-buttons-flow {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 50px;
    background: #2F3E4C;
    color: #F3F0E6;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 12px;
    border: 2px solid #2F3E4C;
    position: relative;
    z-index: 1;
}

.btn-cta-main:hover {
    background: transparent;
    color: #2F3E4C;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(47, 62, 76, 0.15);
}

.btn-cta-main:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-cta-alt {
    display: inline-flex;
    align-items: center;
    padding: 20px 50px;
    background: transparent;
    color: #2F3E4C;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #2F3E4C;
    border-radius: 12px;
}

.btn-cta-alt:hover {
    background: #2F3E4C;
    color: #F3F0E6;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(47, 62, 76, 0.2);
}

.cta-note-flow {
    font-size: 15px;
    color: #9ca3af;
    margin: 0;
    font-style: italic;
    font-weight: 300;
}

/* Background Pattern Overlay */
.cta-windmill-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(47, 62, 76, 0.01) 100px,
            rgba(47, 62, 76, 0.01) 200px
        );
    pointer-events: none;
    z-index: 1;
}

/* Section Borders */
.cta-windmill-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent,
        #2F3E4C 10%,
        #2F3E4C 90%,
        transparent
    );
    opacity: 0.1;
}

.cta-section-border-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent,
        #2F3E4C 10%,
        #2F3E4C 90%,
        transparent
    );
    opacity: 0.1;
    z-index: 2;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .cta-windmill-left,
    .cta-windmill-right {
        width: 250px;
        height: 250px;
    }

    .cta-windmill-left {
        left: -125px;
    }

    .cta-windmill-right {
        right: -125px;
    }
}

@media (max-width: 768px) {
    .cta-windmill-section {
        padding: 80px 20px;
    }

    .cta-windmill-left,
    .cta-windmill-right {
        display: none;
    }

    .cta-title-flow {
        font-size: 36px;
    }

    .cta-subtitle-flow {
        font-size: 16px;
    }

    .cta-stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .stat-separator {
        display: none;
    }

    .stat-item {
        justify-content: center;
    }

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

    .btn-cta-main,
    .btn-cta-alt {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

.why-choose-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background-color: #ffffff;
    overflow: hidden;
    border-bottom: 12px solid #f0efef;
}

.why-choose-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Fixed windmill watermark */
.fixed-windmill {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    transform: translate(0%, 10%);
    z-index: 1;
    pointer-events: none;
}

.windmill-fixed {
    width: 100%;
    height: 100%;
}

.windmill-blades-fixed {
    animation: windmill-slow 60s linear infinite;
}

@keyframes windmill-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Values grid - Why Chase Dreams section - ALL IN ONE LINE like Choose Your Quest */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 2;
}

/* Force desktop to always show 5 columns in one row */
@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 20px;
    }
}

/* Tablet: 3 columns */
@media (max-width: 1023px) and (min-width: 769px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.value-item {
    text-align: center;
    padding: 20px 15px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(60, 54, 48, 0.08);
    transition: all 0.3s ease;
    position: relative;
    min-width: 0; /* Prevent minimum width issues */
    width: 100%; /* Take full column width */
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(60, 54, 48, 0.12);
}

.value-icon {
    margin-bottom: var(--space-lg);
}

.value-title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.value-description {
    font-size: var(--fs-base);
    line-height: 1.6;
    color: var(--color-text);
    opacity: 0.8;
}

/* ==========================================================================
   Digital Workspace Section
   ========================================================================== */

.digital-workspace {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Uses the same showcase container from "Where Ideas Take Flight" section */
.digital-workspace .showcase-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Digital Content Styles */
.digital-content {
    max-width: 500px;
    margin-left: auto;
}


.digital-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #2F3E4C;
    color: #F3F0E6;
    font-family: 'Adrianna Light', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.digital-headline {
    font-family: 'LTC Goudy Oldstyle Pro', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 400;
    color: #2F3E4C;
    line-height: 1.1;
    margin-bottom: 40px;
}

.digital-headline .highlight {
    font-family: 'Satisfy', cursive;
    color: #A26859;
}

/* Stats Row */
.digital-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E0E0E0;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-family: 'LTC Goudy Oldstyle Pro', serif;
    font-size: 36px;
    font-weight: 400;
    color: #2F3E4C;
    line-height: 1;
}

.stat-text {
    font-family: 'Adrianna Light', sans-serif;
    font-size: 12px;
    color: #656B4C;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #E0E0E0;
}

/* Description */
.digital-description {
    font-family: 'Adrianna Light', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 36px;
}

/* Action Buttons */
.digital-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.digital-actions > a {
    flex: 0 0 auto;
}

.btn-digital-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: #2F3E4C;
    color: #F3F0E6;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid #2F3E4C;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 52px;
    min-width: 180px;
    line-height: 1.2;
}

.btn-digital-primary:hover {
    background: transparent;
    color: #2F3E4C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 62, 76, 0.3);
}

.btn-digital-primary .btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-digital-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-digital-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid #2F3E4C;
    color: #2F3E4C;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 52px;
    min-width: 200px;
    line-height: 1.2;
}

.btn-digital-secondary:hover {
    background: #2F3E4C;
    color: #F3F0E6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 62, 76, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .digital-workspace .showcase-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .digital-content {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .digital-stats {
        justify-content: center;
    }

    .digital-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .digital-workspace {
        padding: 60px 0;
    }

    .digital-headline {
        font-size: 32px;
    }

    .digital-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .digital-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-digital-primary,
    .btn-digital-secondary {
        width: 100%;
        justify-content: center;
    }
}

.btn-icon {
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-overlay {
        background: linear-gradient(90deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(26, 26, 26, 0.4) 80%, transparent 100%);
    }

    .content-box {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .image-side {
        height: 500px;
    }

    .content-overlay {
        background: linear-gradient(to top, rgba(26, 26, 26, 0.98) 0%, rgba(26, 26, 26, 0.95) 70%, rgba(26, 26, 26, 0.7) 100%);
        align-items: flex-end;
        padding: 40px 20px;
    }

    .content-box {
        max-width: 100%;
    }

    .content-features {
        gap: 30px;
    }

    .feature-number {
        font-size: 36px;
    }
}

/* ==========================================================================
   Testimonials Section - Modern Grid Layout
   ========================================================================== */

.testimonials-section {
    padding: 120px 30px;
    background: #fafafa;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 240, 230, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

/* Testimonial Card */
.testimonial-card {
    background: #ffffff;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(47, 62, 76, 0.08);
    border: 1px solid rgba(47, 62, 76, 0.06);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    font-family: 'Satisfy', cursive;
    color: #2F3E4C;
    opacity: 0.1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(47, 62, 76, 0.15);
    border-color: #2F3E4C;
}

/* Rating Stars */
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star {
    color: #fbbf24;
    font-size: 18px;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 30px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(47, 62, 76, 0.08);
    margin-top: auto;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2F3E4C 0%, #4a5f77 100%);
    color: #F3F0E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-size: 17px;
    font-weight: 600;
    color: #2F3E4C;
    margin: 0 0 4px;
    font-family: 'LTC Goudy Oldstyle Pro', serif;
}

.author-title {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
    font-weight: 400;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--color-accent);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: var(--space-sm);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--color-accent);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */

.gallery-section {
    padding: var(--space-4xl) 0;
    background-color: #ffffff;
}

.workspace-gallery {
    margin-bottom: var(--space-3xl);
}

/* Instagram-style gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(60, 54, 48, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    color: var(--color-white);
    font-weight: 600;
    font-size: var(--fs-base);
}

/* ==========================================================================
   CTA Dreams Section - Reusable Template
   ========================================================================== */

.cta-dreams-section {
    position: relative;
    padding: 120px 0 0;
    margin-bottom: 0;
    overflow: hidden;
    background: #2F3E4C;
}

/* Background Styles */
.cta-dreams-section.cta-bg-gradient {
    background: linear-gradient(135deg, #2F3E4C 0%, #1a1a1a 100%);
}

.cta-dreams-section.cta-bg-dark {
    background: #1a1a1a;
}

.cta-dreams-section.cta-bg-light {
    background: #F3F0E6;
}

.cta-dreams-section.cta-bg-gradient .quote-icon { color: #F3F0E6; }
.cta-dreams-section.cta-bg-gradient .quote-icon path { opacity:0.35; }
.cta-dreams-section.cta-bg-gradient p { color: #F3F0E6 !important; }
.cta-dreams-section.cta-bg-gradient p a { color: #A26859 !important; }
.cta-dreams-section.cta-bg-gradient p a:hover { color: #F3F0E6 !important; }

.cta-dreams-wrapper {
    position: relative;
    z-index: 2;
    padding-bottom: 120px;
}

.cta-dreams-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Quote Accent */
.cta-quote-accent {
    position: relative;
    margin-bottom: 3rem;
}

.quote-icon {
    color: #A26859;
    margin-bottom: 1rem;
}

.cta-quote-text {
    font-family: 'Satisfy', cursive;
    font-size: 1.5rem;
    color: #A26859;
    opacity: 0.9;
    font-style: italic;
}

/* Title */
.cta-dreams-title {
    font-family: 'LTC Goudy Oldstyle Pro', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #F3F0E6;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-bg-light .cta-dreams-title {
    color: #2F3E4C;
}

/* Subtitle */
.cta-dreams-subtitle {
    font-family: 'Adrianna Light', sans-serif;
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(243, 240, 230, 0.8);
    max-width: 700px;
color: white;
    margin: 0 auto 3rem;
}

.cta-dreams-subtitle a {
    color: #F3F0E6 !important;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.cta-dreams-subtitle a:hover {
    color: #9b5527 !important;
    text-decoration-thickness: 2px;
}

.cta-bg-light .cta-dreams-subtitle {
    color: #656B4C;
}

.cta-bg-light .cta-dreams-subtitle a {
    color: #9B5527 !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cta-bg-light .cta-dreams-subtitle a:hover {
    color: #A26859 !important;
}

/* Action Buttons */
.cta-dreams-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: #A26859;
    color: #F3F0E6;
    font-family: 'Adrianna Light', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #F3F0E6;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-cta-primary:hover {
    color: #2F3E4C;
    transform: translateY(-2px);
}

.btn-cta-primary:hover::before {
    left: 0;
}

.btn-cta-primary .btn-icon {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-cta-secondary {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: transparent;
    border: 2px solid #F3F0E6;
    color: #F3F0E6;
    font-family: 'Adrianna Light', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.btn-cta-secondary:hover {
    background: #F3F0E6;
    color: #2F3E4C;
    transform: translateY(-2px);
}

.cta-bg-light .btn-cta-secondary {
    border-color: #2F3E4C;
    color: #2F3E4C;
}

.cta-bg-light .btn-cta-secondary:hover {
    background: #2F3E4C;
    color: #F3F0E6;
}

/* Stats Row */
.cta-dreams-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(243, 240, 230, 0.2);
}

.cta-dreams-stats .stat {
    text-align: center;
}

.cta-dreams-stats .stat-value {
    display: block;
    font-family: 'LTC Goudy Oldstyle Pro', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #F3F0E6;
    margin-bottom: 0.5rem;
}

.cta-dreams-stats .stat-label {
    font-family: 'Adrianna Light', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(243, 240, 230, 0.6);
}

.stat-separator {
    width: 1px;
    height: 50px;
    background: rgba(243, 240, 230, 0.2);
}

.cta-bg-light .cta-dreams-stats {
    border-top-color: rgba(47, 62, 76, 0.2);
}

.cta-bg-light .stat-value {
    color: #2F3E4C;
}

.cta-bg-light .stat-label {
    color: #656B4C;
}

.cta-bg-light .stat-separator {
    background: rgba(47, 62, 76, 0.2);
}

/* Background Decorations */
.cta-bg-decoration-left,
.cta-bg-decoration-right {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(162, 104, 89, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-bg-decoration-left {
    top: -200px;
    left: -100px;
}

.cta-bg-decoration-right {
    bottom: -200px;
    right: -200px;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-dreams-section {
        padding: 80px 0 0;
    }

    .cta-dreams-wrapper {
        padding-bottom: 80px;
    }

    .cta-dreams-title {
        font-size: 2rem;
    }

    .cta-dreams-subtitle {
        font-size: 1.125rem;
    }

    .cta-dreams-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-dreams-stats {
        gap: 2rem;
    }

    .stat-value {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Final CTA Section (Legacy - to be removed)
   ========================================================================== */

.final-cta-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background: #ffffff;
    color: var(--color-text);
    text-align: center;
}

.final-cta-section .concrete-texture {
    opacity: 0.3;
}

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

.cta-quote {
    margin-bottom: var(--space-xl);
}

.cta-quote .quote-text {
    font-family: var(--font-script);
    font-size: var(--fs-xl);
    color: var(--color-accent);
    font-style: italic;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: var(--space-lg);
    color: var(--color-white);
}

.cta-subtitle {
    font-size: var(--fs-lg);
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.cta-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cta-stats .stat-number {
    color: var(--color-accent);
}

.cta-stats .stat-label {
    color: var(--color-white);
}

.cta-stats .stat-divider {
    color: var(--color-accent);
}

/* ==========================================================================
   Section CTAs
   ========================================================================== */

.section-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

.cta-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text a {
    color: #2F3E4C;
    text-decoration: underline;
    font-weight: 500;
}

.cta-text a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: #2F3E4C;
    border: 2px solid #2F3E4C;
}

.btn-outline:hover {
    background: #2F3E4C;
    color: #F3F0E6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 62, 76, 0.3);
}

/* ==========================================================================
   Mobile Responsiveness
   ========================================================================== */

@media (max-width: 768px) {
    /* Typography mobile adjustments */
    body {
        font-family: 'Avenir', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: var(--font-primary); /* Keep serif for headings */
    }

    /* Service cards mobile - removed to prevent desktop override */

    .service-card {
        padding: 30px 20px;
    }

    /* Section paddings */
    .services-section {
        padding: 60px 0;
    }

    /* Container padding */
    .container {
        padding: 0 15px;
    }

    /* Hero actions are handled above - removing duplicate */
        gap: 12px;
        align-items: center;
    }

    .hero-accent-line {
        display: none;
    }

    .btn-hero {
        min-width: 120px;
    }

    .hero-stats {
        gap: var(--space-md);
    }

    /* Services mobile - 1 column */
    @media (max-width: 768px) {
        .services-grid {
            grid-template-columns: 1fr;
            gap: var(--space-lg);
        }

        /* Values mobile */
        .values-grid {
            grid-template-columns: 1fr !important;
            gap: var(--space-lg);
        }
    }

    /* CTA mobile */
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ==========================================================================
   Service Pages Styling
   ========================================================================== */

/* Container base styles for service pages */
.service-hero .container,
.service-description .container,
.explore-services .container,
.cta-request .container,
.why-choose-service .container,
.final-cta-service .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow: visible !important; /* Allow dropdowns */
}

/* Service Hero Section */
.service-hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0 80px;
    margin-top: 80px;
    background-color: #333c4a;
    overflow: hidden;
}

.service-hero:before {
    content: '';
    width: 50vw;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    min-height: 350px;
    background-image: url('../images/hero/servicebanner.png');
    background-size: cover !important;
    background-position: right top !important;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.service-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1360px;
}

.service-hero .hero-content {
    text-align: left;
    max-width: 50%;
    margin: 0;
    padding: 0 3rem;
    align-items: flex-start;
}

.service-hero .hero-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 24px;
    font-family: 'Satisfy', cursive;
    line-height: 1.2;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-hero .hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.service-hero .hero-description:last-child {
    margin-bottom: 0 !important;
}

.service-hero-large-offices .hero-description,
.service-hero-small-offices .hero-description,
.service-hero-private-offices .hero-description,
.service-hero-studio-offices .hero-description,
.service-hero-coworking .hero-description,
.service-hero-corporate .hero-description {
    color: #ffffff !important;
}

/* Additional force for all hero content paragraphs */
.service-hero .hero-content p,
.service-hero .hero-content .hero-description,
.service-hero p.hero-description,
section[class*="service-hero"] .hero-description {
    color: #ffffff !important;
}

.service-hero .hero-description strong {
    color: #ffffff;
    font-weight: 600;
}



.offices-hero {
    background-color: #333c4a;
    background-size: 50vw 100% !important;
    background-position: right top !important;
    padding-top: 80px;
}

.offices-hero .container {
    max-width: 1300px;
}

.offices-hero .hero-content {
    text-align: left;
    width: 50%;
    max-width: 600px;
    margin: 0;
    padding: 4rem 2.5rem;
}

.offices-hero .hero-title, .offices-hero .hero-description { text-align:left !important; margin:0 !important; max-width:initial !important; }

/* Hero banner text link styles - only for inline paragraph links, NOT buttons */
.hero-banner .hero-description a:not(.btn):not([class*="btn"]),
.service-hero .hero-description a:not(.btn):not([class*="btn"]),
.service-hero .hero-content p a:not(.btn):not([class*="btn"]),
section[class*="service-hero"] .hero-description a:not(.btn):not([class*="btn"]),
section[class*="service-hero"] .hero-content p a:not(.btn):not([class*="btn"]) {
    color: #F3F0E6 !important;
    background-color: rgba(155, 85, 39, 0.8) !important;
    padding: 3px 10px !important;
    border-radius: 6px !important;
    text-decoration: underline !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 2px !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    display: inline-block !important;
}
.hero-banner .hero-description a:not(.btn):not([class*="btn"]):hover,
.service-hero .hero-description a:not(.btn):not([class*="btn"]):hover,
.service-hero .hero-content p a:not(.btn):not([class*="btn"]):hover,
section[class*="service-hero"] .hero-description a:not(.btn):not([class*="btn"]):hover,
section[class*="service-hero"] .hero-content p a:not(.btn):not([class*="btn"]):hover {
    color: #ffffff !important;
    background-color: #9B5527 !important;
    text-decoration-thickness: 2px !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

/* CTA section text link styles - for light backgrounds */
.cta-request p a:not(.btn):not([class*="btn"]),
.cta-request .cta-text a:not(.btn):not([class*="btn"]),
.cta-request .form-note a:not(.btn):not([class*="btn"]),
.cta-content-section p a:not(.btn):not([class*="btn"]),
.cta-windmill-section p a:not(.btn):not([class*="btn"]),
.cta-subtitle-flow a:not(.btn):not([class*="btn"]),
.final-cta-service p a:not(.btn):not([class*="btn"]),
.final-cta-service .cta-description a:not(.btn):not([class*="btn"]) {
    color: #9B5527 !important;
    text-decoration: underline !important;
    text-decoration-thickness: 2px !important;
    font-weight: 600 !important;
}

.cta-request p a:not(.btn):not([class*="btn"]):hover,
.cta-request .cta-text a:not(.btn):not([class*="btn"]):hover,
.cta-request .form-note a:not(.btn):not([class*="btn"]):hover,
.cta-content-section p a:not(.btn):not([class*="btn"]):hover,
.cta-windmill-section p a:not(.btn):not([class*="btn"]):hover,
.cta-subtitle-flow a:not(.btn):not([class*="btn"]):hover,
.final-cta-service p a:not(.btn):not([class*="btn"]):hover,
.final-cta-service .cta-description a:not(.btn):not([class*="btn"]):hover {
    color: #A26859 !important;
    text-decoration-thickness: 3px !important;
}

.service-hero .hero-cta {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.service-hero .hero-cta .btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-height: 52px;
}

.service-hero .hero-cta .btn-primary {
    background: #F3F0E6;
    color: #2F3E4C;
    border: 2px solid #F3F0E6;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-hero .hero-cta .btn-primary:hover {
    background: #ffffff;
    color: #2F3E4C;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.service-hero .hero-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.service-hero .hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Service Description Section - Matching Front Page Showcase Style */
.service-description {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    overflow: hidden;
}

/* Decorative Elements matching front page */
.service-description::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(162, 104, 89, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.service-description::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(162, 104, 89, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-description .service-content {
    max-width: 500px;
    margin-left: auto;
}

/* Reversed layout - image on left, text on right */
.service-description-reverse .service-content-wrapper {
    grid-template-columns: 1.2fr 1fr;
}

.service-description-reverse .service-content {
    max-width: 500px;
    margin-left: 0;
    margin-right: auto;
}

.service-description .section-title {
    font-size: clamp(36px, 5vw, 48px);
    color: #3C3630;  /* Espresso - brand primary text color */
    margin-bottom: 20px;
    text-align: left;
    font-family: 'Satisfy', cursive;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Subtitle styling with brand secondary font */
.service-description .section-subtitle {
    font-size: 1.25rem;
    color: #A26859;  /* Heather Clay - brand accent */
    margin-bottom: 30px;
    font-family: 'Adrianna Light', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    line-height: 1.5;
}

.service-description .description-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #3C3630;  /* Espresso for body text */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Avenir', sans-serif;
}

.service-description .description-text p {
    margin-bottom: 24px;
}

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

/* Highlight important text */
.service-description .description-text strong {
    color: #2F3E4C;  /* Midnight Blue for emphasis */
    font-weight: 600;
}

.service-image {
    position: relative;
}

/* Image frame matching front page */
.service-img-frame {
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(60, 54, 48, 0.15);
    border-radius: 24px;
    background: #ffffff;
}

.service-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
    border-radius: 24px;
}

.service-img-frame:hover .service-img {
    transform: scale(1.05);
}

/* Explore Services Section */
.explore-services {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

/* Subtle pattern overlay */
.explore-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(162, 104, 89, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(162, 104, 89, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.explore-services .section-title {
    font-size: clamp(32px, 4vw, 42px);
    color: #3C3630;  /* Espresso */
    margin-bottom: 16px;
    text-align: center;
    font-family: 'Satisfy', cursive;
    letter-spacing: -0.5px;
    font-weight: 400;
}

.explore-services .section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

/* Modern card grid layout */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.service-category-card {
    background: #ffffff;
    border: 1px solid rgba(60, 54, 48, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A26859 0%, #9B5527 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-category-card:hover {
    box-shadow: 0 10px 40px rgba(60, 54, 48, 0.08);
    transform: translateY(-4px);
    border-color: rgba(162, 104, 89, 0.2);
}

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

.category-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(162, 104, 89, 0.1) 0%, rgba(155, 85, 39, 0.05) 100%);
    border-radius: 12px;
}

.category-icon svg {
    width: 24px;
    height: 24px;
    color: #A26859;
}

.service-category-card h3 {
    font-size: 1.25rem;
    color: #3C3630;
    margin-bottom: 16px;
    font-family: 'Satisfy', cursive;
    font-weight: 500;
}

.service-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-links li {
    margin-bottom: 12px;
}

.service-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-links a::before {
    content: '→';
    margin-right: 8px;
    color: #A26859;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.service-links a:hover {
    color: #A26859;
    transform: translateX(4px);
}

.service-links a:hover::before {
    transform: translateX(4px);
}

/* Closing statement */
.explore-services .closing-statement {
    text-align: center;
    font-size: 1.125rem;
    color: #3C3630;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding-top: 20px;
    border-top: 1px solid rgba(60, 54, 48, 0.1);
}

/* Responsive styles for modern service grid */
@media (max-width: 768px) {
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-category-card {
        padding: 24px;
    }

    .explore-services {
        padding: 80px 0;
    }

    .explore-services .section-subtitle {
        margin-bottom: 60px;
    }
}

/* Service Categories Grid - Old layout kept for compatibility */
.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.service-category {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(47, 62, 76, 0.08);
}

.service-category h3 {
    font-size: 1.5rem;
    color: #2F3E4C;
    margin-bottom: 20px;
    font-family: 'Satisfy', cursive;
}

.service-category .service-list {
    list-style: none;
    padding: 0;
}

.service-category .service-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(47, 62, 76, 0.08);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-category .service-list li:last-child {
    border-bottom: none;
}

.service-category .service-list a {
    color: #2F3E4C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-category .service-list a:hover {
    color: #A26859;
    text-decoration: underline;
}

/* Request Information CTA Section */
.cta-request {
    padding: 100px 0;
    background: linear-gradient(135deg, #A26859 0%, #9B5527 100%);
    position: relative;
    overflow: hidden;
}

.cta-request::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(155, 85, 39, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-request .cta-title {
    font-size: 2.5rem;
    color: #F3F0E6;
    margin-bottom: 24px;
    font-family: 'Satisfy', cursive;
}

.request-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* CTA Request Form Styles */
.cta-request .cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-request .cta-content-section {
    color: #F3F0E6;
}

.cta-request .cta-content-section .cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 30px;
}

.cta-request .cta-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(243, 240, 230, 0.95);
    margin-bottom: 24px;
    font-family: 'Adrianna Light', sans-serif;
}

.cta-request .cta-text:first-of-type {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.cta-request .cta-text a {
    color: #F3F0E6;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-request .cta-text a[href^="tel:"] {
    color: #F3F0E6;
    background: rgba(155, 85, 39, 0.6);  /* Leather color with transparency */
    padding: 4px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    border: 1px solid rgba(243, 240, 230, 0.3);
    transition: all 0.3s ease;
}

.cta-request .cta-text a[href^="tel:"]:hover {
    background: rgba(155, 85, 39, 0.8);
    border-color: rgba(243, 240, 230, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-request .cta-text a:not([href^="tel:"]):hover {
    opacity: 0.85;
    text-decoration: none;
}

/* Areas section styling */
.cta-request .cta-areas {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(243, 240, 230, 0.3);
}

.cta-request .cta-areas .cta-text {
    font-size: 1rem;
    margin-bottom: 16px;
    color: rgba(243, 240, 230, 0.85);
}

.cta-request .areas-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.cta-request .areas-links a {
    color: #F3F0E6;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 2px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.cta-request .areas-links a:hover {
    border-bottom-color: #F3F0E6;
}

.cta-request .areas-links .separator {
    color: rgba(243, 240, 230, 0.4);
    font-size: 0.8rem;
}

.cta-request .cta-form-section {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-request .cta-form-section h3 {
    font-size: 1.75rem;
    color: #3C3630;
    margin-bottom: 24px;
    font-family: 'Satisfy', cursive;
}

.cta-request .cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.cta-request .form-row:last-of-type {
    grid-template-columns: 1fr;
}

.cta-request .cta-form input,
.cta-request .cta-form select,
.cta-request .cta-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #E0DDD5;
    border-radius: 8px;
    font-family: 'Adrianna Light', sans-serif;
    font-size: 1rem;
    color: #3C3630;
    background: #FAFAF8;
    transition: all 0.3s ease;
}

.cta-request .cta-form input:focus,
.cta-request .cta-form select:focus,
.cta-request .cta-form textarea:focus {
    outline: none;
    border-color: #A26859;
    background: #ffffff;
}

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

.cta-request .btn-block {
    width: 100%;
    padding: 16px 32px;
    background: #9B5527;
    color: #F3F0E6;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.cta-request .btn-block:hover {
    background: #A26859;
    transform: translateY(-2px);
}

.cta-request .form-note {
    text-align: center;
    color: #656B4C;
    margin-top: 20px;
    font-size: 1rem;
}

.cta-request .form-note a {
    color: #A26859;
    text-decoration: none;
    font-weight: 600;
}

.cta-request .form-note a:hover {
    text-decoration: underline;
}

/* Responsive CTA Request */
@media (max-width: 768px) {
    .cta-request .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

/* Why Choose Service Section */
.why-choose-service {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #F3F0E6 100%);
}

.why-choose-service .section-title {
    font-size: clamp(36px, 5vw, 48px);
    color: #3C3630;  /* Espresso - brand primary */
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Satisfy', cursive;
    letter-spacing: -0.5px;
}

.why-choose-service .section-subtitle {
    font-size: 1.25rem;
    color: #3C3630;  /* Espresso for body text */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
    font-family: 'Adrianna Light', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

/* For tablets - 2 columns */
@media (max-width: 768px) {
    .benefits-grid {
        gap: 20px;
    }
}

/* For mobile - smaller gap */
@media (max-width: 480px) {
    .benefits-grid {
        gap: 16px;
    }
}

.why-choose-service .benefit-item {
    flex: 0 1 calc(20% - 20px);
    min-width: 200px;
    max-width: 280px;
    position: relative;
    text-align: center;
    padding: 32px 24px 28px;
    background: #ffffff;
    border: 1px solid rgba(162, 104, 89, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Decorative gradient accent at top */
.why-choose-service .benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A26859 0%, #9B5527 50%, #A26859 100%);
    transform: scaleX(0.3);
    transition: transform 0.4s ease;
    transform-origin: left;
}

/* Subtle pattern overlay */
.why-choose-service .benefit-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(162, 104, 89, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.why-choose-service .benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(162, 104, 89, 0.15);
    border-color: rgba(162, 104, 89, 0.15);
}

.why-choose-service .benefit-item:hover::before {
    transform: scaleX(1);
}

.why-choose-service .benefit-item:hover::after {
    transform: scale(1.5);
    right: -25px;
    opacity: 0.5;
}

/* Style benefit icons for Why Choose Us section */
.why-choose-service .benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(162, 104, 89, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-choose-service .benefit-icon svg {
    width: 28px;
    height: 28px;
    color: #A26859;
}

/* Responsive sizing */
@media (max-width: 1200px) {
    .benefit-item {
        flex: 0 1 calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .benefit-item {
        flex: 0 1 calc(50% - 12px);
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .benefit-item {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

.why-choose-service .benefit-item h3 {
    font-size: 1.25rem;
    color: #3C3630;  /* Espresso */
    margin-bottom: 12px;
    font-family: 'Satisfy', cursive;
    font-weight: 500;
    text-align: center;
}


.why-choose-service .benefit-item p {
    font-size: 0.95rem;
    color: #3C3630;  /* Espresso for body text */
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Avenir', sans-serif;
    opacity: 0.9;
    text-align: center;
    margin: 0;
}

.benefit-item p a {
    color: #A26859;  /* Heather Clay for links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.benefit-item p a:hover {
    color: #9B5527;  /* Leather on hover */
    text-decoration: none;
}

/* Final CTA Service Section */
.final-cta-service {
    padding: 100px 0;
    background: linear-gradient(135deg, #2F3E4C 0%, #1a252f 100%);
    position: relative;
}

.final-cta-service .cta-title {
    font-size: 3rem;
    color: #F3F0E6;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Satisfy', cursive;
}

.final-cta-service .cta-description {
    font-size: 1.125rem;
    color: #F3F0E6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.final-cta-service .cta-description a {
    color: #F3F0E6;
    text-decoration: underline;
}

.final-cta-service .cta-description a:hover {
    color: #ffffff;
}

.final-cta-service .cta-description strong {
    color: #ffffff;
    font-weight: 600;
}

.final-cta-service .cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-service .cta-actions .btn {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-height: 60px;
}

.final-cta-service .cta-actions .btn-primary {
    background: #A26859;
    color: #F3F0E6;
    border: 2px solid #A26859;
}

.final-cta-service .cta-actions .btn-primary:hover {
    background: #9B5527;
    border-color: #9B5527;
    transform: translateY(-2px);
}

.final-cta-service .cta-actions .btn-secondary {
    background: transparent;
    color: #F3F0E6;
    border: 2px solid #F3F0E6;
}

.final-cta-service .cta-actions .btn-secondary:hover {
    background: #F3F0E6;
    color: #2F3E4C;
    transform: translateY(-2px);
}

/* Support for .cta-buttons class (used in templates) */
.final-cta-service .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-service .cta-buttons .btn {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-height: 60px;
}

.final-cta-service .cta-buttons .btn-primary {
    background: #A26859;
    color: #F3F0E6;
    border: 2px solid #A26859;
}

.final-cta-service .cta-buttons .btn-primary:hover {
    background: #9B5527;
    border-color: #9B5527;
    transform: translateY(-2px);
}

.final-cta-service .cta-buttons .btn-secondary {
    background: #F3F0E6;
    color: #2F3E4C;
    border: 2px solid #F3F0E6;
    font-weight: 600;
}

.final-cta-service .cta-buttons .btn-secondary:hover {
    background: #ffffff;
    color: #2F3E4C;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 240, 230, 0.3);
}

/* Tablet Responsive for Service Pages */
@media (max-width: 1024px) {
    .service-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-description .service-content {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .service-description .section-title {
        text-align: center;
    }

    .service-description::before,
    .service-description::after {
        opacity: 0.5;
    }
}

/* Hide windmills in service page CTAs */
.service-page-cta-wrapper .cta-windmill-left,
.service-page-cta-wrapper .cta-windmill-right {
    display: none;
}

/* Office Gallery Section - Premium Design */
.office-gallery {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

/* Gallery Header */
.gallery-header {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #A26859;
    margin-bottom: 16px;
}

.office-gallery .section-title {
    font-size: clamp(36px, 5vw, 48px);
    color: #3C3630;
    margin-bottom: 16px;
    font-family: 'Satisfy', cursive;
    letter-spacing: -0.5px;
}

.office-gallery .section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Adrianna Light', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Hero Showcase */
.gallery-showcase {
    margin-bottom: 100px;
}

.showcase-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(60, 54, 48, 0.15);
}

.showcase-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.showcase-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #A26859;
}

.showcase-details {
    padding: 20px 0;
}

.showcase-details h3 {
    font-size: 2rem;
    color: #3C3630;
    margin-bottom: 20px;
    font-family: 'Satisfy', cursive;
    text-align: left;
    padding-left: 0;
}

.space-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-items: start;
}

.space-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #3C3630;
    padding: 16px 18px;
    background: #ffffff;
    border: 1px solid rgba(162, 104, 89, 0.12);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    cursor: default;
    text-align: center;
    font-weight: 500;
}

.space-features li:hover {
    border-color: rgba(162, 104, 89, 0.25);
    box-shadow: 0 4px 12px rgba(162, 104, 89, 0.1);
    transform: translateY(-2px);
    background: linear-gradient(to right, rgba(243, 240, 230, 0.3) 0%, #ffffff 100%);
}

.space-features .feature-icon {
    display: none;
}

.space-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 32px;
    text-align: left;
}

.showcase-actions {
    text-align: left;
}

.showcase-actions .btn-text {
    color: #A26859;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
}

.showcase-actions .btn-text:hover {
    color: #9B5527;
    transform: translateX(4px);
}

/* Curated Gallery Grid */
.gallery-curated {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-section-title {
    font-size: 1.75rem;
    color: #3C3630;
    margin-bottom: 40px;
    font-family: 'Satisfy', cursive;
}

/* Bento Box Grid Layout - Fixed */
.curated-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 240px;
    gap: 24px;
}

.curated-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    grid-column: span 2;
}

.curated-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(60, 54, 48, 0.12);
}

/* Tall item - first item, spans 2x2 */
.curated-tall {
    grid-column: span 2;
    grid-row: span 2;
}

/* Wide item - spans 4 columns */
.curated-wide {
    grid-column: span 4;
}

.curated-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.curated-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.curated-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(28, 25, 23, 0.95) 0%, transparent 100%);
    padding: 40px 24px 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.curated-item:hover .curated-info {
    transform: translateY(0);
}

.curated-info h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 4px;
    font-family: 'Satisfy', cursive;
}

.space-size {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

/* Gallery Bottom CTA */
.gallery-bottom-cta {
    margin-top: 100px;
    padding: 60px;
    background: #F3F0E6;
    border-radius: 24px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.gallery-bottom-cta .cta-buttons a {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 100 !important;
}

.cta-eyebrow {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #A26859;
    margin-bottom: 12px;
}

.cta-heading {
    font-size: 2rem;
    color: #3C3630;
    margin-bottom: 16px;
    font-family: 'Satisfy', cursive;
}

.cta-description {
    font-size: 1.0625rem;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-banner .hero-title, .service-hero .hero-title {
        font-size: 2.4rem;
    }
    .showcase-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-img {
        height: 400px;
    }

    .curated-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 220px;
    }

    .curated-item {
        grid-column: span 2;
    }

    .curated-tall {
        grid-column: span 2;
        grid-row: span 2;
    }

    .curated-wide {
        grid-column: span 4;
    }
}

@media (max-width: 768px) {
    .office-gallery {
        padding: 80px 0;
    }

    .gallery-header {
        margin-bottom: 60px;
    }

    .showcase-img {
        height: 300px;
    }

    .showcase-details h3 {
        font-size: 1.5rem;
    }

    .space-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .space-features li {
        padding: 12px 14px;
    }

    .curated-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 16px;
    }

    .curated-item {
        grid-column: span 1;
    }

    .curated-tall {
        grid-column: span 2;
        grid-row: span 1;
    }

    .curated-wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .curated-info {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(28, 25, 23, 0.9) 0%, transparent 100%);
    }

    .gallery-bottom-cta {
        padding: 40px 24px;
        margin-top: 60px;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

/* Mobile Only - Gallery Fix */
@media (max-width: 480px) {
    .curated-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .curated-item,
    .curated-tall,
    .curated-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Mobile Responsive for Service Pages */
@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

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

    .service-hero .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    .service-description {
        padding: 60px 0;
    }

    .service-content-wrapper {
        gap: 40px;
    }

    .service-description .section-title {
        font-size: 32px;
    }

    .service-description .section-subtitle {
        font-size: 1.125rem;
    }

    .service-description .section-title,
    .explore-services .section-title,
    .cta-request .cta-title,
    .why-choose-service .section-title {
        font-size: 1.875rem;
    }

    .final-cta-service .cta-title {
        font-size: 2rem;
    }

    .final-cta-service .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-service .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ==========================================================================
   Accessibility & Performance
   ========================================================================== */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .windmill-blades,
    .windmill-blades-fixed,
    .bounce-animation {
        animation: none;
    }

    .scroll-animation .windmill-blades {
        animation: none;
    }
}

/* Focus states */
.btn:focus,
.carousel-btn:focus,
.carousel-dot:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* High contrast improvements */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(243, 240, 230, 0.95);
    }

    .service-card,
    .value-item,
    .testimonial-slide {
        border: 2px solid var(--color-text);
    }
}

/* ==========================================================================
   Footer Complete Redesign with Logo Dark Background
   ========================================================================== */

.site-footer {
    background: #1B1917;
    color: #F3F0E6;
    padding: 80px 0 30px;
    position: relative;
    z-index: 99;
    margin-top: 0;
}

/* Footer content wrapper */
.footer-content {
    width: 100%;
    max-width: calc(100vw - 360px);
    margin: auto;
}

/* Footer top section */
.footer-top {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(243, 240, 230, 0.1);
    margin-bottom: 30px;
}

/* Footer brand section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-img {
    width: 200px;
    height: auto;
}

.footer-tagline {
    font-family: 'Satisfy', cursive;
    font-size: 1.1rem;
    color: #A26859;
    opacity: 0.9;
    margin: 0;
}

/* Footer navigation columns */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-nav-column h4 {
    font-family: 'LTC Goudy Oldstyle Pro', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #F3F0E6;
    margin-bottom: 20px;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-column li {
    margin-bottom: 12px;
}

.footer-nav-column a {
    color: #F3F0E6;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-nav-column a:hover {
    opacity: 1;
    color: #A26859;
}

/* Footer contact section */
.footer-contact h4 {
    font-family: 'LTC Goudy Oldstyle Pro', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #F3F0E6;
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-phone,
.contact-email {
    color: #F3F0E6;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.contact-phone:hover,
.contact-email:hover {
    opacity: 1;
    color: #A26859;
}

.contact-address {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.6;
    margin: 0;
}

/* Footer social icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(243, 240, 230, 0.1);
    border-radius: 4px;
    color: #F3F0E6;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #A26859;
    transform: translateY(-2px);
}

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

/* Footer bottom section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.6;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #F3F0E6;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
}

/* Responsive design */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .footer-brand {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-content { max-width: calc(100vw - 120px); }
    .site-footer {
        padding: 60px 0 30px;
        margin-top: 0;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

    .footer-social {
        justify-content: center;
    }

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

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================================================
   Mobile Fixes - Comprehensive
   ========================================================================== */

@media (max-width: 480px) {
    .footer-content { max-width: calc(100vw - 60px); }
    /* Header fixes for small screens */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #ffffff;
        z-index: 9999;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .main-nav {
        padding: 10px 0;
    }

    .nav-wrapper {
        height: 55px;
        padding: 0 15px;
    }

    .logo-image {
        height: 35px;
    }

    /* Hero section mobile fixes */
    .hero-section {
        margin-top: 55px; /* Account for fixed header */
        height: calc(100vh - 55px);
        min-height: 500px;
        padding: 20px;
    }

    .hero-video {
        width: calc(100% - 20px);
        height: calc(100vh - 75px);
        margin: 10px;
        top: 65px;
    }

    .hero-container {
        height: calc(100vh - 75px);
        padding: 20px;
    }

    .hero-headline {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }

    .hero-subheadline {
        font-size: 0.95rem !important;
        line-height: 1.4;
    }

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

    .hero-actions .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Mobile menu fixes */
    .mobile-phone {
        display: none;
    }

    .mobile-menu-toggle {
        margin: 0;
    }

    /* Content sections mobile */
    .container {
        padding: 0 15px;
    }

    /* Service cards */
    .services-grid {
        padding: 0 15px;
    }

    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    /* CTA sections */
    .cta-dreams-section {
        padding: 60px 0 0;
    }

    .cta-dreams-wrapper {
        padding-bottom: 60px;
    }

    .cta-dreams-title {
        font-size: 1.5rem;
    }

    .cta-dreams-subtitle {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Final Mobile Video and Horizontal Scroll Fixes
   ========================================================================== */

/* Prevent horizontal scroll globally */
* {
    max-width: 100vw;
}

.container {
    max-width: 100%;
    /*overflow-x: hidden;*/
}

/* Mobile-specific hero video fixes - Clean minimal design like reference */
@media (max-width: 768px) {
    /* Clean white header */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #ffffff;
        z-index: 9999;
        padding: 15px 0;
        box-shadow: none;
    }

    .hero-section {
        padding: 15px;
        height: calc(100vh - 70px);
        margin-top: 70px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
    }

    .hero-video {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100% !important;
        height: auto !important;
        max-height: calc(100vh - 100px);
        aspect-ratio: 9/16 !important;
        object-fit: cover;
        border-radius: 16px;  /* No rounded corners */
        margin: 0;
        box-shadow: none;
    }

    .hero-container-wrapper {
        max-width: 100%;
        padding: 0;
        height: auto;
        aspect-ratio: unset;
    }

    .video-container {
        height: auto;
        border-radius: 16px;
        box-shadow: none;
    }

    /* Hide text overlays for clean look */
    .hero-container,
    .video-overlay-content,
    .scroll-indicator,
    .hero-accent-line {
        display: none !important;
    }

    /* Prevent windmill overflow */
    .cta-windmill-left,
    .cta-windmill-right {
        display: none;
    }

    /* Fix service grid for mobile only */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 15px;
    }

    .service-card {
        aspect-ratio: auto;
        padding: 20px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        margin-top: 60px;
        height: calc(100vh - 60px);
        padding: 10px;
    }

    .hero-video {
        max-height: calc(100vh - 80px);
    }
}

/* ==========================================================================
   Custom Page Styles
   ========================================================================== */

/* Location Page Styles */

/* Location Hero - uses service-hero base with custom background */
/*.service-hero-location {
    background-image: url('../images/services/longimage.png');
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
}*/

.service-hero-location:before {
    background-image: url('../images/services/longimage.png') !important;
}

/* Old Location Hero styles - kept for fallback */
.location-hero {
    position: relative;
    min-height: 400px;
    background: #2F3E4C;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 80px;
    margin-top: 80px;
}

.location-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.location-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #F3F0E6;
    margin-bottom: 24px;
    font-family: 'Satisfy', cursive;
}

.location-hero .hero-description {
    font-size: 1.25rem;
    color: #F3F0E6;
    line-height: 1.8;
    opacity: 0.95;
}

/* Location Main Section */
.location-main {
    padding: 100px 0;
    background: #ffffff;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Map Column */
.map-column {
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    display: block;
}

.directions-link {
    margin-top: 20px;
    text-align: center;
}

.directions-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Contact Column */
.contact-column {
    padding: 0;
}

.contact-info-wrapper {
    background: transparent;
    padding: 0;
}

.contact-title {
    font-size: 2.5rem;
    color: #2F3E4C;
    margin-bottom: 40px;
    font-family: 'Satisfy', cursive;
    font-weight: 400;
}

.contact-item {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(47, 62, 76, 0.08);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F3E4C;
    opacity: 0.6;
}

.contact-info h3 {
    font-size: 0.875rem;
    color: #2F3E4C;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

.contact-info p {
    color: #2F3E4C;
    line-height: 1.6;
    font-size: 1.125rem;
}

.contact-info a {
    color: #2F3E4C;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s ease;
    border-bottom: 1px solid rgba(47, 62, 76, 0.2);
}

.contact-info a:hover {
    opacity: 0.6;
    border-bottom-color: rgba(47, 62, 76, 0.4);
}

.contact-info .note {
    font-size: 0.9rem;
    color: #A26859;
    font-style: italic;
    margin-top: 8px;
}

/* Quick Actions */
.quick-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-actions .btn-block {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
}

/* Location Features Section */
.location-features {
    padding: 100px 0;
    background: #F3F0E6;
}

.features-intro {
    text-align: center;
    margin-bottom: 60px;
}

.features-intro .section-title {
    font-size: 2.5rem;
    color: #2F3E4C;
    margin-bottom: 12px;
    font-family: 'Satisfy', cursive;
    font-weight: 400;
}

.features-intro .section-subtitle {
    font-size: 1.125rem;
    color: #2F3E4C;
    opacity: 0.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F3E4C;
    opacity: 0.7;
}

.feature-card h3 {
    font-size: 1.125rem;
    color: #2F3E4C;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-card p {
    color: #2F3E4C;
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Old Parking Info Section - removed */
.parking-info {
    display: none;
}

.parking-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.parking-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #2F3E4C;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F3F0E6;
}

.parking-details h3 {
    font-size: 1.5rem;
    color: #2F3E4C;
    margin-bottom: 12px;
    font-family: 'Satisfy', cursive;
}

.parking-details p {
    color: #2F3E4C;
    line-height: 1.7;
    opacity: 0.85;
}

/* Nearby Amenities - removed, merged with features */
.nearby-amenities {
    display: none;
}

.nearby-amenities .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #3C3630;
    margin-bottom: 16px;
    font-family: 'Satisfy', cursive;
}

.nearby-amenities .section-description {
    text-align: center;
    color: #656B4C;
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-item {
    text-align: center;
    padding: 30px 20px;
    background: #F3F0E6;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: #A26859;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F3F0E6;
}

.amenity-item h4 {
    font-size: 1.25rem;
    color: #3C3630;
    margin-bottom: 10px;
    font-family: 'Satisfy', cursive;
}

.amenity-item p {
    color: #656B4C;
    font-size: 0.95rem;
}

/* Location CTA - removed, using cta-windmill template */
.location-cta {
    display: none;
}

.location-cta .cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #F3F0E6;
    margin-bottom: 20px;
    font-family: 'Satisfy', cursive;
}

.location-cta .cta-description {
    font-size: 1.125rem;
    color: rgba(243, 240, 230, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

/* Responsive Location Page */
@media (max-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-container iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .location-hero {
        padding: 80px 20px 60px;
    }

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

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

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

    .location-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
/* Removed duplicate location-hero with gradient - using simplified version above */

.location-details {
    padding: 80px 0;
    background: var(--color-alabaster);
}

.location-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.location-address-card,
.hours-card,
.location-features {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.location-address-card h2,
.hours-card h3,
.location-features h3 {
    color: var(--color-espresso);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.address-info,
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.address-item,
.hours-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
}

.address-label,
.day {
    font-weight: 600;
    color: var(--color-heather-clay);
}

.address-value a,
.time {
    color: var(--color-espresso);
    text-decoration: none;
}

.address-value a:hover {
    color: var(--color-heather-clay);
}

.access-note {
    margin-top: 15px;
    font-style: italic;
    color: var(--color-olive-grove);
    font-size: 0.9rem;
}

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

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

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    color: var(--color-espresso);
    font-size: 0.95rem;
}

.location-map {
    position: relative;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 250px;
}

.map-info h4 {
    color: var(--color-espresso);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.map-info p {
    color: var(--color-olive-grove);
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.neighborhood-info {
    padding: 80px 0;
    background: white;
}

.neighborhood-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.neighborhood-description p {
    font-size: 1.1rem;
    color: var(--color-espresso);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

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

.highlight-item h4 {
    color: var(--color-heather-clay);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.highlight-item p {
    color: var(--color-olive-grove);
    font-size: 0.95rem;
    line-height: 1.5;
}

.location-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--color-olive-grove) 0%, var(--color-heather-clay) 100%);
    color: var(--color-alabaster);
    text-align: center;
}

.location-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.location-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Reviews Page Styles */
.reviews-page {
    padding: 40px 0 80px;
    background: var(--color-alabaster);
}

.page-title {
    font-size: 3rem;
    color: var(--color-espresso);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.custom-html-block {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.reviews-subtitle {
    font-size: 1.2rem;
    color: var(--color-olive-grove);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.featured-review {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--color-heather-clay) 0%, var(--color-leather) 100%);
    color: white;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-name {
    font-size: 1.3rem;
    color: var(--color-espresso);
    margin-bottom: 5px;
    font-weight: 600;
}

.featured-review .reviewer-name {
    color: white;
}

.reviewer-title {
    font-size: 1rem;
    color: var(--color-heather-clay);
    font-style: italic;
}

.featured-review .reviewer-title {
    color: rgba(255, 255, 255, 0.9);
}

.review-rating .stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.review-content {
    margin-bottom: 20px;
}

.review-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-espresso);
    font-style: italic;
}

.featured-review .review-content p {
    color: white;
    font-size: 1.1rem;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--color-olive-grove);
}

.featured-review .review-meta {
    color: rgba(255, 255, 255, 0.8);
}

.reviews-stats {
    background: white;
    padding: 50px;
    border-radius: 16px;
    margin-bottom: 60px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-heather-clay);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-olive-grove);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reviews-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--color-espresso) 0%, var(--color-olive-grove) 100%);
    color: white;
    border-radius: 16px;
}

.reviews-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.reviews-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Events Page Styles */
.events-page {
    padding: 40px 0 80px;
    background: var(--color-alabaster);
}

.events-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.events-subtitle {
    font-size: 1.2rem;
    color: var(--color-olive-grove);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.featured-event {
    margin-bottom: 80px;
}

.event-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.event-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.event-image {
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-heather-clay);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.event-content {
    padding: 40px;
    display: flex;
    gap: 30px;
}

.event-date {
    text-align: center;
    background: var(--color-espresso);
    color: white;
    padding: 20px;
    border-radius: 12px;
    min-width: 80px;
    height: fit-content;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.event-details {
    flex: 1;
}

.event-title {
    font-size: 2rem;
    color: var(--color-espresso);
    margin-bottom: 15px;
    font-weight: 600;
}

.event-description {
    font-size: 1.1rem;
    color: var(--color-olive-grove);
    line-height: 1.6;
    margin-bottom: 25px;
}

.event-meta {
    margin-bottom: 30px;
}

.meta-item {
    display: flex;
    margin-bottom: 10px;
}

.meta-label {
    font-weight: 600;
    color: var(--color-heather-clay);
    min-width: 80px;
}

.meta-value {
    color: var(--color-espresso);
}

.upcoming-events {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-espresso);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.events-grid .event-card {
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.event-date-small {
    text-align: center;
    background: var(--color-heather-clay);
    color: white;
    padding: 15px 10px;
    border-radius: 8px;
    min-width: 60px;
}

.event-date-small .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.event-date-small .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.event-info {
    flex: 1;
}

.event-info .event-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.event-short-desc {
    color: var(--color-olive-grove);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.event-time, .event-location {
    font-size: 0.9rem;
    color: var(--color-heather-clay);
    margin-bottom: 5px;
}

.event-categories {
    margin-bottom: 80px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.category-card h3 {
    color: var(--color-espresso);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.category-card p {
    color: var(--color-olive-grove);
    line-height: 1.5;
}

.host-event-cta {
    background: linear-gradient(135deg, var(--color-espresso) 0%, var(--color-heather-clay) 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
}

.host-event-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.host-event-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.feature-icon {
    font-size: 1.2rem;
}

/* Contact Page Styles */
.contact-page {
    padding: 40px 0 80px;
    background: var(--color-alabaster);
}

.contact-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--color-olive-grove);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    margin-bottom: 80px;
}

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

.contact-form-section h2,
.contact-info-section h2 {
    color: var(--color-espresso);
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.contact-info-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-info-section .section-title {
    font-size: 2.5rem;
    color: var(--color-espresso);
    margin-bottom: 20px;
    font-family: 'Satisfy', cursive;
}

.contact-info-section .section-description {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-method-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-method-card .method-icon {
    font-size: 2.5rem;
    color: var(--color-heather-clay);
    margin-bottom: 20px;
}

.contact-method-card .method-title {
    font-size: 1.3rem;
    color: var(--color-espresso);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-method-card .method-info {
    margin-bottom: 20px;
}

.contact-method-card .primary-text {
    font-size: 1rem;
    color: var(--color-espresso);
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-method-card .secondary-text {
    font-size: 0.9rem;
    color: #6b7280;
}

.contact-method-card .method-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-heather-clay);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-method-card .method-link:hover {
    color: var(--color-leather);
}

.office-hours-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.office-hours-box .hours-title {
    font-size: 1.5rem;
    color: var(--color-espresso);
    margin-bottom: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.office-hours-box .hours-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.office-hours-box .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

.office-hours-box .hours-row:last-child {
    border-bottom: none;
}

.office-hours-box .day {
    font-weight: 600;
    color: var(--color-espresso);
}

.office-hours-box .time {
    color: #6b7280;
}

/* Contact Form and Map Section */
.contact-form-map-section {
    padding: 80px 0;
    background: white;
}

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

.form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 968px) {
    .form-map-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-form-wrapper .form-title {
    font-size: 2rem;
    color: var(--color-espresso);
    margin-bottom: 15px;
    font-family: 'Satisfy', cursive;
}

.contact-form-wrapper .form-description {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 0;
}

.map-wrapper .map-title {
    font-size: 1.8rem;
    color: var(--color-espresso);
    margin-bottom: 15px;
    font-family: 'Satisfy', cursive;
}

.map-wrapper .map-description {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
}

.map-embed {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.map-actions .btn {
    flex: 1;
    min-width: 180px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-espresso);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

/* Quick Links Section */
.quick-links-section {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.quick-links-section .section-title {
    font-size: 2.5rem;
    color: var(--color-espresso);
    margin-bottom: 50px;
    text-align: center;
    font-family: 'Satisfy', cursive;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.quick-link-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--color-espresso);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    color: var(--color-heather-clay);
}

.quick-link-card i {
    font-size: 2rem;
    color: var(--color-heather-clay);
}

.quick-link-card span {
    font-weight: 600;
    font-size: 1rem;
}

/* Contact FAQ Section */
.contact-faq-section {
    padding: 80px 0;
    background: white;
}

.contact-faq-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-faq-section .section-title {
    font-size: 2.5rem;
    color: var(--color-espresso);
    margin-bottom: 50px;
    text-align: center;
    font-family: 'Satisfy', cursive;
}

.faq-grid {
    display: grid;
    gap: 30px;
}

.faq-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--color-heather-clay);
}

.faq-card .faq-question {
    font-size: 1.3rem;
    color: var(--color-espresso);
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Satisfy', cursive;
}

.faq-card .faq-answer {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.contact-methods {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-content h3 {
    color: var(--color-espresso);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.method-content p {
    color: var(--color-espresso);
    margin-bottom: 5px;
}

.method-content p a {
    color: var(--color-heather-clay);
    text-decoration: none;
}

.method-content p a:hover {
    text-decoration: underline;
}

.method-note {
    font-size: 0.9rem;
    color: var(--color-olive-grove);
    font-style: italic;
}

.method-note a {
    color: var(--color-heather-clay);
    text-decoration: none;
}

.method-note a:hover {
    text-decoration: underline;
}

.quick-actions {
    background: linear-gradient(135deg, var(--color-heather-clay) 0%, var(--color-leather) 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
}

.quick-actions h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: background 0.3s ease, transform 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.btn-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.contact-faq {
    background: white;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.faq-item {
    padding: 25px;
    background: var(--color-alabaster);
    border-radius: 12px;
}

.faq-item h4 {
    color: var(--color-espresso);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: var(--color-olive-grove);
    line-height: 1.5;
}

.faq-cta {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.faq-cta p {
    font-size: 1.1rem;
    color: var(--color-espresso);
}

.faq-cta a {
    color: var(--color-heather-clay);
    text-decoration: none;
    font-weight: 600;
}

.faq-cta a:hover {
    text-decoration: underline;
}

/* Request Information Page Styles */
.request-info-page {
    padding: 40px 0 80px;
    background: var(--color-alabaster);
}

.request-info-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.request-info-subtitle {
    font-size: 1.2rem;
    color: var(--color-olive-grove);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.info-form-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--color-espresso) 0%, var(--color-heather-clay) 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.info-request-form {
    padding: 40px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section .section-title {
    color: var(--color-espresso);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background-color: var(--color-heather-clay);
    border-color: var(--color-heather-clay);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-item.newsletter {
    margin-top: 20px;
    padding: 15px;
    background: var(--color-alabaster);
    border-radius: 8px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
}

.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.sidebar-section h3 {
    color: var(--color-espresso);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.expect-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 15px;
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--color-heather-clay);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--color-espresso);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.step-content p {
    color: var(--color-olive-grove);
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--color-alabaster);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.contact-option:hover {
    background: #e8e5db;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details strong {
    color: var(--color-espresso);
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-details span {
    color: var(--color-olive-grove);
    font-size: 0.9rem;
}

.guarantee-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-espresso);
    font-size: 0.95rem;
}

.guarantee-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Mobile Responsive for Custom Pages */
@media (max-width: 768px) {
    .location-info-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .neighborhood-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .address-item,
    .hours-item {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .map-overlay {
        position: static;
        margin-top: 20px;
        max-width: none;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-review {
        grid-column: 1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .event-card.featured {
        grid-template-columns: 1fr;
    }

    .event-content {
        padding: 30px;
        flex-direction: column;
        gap: 20px;
    }

    .event-date {
        align-self: flex-start;
    }

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

    .events-grid .event-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .contact-form {
        padding: 30px 20px;
    }

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

    .contact-methods {
        padding: 30px 20px;
    }

    .action-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .action-btn {
        flex-direction: row;
        justify-content: flex-start;
        padding: 15px;
    }

    .btn-icon {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-faq {
        padding: 40px 20px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-header {
        padding: 30px 20px;
    }

    .info-request-form {
        padding: 30px 20px;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sidebar-section {
        padding: 25px 20px;
    }

    .expect-steps {
        gap: 15px;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .step-number {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .method-icon {
        align-self: center;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .form-header h2 {
        font-size: 1.7rem;
    }

    .form-header p {
        font-size: 1rem;
    }

    .form-section .section-title {
        font-size: 1.3rem;
    }
}

/* ===========================
   PLACEHOLDER CONTENT STYLES
   =========================== */

.placeholder-wrapper {
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.placeholder-card {
    background: var(--color-alabaster);
    border: 2px solid var(--color-heather-clay);
    border-radius: 12px;
    padding: 60px 40px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 24px rgba(60, 54, 48, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.placeholder-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(60, 54, 48, 0.15);
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    opacity: 0.8;
}

.placeholder-card h2 {
    color: var(--color-espresso);
    font-family: 'LTC Goudy Oldstyle Pro', serif;
    font-size: 2.25rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.placeholder-card > p {
    color: var(--color-espresso);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.content-placeholder {
    background: white;
    border: 1px solid var(--color-heather-clay);
    border-radius: 8px;
    padding: 32px;
    text-align: left;
}

.content-placeholder p {
    color: var(--color-heather-clay);
    font-weight: 600;
    margin-bottom: 16px;
    font-style: italic;
}

.content-placeholder ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-placeholder li {
    color: var(--color-espresso);
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 24px;
}

.content-placeholder li:last-child {
    border-bottom: none;
}

.content-placeholder li::before {
    content: "→";
    color: var(--color-heather-clay);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .placeholder-wrapper {
        padding: 40px 0;
        min-height: 300px;
    }

    .placeholder-card {
        padding: 40px 24px;
        margin: 0 16px;
    }

    .placeholder-card h2 {
        font-size: 1.875rem;
    }

    .placeholder-card > p {
        font-size: 1rem;
    }

    .content-placeholder {
        padding: 24px;
    }

    .placeholder-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
}

/* ===========================
   AREAS SERVED PAGE STYLES
   =========================== */

.areas-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #333c4a;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: 50vw;
    height: 100%;
    z-index: 1;    
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

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

.areas-hero .container {
    position: relative;
    z-index: 3;
    max-width: 1300px;
}

.areas-hero .hero-content {
    text-align: left;
    width: 50%;
    max-width: 600px;
    margin: 0;
    padding: 4rem 2.5rem;
}

.areas-hero .hero-title {
    color: var(--color-alabaster);
    font-family: 'LTC Goudy Oldstyle Pro', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.areas-intro {
    padding: 100px 0;
    background: var(--color-alabaster);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-espresso);
    margin: 0;
}


/* Service Showcase Sections */
.service-showcase {
    padding: 100px 0;
    background: white;
}

.service-showcase.reverse {
    background: #fafafa;
}

.showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-showcase.reverse .showcase-container {
    grid-template-columns: 1fr 1fr;
}

.showcase-content {
    max-width: 620px;
}

.service-showcase .section-title {
    color: var(--color-espresso);
    font-family: 'LTC Goudy Oldstyle Pro', serif;
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-espresso);
    margin-bottom: 32px;
    opacity: 0.9;
}

.office-types,
.coworking-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

.office-type,
.coworking-type {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.office-type:last-child,
.coworking-type:last-child {
    border-bottom: none;
}

.office-type h4,
.coworking-type h4 {
    color: var(--color-heather-clay);
    font-family: 'LTC Goudy Oldstyle Pro', serif;
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.office-type p,
.coworking-type p {
    color: var(--color-espresso);
    margin: 0;
    opacity: 0.8;
}

.membership-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

.venue-features {
    padding: 120px 0 32px 0;
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 24px;
    color: var(--color-espresso);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: "→";
    color: var(--color-heather-clay);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.showcase-image {
    position: relative;
}

.showcase-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(60, 54, 48, 0.15);
}

/* Neighborhood Highlight */
.neighborhood-highlight {
    position: relative;
    padding: 120px 0;
    color: white;
    text-align: center;
    overflow: hidden;
}

.neighborhood-highlight .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 54, 48, 0.7);
    z-index: 2;
}

.neighborhood-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.neighborhood-title {
    font-family: 'Satisfy', cursive;
    font-size: 4rem;
    margin-bottom: 40px;
    color: var(--color-alabaster);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.neighborhood-description p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.neighborhood-description p:last-child {
    margin-bottom: 0;
}


/* Areas Served Final Section */
.areas-served-final {
    padding: 120px 0;
    background: var(--color-espresso);
    color: white;
}

.areas-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.areas-served-final {
    background: #F3F0E6;
    color: #3C3630;
    padding: 120px 0;
    border-top: 1px solid rgba(60, 54, 48, 0.1);
}

.areas-served-final .section-title {
    color: #3C3630;
    font-family: 'LTC Goudy Oldstyle Pro', serif;
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.areas-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 48px;
    color: rgba(60, 54, 48, 0.8);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.area-group h4 {
    color: #3C3630;
    font-family: 'LTC Goudy Oldstyle Pro', serif;
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.area-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-group li {
    padding: 6px 0;
    color: rgba(60, 54, 48, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.area-group li:last-child {
    border-bottom: none;
}

.area-group li:hover {
    color: #3C3630;
}

.area-group a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.area-group a:hover {
    color: #A26859;
    border-bottom: 1px solid rgba(162, 104, 89, 0.3);
}

.contact-cta {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(60, 54, 48, 0.1);
    box-shadow: 0 2px 8px rgba(60, 54, 48, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.contact-cta p {
    font-size: 1rem;
    margin: 0;
    color: rgba(60, 54, 48, 0.8);
    line-height: 1.5;
}

/* Link Styles */
.intro-text a,
.section-description a,
.office-type h4 a,
.benefit-card a {
    color: var(--color-heather-clay);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.intro-text a:hover,
.section-description a:hover,
.office-type h4 a:hover,
.benefit-card a:hover {
    color: var(--color-leather);
}

.area-group a,
.contact-cta a {
    color: #A26859;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(162, 104, 89, 0.3);
}

.area-group a:hover,
.contact-cta a:hover {
    color: #3C3630;
    border-bottom-color: rgba(60, 54, 48, 0.5);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .areas-hero .hero-title {
        font-size: 2.5rem;
    }

    .areas-intro {
        padding: 60px 20px;
    }

    .intro-text {
        font-size: 1.125rem;
    }

    .service-showcase {
        padding: 60px 20px;
    }

    .showcase-container {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .service-showcase .section-title {
        font-size: 2rem;
        text-align: left;
    }

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

    .showcase-image img {
        height: 300px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .neighborhood-highlight {
        padding: 80px 20px;
    }

    .neighborhood-title {
        font-size: 3rem;
    }

    .neighborhood-description p {
        font-size: 1.125rem;
    }

    .why-choose-us {
        padding: 80px 20px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .benefit-card {
        padding: 32px 24px;
    }

    .areas-served-final {
        padding: 80px 20px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .areas-served-final {
        padding: 80px 20px;
    }

    .areas-served-final .section-title {
        font-size: 2rem;
    }

    .areas-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .contact-cta {
        padding: 24px 20px;
    }
}

/* ===========================
   About Page Styles
   =========================== */

/* Use existing service-hero styles with custom background */
/*.service-hero-about {
    background-image: url('../images/hero/servicebanner.png');
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
}
*/
/* ===========================
   Amenities Page Styles
   =========================== */

/* Hero for amenities page */
/*.service-hero-amenities {
    background-image: url('../images/services/longimage.png');
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
}*/

.service-hero-amenities:before {
    background-image: url('../images/services/longimage.png') !important;
}

/* Why Choose Intro Section */
.why-choose-intro {
    padding: 100px 0;
    background: #ffffff;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-content .section-title {
    font-size: 2.5rem;
    color: #2F3E4C;
    margin-bottom: 24px;
    font-family: 'Satisfy', cursive;
    font-weight: 400;
}

.why-choose-content .section-lead {
    font-size: 1.25rem;
    color: #656B4C;
    margin-bottom: 48px;
    line-height: 1.7;
}

.core-values-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.core-value-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.value-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #F3F0E6;
    color: #2F3E4C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.value-content h3 {
    font-size: 1.25rem;
    color: #2F3E4C;
    margin-bottom: 8px;
    font-family: 'Satisfy', cursive;
}

.value-content p {
    color: #656B4C;
    line-height: 1.6;
    margin: 0;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Premium Features Section */
.premium-features-section {
    padding: 100px 0;
    background: #F3F0E6;
}

.premium-features-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.premium-features-section .section-title {
    font-size: 2.5rem;
    color: #2F3E4C;
    margin-bottom: 16px;
    font-family: 'Satisfy', cursive;
}

.premium-features-section .section-subtitle {
    font-size: 1.125rem;
    color: #656B4C;
}

.features-highlight {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    border-radius: 16px;
    padding: 40px;
    align-items: center;
}

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

.spotlight-icon {
    width: 60px;
    height: 60px;
    background: #2F3E4C;
    color: #F3F0E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.spotlight-icon i {
    font-size: 28px;
}

.spotlight-content h3 {
    font-size: 2rem;
    color: #2F3E4C;
    margin-bottom: 16px;
    font-family: 'Satisfy', cursive;
}

.spotlight-content p {
    color: #656B4C;
    line-height: 1.7;
    margin-bottom: 24px;
}

.spotlight-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.spotlight-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2F3E4C;
}

.spotlight-features i {
    color: #A26859;
    font-size: 14px;
}

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

.secondary-feature {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.secondary-feature:hover {
    transform: translateY(-5px);
}

.secondary-feature .feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: #F3F0E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.secondary-feature .feature-icon i {
    font-size: 24px;
    color: #2F3E4C;
}

.secondary-feature h4 {
    font-size: 1.25rem;
    color: #2F3E4C;
    margin-bottom: 12px;
    font-family: 'Satisfy', cursive;
}

.secondary-feature p {
    color: #656B4C;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Membership Experience Section */
.membership-experience {
    padding: 100px 0;
    background: white;
}

.experience-header {
    text-align: center;
    margin-bottom: 60px;
}

.experience-header .section-title {
    font-size: 2.5rem;
    color: #2F3E4C;
    margin-bottom: 12px;
    font-family: 'Satisfy', cursive;
}

.experience-header .section-subtitle {
    font-size: 1.125rem;
    color: #656B4C;
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Bar */
.member-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 40px;
    background: #F3F0E6;
    border-radius: 16px;
    margin-bottom: 80px;
}

.stat-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 24px;
    color: #2F3E4C;
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    color: #2F3E4C;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 4px;
    font-family: 'Satisfy', cursive;
}

.stat-label {
    font-size: 0.875rem;
    color: #656B4C;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(47, 62, 76, 0.15);
}

/* Member Benefits Container */
.member-benefits-container {
    margin-bottom: 80px;
}

.benefits-intro {
    text-align: center;
    margin-bottom: 48px;
}

.benefits-intro h3 {
    font-size: 2rem;
    color: #2F3E4C;
    margin-bottom: 12px;
    font-family: 'Satisfy', cursive;
}

.benefits-intro p {
    font-size: 1.125rem;
    color: #656B4C;
}

.benefits-grid-organized {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.benefit-category {
    background: #F3F0E6;
    border-radius: 12px;
    padding: 32px 24px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(47, 62, 76, 0.1);
}

.category-header i {
    font-size: 24px;
    color: #A26859;
}

.category-header h4 {
    font-size: 1.125rem;
    color: #2F3E4C;
    margin: 0;
    font-weight: 600;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    color: #2F3E4C;
    padding: 10px 0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.category-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #A26859;
}

/* Membership CTA Organized */
.membership-cta-organized {
    background: linear-gradient(135deg, #2F3E4C 0%, #1a252f 100%);
    border-radius: 16px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.membership-cta-organized .cta-content {
    flex: 1;
}

.membership-cta-organized h3 {
    font-size: 2rem;
    color: #F3F0E6;
    margin-bottom: 12px;
    font-family: 'Satisfy', cursive;
}

.membership-cta-organized p {
    font-size: 1.125rem;
    color: rgba(243, 240, 230, 0.8);
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 16px;
}

.cta-actions .btn i {
    margin-right: 8px;
    font-size: 14px;
}

/* Additional Amenities Section - removed */
.additional-amenities {
    display: none;
}

.amenities-intro {
    text-align: center;
    margin-bottom: 60px;
}

.amenities-intro .section-title {
    font-size: 2.5rem;
    color: #2F3E4C;
    margin-bottom: 16px;
    font-family: 'Satisfy', cursive;
    font-weight: 400;
}

.amenities-intro .section-subtitle {
    font-size: 1.125rem;
    color: #656B4C;
    max-width: 600px;
    margin: 0 auto;
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.premium-feature {
    text-align: center;
    padding: 40px 20px;
    background: #F3F0E6;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.premium-feature:hover {
    transform: translateY(-5px);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #2F3E4C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-large i {
    font-size: 36px;
    color: #F3F0E6;
}

.premium-feature h3 {
    font-size: 1.5rem;
    color: #2F3E4C;
    margin-bottom: 16px;
    font-family: 'Satisfy', cursive;
}

.premium-feature p {
    color: #656B4C;
    line-height: 1.6;
}

/* Why Choose Amenities Section */
.why-choose-amenities {
    padding: 100px 0;
    background: #F3F0E6;
}

.why-choose-amenities .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-amenities .section-title {
    font-size: 2.5rem;
    color: #2F3E4C;
    margin-bottom: 20px;
    font-family: 'Satisfy', cursive;
}

.why-choose-amenities .section-subtitle {
    font-size: 1.125rem;
    color: #656B4C;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #F3F0E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg, .value-icon img { width:32px; height:32px; }

.value-icon i {
    font-size: 28px;
    color: #2F3E4C;
}

.value-card h3 {
    font-size: 1.25rem;
    color: #2F3E4C;
    margin-bottom: 12px;
    font-family: 'Satisfy', cursive;
}

.value-card p {
    color: #656B4C;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Membership Benefits Section */
.membership-benefits-section {
    padding: 100px 0;
    background: white;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-content .section-title {
    font-size: 2.5rem;
    color: #2F3E4C;
    margin-bottom: 20px;
    font-family: 'Satisfy', cursive;
}

.benefits-content .section-description {
    font-size: 1.125rem;
    color: #656B4C;
    margin-bottom: 40px;
    line-height: 1.6;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.benefit-item i {
    color: #A26859;
    font-size: 20px;
}

.benefit-item span {
    color: #2F3E4C;
    font-size: 1.125rem;
}

.benefits-cta {
    display: flex;
    gap: 16px;
}

.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles for Amenities Page */
@media (max-width: 1024px) {
    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-image {
        order: -1;
    }

    .feature-spotlight {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .spotlight-image {
        order: -1;
    }

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

    .member-stats-bar {
        gap: 40px;
    }

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

    .membership-cta-organized {
        flex-direction: column;
        text-align: center;
        padding: 48px;
    }
}

@media (max-width: 768px) {
    .why-choose-intro {
        padding: 60px 20px;
    }

    .premium-features-section {
        padding: 60px 20px;
    }

    .secondary-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .membership-experience {
        padding: 60px 20px;
    }

    .member-stats-bar {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-block {
        width: 100%;
        justify-content: center;
    }

    .benefits-grid-organized {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .membership-cta-organized {
        padding: 32px 24px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .core-value-item {
        gap: 16px;
    }

    .value-number {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

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

/* ===========================
   FAQ Page Styles
   =========================== */

/* FAQ Hero */
.faq-hero {
    background: #2F3E4C;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    margin-top: 80px;
}

.faq-hero .hero-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.faq-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F3F0E6;
    margin: 0 0 24px 0;
    font-family: 'Satisfy', cursive;
    font-weight: 400;
    line-height: 1.2;
}

.faq-hero .hero-description {
    font-size: 1.25rem;
    color: rgba(243, 240, 230, 0.9);
    margin: 0 0 48px 0;
    line-height: 1.6;
    max-width: 700px;
}

.quick-contact {
    padding: 48px 60px;
    background: rgba(243, 240, 230, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(243, 240, 230, 0.15);
    width: 100%;
    max-width: 750px;
}

.quick-contact p {
    color: #F3F0E6;
    margin-bottom: 24px;
    font-size: 1.125rem;
    opacity: 0.95;
}

.contact-options {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.contact-options .btn i {
    margin-right: 8px;
}

/* Override button colors for better visibility in dark hero */
.faq-hero .btn.btn-secondary {
    background: #F3F0E6;
    color: #2F3E4C;
    border: 2px solid #F3F0E6;
}

.faq-hero .btn.btn-secondary:hover {
    background: transparent;
    color: #F3F0E6;
    border-color: #F3F0E6;
}

.faq-hero .btn.btn-primary {
    background: #A26859;
    border: 2px solid #A26859;
    color: #F3F0E6;
}

.faq-hero .btn.btn-primary:hover {
    background: #9B5527;
    border-color: #9B5527;
}

/* FAQ Categories */
.faq-categories {
    background: #F3F0E6;
    padding: 40px 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.categories-wrapper {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid transparent;
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: #2F3E4C;
}

.category-btn:hover {
    border-color: #A26859;
    transform: translateY(-2px);
}

.category-btn.active {
    background: #2F3E4C;
    color: #F3F0E6;
    border-color: #2F3E4C;
}

.category-btn i {
    font-size: 16px;
}

/* FAQ Content */
.faq-content {
    padding: 80px 0;
    background: white;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #F3F0E6;
}

.category-header i {
    font-size: 28px;
    color: #A26859;
}

.category-header h2 {
    font-size: 2rem;
    color: #2F3E4C;
    margin: 0;
    font-family: 'Satisfy', cursive;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #F3F0E6;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    color: #2F3E4C;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #A26859;
}

.faq-question.active {
    background: white;
}

.faq-question i {
    font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active i {
    transform: rotate(180deg);
}

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

.faq-answer.active {
    border-top: 1px solid rgba(47, 62, 76, 0.08);
}

.faq-answer p {
    padding: 24px;
    margin: 0;
    color: #656B4C;
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* FAQ CTA */
.faq-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2F3E4C 0%, #1a252f 100%);
    text-align: center;
}

.faq-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.faq-cta h2 {
    font-size: 2.5rem;
    color: #F3F0E6;
    margin-bottom: 16px;
    font-family: 'Satisfy', cursive;
}

.faq-cta p {
    font-size: 1.25rem;
    color: rgba(243, 240, 230, 0.9);
    margin-bottom: 40px;
}

.faq-cta .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.faq-cta .btn i {
    margin-right: 8px;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-hero {
        min-height: calc(100vh - 60px);
        margin-top: 60px;
        padding: 30px 15px;
    }

    .faq-hero .hero-content {
        max-width: 100%;
    }

    .faq-hero .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .faq-hero .hero-description {
        font-size: 1.125rem;
        margin-bottom: 32px;
        max-width: 100%;
    }

    .quick-contact {
        padding: 28px 24px;
        max-width: 100%;
    }

    .contact-options {
        flex-direction: column;
    }

    .contact-options .btn {
        width: 100%;
    }

    .faq-categories {
        padding: 24px 20px;
        position: relative;
        top: 0;
    }

    .categories-wrapper {
        gap: 8px;
    }

    .category-btn {
        padding: 10px 16px;
        font-size: 0.875rem;
    }

    .category-btn span {
        display: none;
    }

    .category-btn i {
        margin: 0;
    }

    .faq-content {
        padding: 60px 20px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-cta {
        padding: 60px 20px;
    }

    .faq-cta .cta-actions {
        flex-direction: column;
    }

    .faq-cta .btn {
        width: 100%;
    }
}

/* ===========================
   Amenities Grid Component
   =========================== */

.amenities-section {
    padding: 100px 0;
    background: #2F3E4C;
    position: relative;
}

.amenities-header {
    text-align: center;
    margin-bottom: 80px;
}

.amenities-title {
    font-size: 3rem;
    color: #F3F0E6;
    margin-bottom: 20px;
    font-family: 'Satisfy', cursive;
    font-weight: 400;
}

.amenities-subtitle {
    font-size: 1.125rem;
    color: rgba(243, 240, 230, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-card {
    background: rgba(243, 240, 230, 0.05);
    border: 1px solid rgba(243, 240, 230, 0.1);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.amenity-card:hover {
    background: rgba(243, 240, 230, 0.08);
    border-color: rgba(243, 240, 230, 0.2);
    transform: translateY(-2px);
}

.amenity-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F0E6;
    border-radius: 8px;
    color: #2F3E4C;
}

.amenity-icon svg {
    width: 32px;
    height: 32px;
}

.amenity-icon i {
    font-size: 24px;
    line-height: 1;
}

.amenity-name {
    font-size: 1.125rem;
    color: #F3F0E6;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: 'Satisfy', cursive;
}

.amenity-description {
    font-size: 0.875rem;
    color: rgba(243, 240, 230, 0.6);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Amenities Grid */
@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .amenities-section {
        padding: 60px 20px;
    }

    .amenities-header {
        margin-bottom: 48px;
    }

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

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

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .amenity-card {
        padding: 24px 16px;
    }

    .amenity-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }

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

    .amenity-icon i {
        font-size: 20px;
    }

    .amenity-name {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .amenity-description {
        font-size: 0.8125rem;
    }
}

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

/* ==========================================================================
   CRITICAL FIXES - Homepage Service Cards & Images
   ========================================================================== */

/* Force service cards to display correctly */
.services-section .service-card {
    background: #ffffff !important;
}

.services-section .service-card * {
    text-align: left !important;
}

.services-section .service-icon {
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(47, 62, 76, 0.05) !important;
    border: 1.5px solid rgba(47, 62, 76, 0.15) !important;
    border-radius: 12px !important;
}

.services-section .service-icon svg {
    width: 24px !important;
    height: 24px !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.services-section .service-icon svg * {
    stroke: #2F3E4C !important;
    fill: #2F3E4C !important;
}

.services-section .service-content {
    background: transparent !important;
}

.services-section .service-title {
    color: #2F3E4C !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.services-section .service-description {
    color: #6b7280 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.services-section .price-label {
    color: #9ca3af !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.services-section .price-value {
    color: #2F3E4C !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.services-section .service-link {
    color: #2F3E4C !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Fix image sizes for showcase sections */
.workspace-showcase .image-frame {
    width: 100% !important;
    height: 500px !important;
    min-height: 500px !important;
}

.workspace-showcase .workspace-image {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
}

/* Let digital workspace image display naturally */
.digital-workspace .image-frame {
    width: 100% !important;
    height: auto !important;
}

.digital-workspace .workspace-image {
    width: 100% !important;
    height: auto !important;
}

/* ==========================================================================
   Global Title Font Override - Ensure consistency across all pages
   ========================================================================== */
.section-title,
h2.section-title,
h3.section-title,
.service-description .section-title,
.office-gallery .section-title,
.explore-services .section-title,
.why-choose-service .section-title,
.premium-features-section .section-title,
.membership-experience .section-title,
.member-experience .section-title,
.offices-comparison .section-title,
.included-amenities .section-title,
.office-types-section .section-title,
.gallery-section-title,
.cta-heading,
.showcase-details h3,
.why-choose-content .section-title,
.experience-header .section-title,
.amenities-grid-section .section-title {
    font-family: 'Satisfy', cursive !important;
    font-weight: 400 !important;
    font-size: clamp(36px, 4vw, 48px) !important;
    color: #2F3E4C !important;
    line-height: 1.3 !important;
}

/* Consistent subtitle styling */
.section-subtitle,
.service-description .section-subtitle,
.explore-services .section-subtitle,
.why-choose-service .section-subtitle,
.premium-features-section .section-subtitle,
.experience-header .section-subtitle,
.amenities-grid-section .section-subtitle {
    font-size: 1.125rem !important;
    color: #656B4C !important;
    line-height: 1.7 !important;
    font-family: var(--font-primary) !important;
}

/* Button text wrapping fix */
.btn-large,
.btn-primary,
.btn-secondary,
.cta-actions a {
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

/* Additional section header consistency */
.section-header .section-title,
.amenities-intro .section-title,
.why-choose-amenities .section-title,
.benefits-intro h3 {
    font-family: 'Satisfy', cursive !important;
    font-size: clamp(36px, 4vw, 48px) !important;
    color: #2F3E4C !important;
    font-weight: 400 !important;
}

.section-header .section-subtitle,
.amenities-intro .section-subtitle,
.why-choose-amenities .section-subtitle,
.benefits-intro p {
    font-size: 1.125rem !important;
    color: #656B4C !important;
    font-family: var(--font-primary) !important;
}

/* Amenity card title sizing - reduce font size */
.amenity-item h3.amenity-title,
.amenity-item h4,
.amenities-grid .amenity-item h3 {
    font-size: 1rem !important;
    font-family: var(--font-primary) !important;
    font-weight: 600 !important;
    color: #3C3630 !important;
    margin-bottom: 8px !important;
}

.amenity-item .amenity-description,
.amenity-item p {
    font-size: 0.875rem !important;
    color: #656B4C !important;
    line-height: 1.5 !important;
}

/* Amenities Page Specific Styling */
.amenities-grid-section {
    padding: 100px 0 !important;
    background: white !important;
    margin-top: 80px !important; /* Add margin at top */
}

.amenities-grid-section .section-header {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto 60px !important;
}

.amenities-grid-section .section-title {
    text-align: center !important;
}

.amenities-grid-section .section-subtitle {
    text-align: center !important;
}

.membership-experience .experience-header {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto 60px !important;
}

.membership-experience .experience-header .section-title {
    text-align: center !important;
}

.membership-experience .experience-header .section-subtitle {
    text-align: center !important;
}

.membership-experience .member-stats-grid {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 40px !important;
    flex-wrap: wrap !important;
    text-align: center !important;
    margin-bottom: 60px !important;
}

.membership-experience .stat-item {
    text-align: center !important;
}

.membership-experience .member-benefits-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.membership-experience .benefits-intro {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto 60px !important;
}

.membership-experience .benefits-intro h3 {
    text-align: center !important;
}

.membership-experience .benefits-intro p {
    text-align: center !important;
}

.membership-cta-box {
    background: linear-gradient(135deg, #A26859 0%, #9B5527 100%);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 60px auto 0;
    color: white;
}

.membership-cta-box h3 {
    font-family: 'Satisfy', cursive;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 16px;
}

.membership-cta-box p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

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

.membership-cta-box .btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.membership-cta-box .btn-primary {
    background: white;
    color: #9B5527;
}

.membership-cta-box .btn-primary:hover {
    background: #F3F0E6;
    transform: translateY(-2px);
}

.membership-cta-box .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.membership-cta-box .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ==========================================================================
   Mobile Responsive Fixes
   ========================================================================== */

/* Hide mobile bottom panel on desktop */
.mobile-bottom-panel {
    display: none;
}

/* ==========================================================================
   Responsive Behavior
   ========================================================================== */

@media (max-width: 768px) {
    /* Body padding for bottom panel */
    body {
        padding-bottom: 140px !important;
    }

    /* COMPLETE MOBILE HEADER REBUILD */
    .site-header {
        padding: 15px 0;
        background: #ffffff;
        position: relative;
        width: 100%;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .main-nav {
        padding: 0;
    }

    .main-nav .container {
        width: 100%;
        padding: 0 15px;
    }

    .nav-wrapper {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: auto !important;
        flex-direction: row !important;
        width: 100%;
        padding: 0;
    }

    /* Logo on the left */
    .nav-logo {
        flex: 0 0 auto;
        margin: 0;
    }

    .logo-link {
        display: block;
    }

    .logo-image {
        height: 45px !important;
        width: auto;
        display: block;
    }

    .logo-text {
        font-size: 1.8rem;
        color: #3C3630;
    }

    /* Hide desktop navigation */
    .nav-center,
    .desktop-cta,
    .desktop-nav,
    .nav-menu {
        display: none !important;
    }

    /* Mobile controls on the right */
    .nav-cta {
        flex: 0 0 auto;
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
    }

    .mobile-cta {
        display: flex !important;
        align-items: center;
        gap: 10px;
    }

    /* Phone number */
    .mobile-phone {
        color: #A26859;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        display: none; /* Hide on very small screens */
    }

    /* Hamburger menu button - FORCE VISIBLE */
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #A26859 !important;
        border: none !important;
        border-radius: 6px !important;
        padding: 0 !important;
        width: 44px !important;
        height: 44px !important;
        cursor: pointer !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 3px !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important;
        position: relative !important;
        z-index: 1000 !important;
    }

    .mobile-menu-toggle .hamburger-line {
        display: block !important;
        width: 20px !important;
        height: 2.5px !important;
        background: #ffffff !important;
        border-radius: 1px !important;
        margin: 0 !important;
        transition: all 0.3s ease !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Show phone on slightly larger mobile */
    @media (min-width: 400px) {
        .mobile-phone {
            display: block;
        }
    }

    /* Mobile bottom panel - FORCE VISIBLE ON MOBILE */
    .mobile-bottom-panel {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff !important;
        border-top: 2px solid #f0f0f0 !important;
        padding: 12px 15px 15px 15px !important;
        z-index: 9999 !important;
        box-shadow: 0 -4px 12px rgba(0,0,0,0.1) !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .mobile-cta-row {
        display: flex !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .mobile-cta-btn {
        flex: 1 !important;
        padding: 12px 8px !important;
        border-radius: 8px !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        font-size: 0.85rem !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
        color: white !important;
        border: none !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
    }

    .mobile-cta-call {
        background: #A26859 !important;
    }

    .mobile-cta-call:hover,
    .mobile-cta-call:active {
        background: #8b5643 !important;
    }

    .mobile-cta-text {
        background: #656B4C !important;
    }

    .mobile-cta-text:hover,
    .mobile-cta-text:active {
        background: #525840 !important;
    }

    .mobile-cta-consultation {
        background: #2F3E4C !important;
        width: 100% !important;
    }

    .mobile-cta-consultation:hover,
    .mobile-cta-consultation:active {
        background: #1f2e3c !important;
    }
}

@media (max-width: 480px) {
    .mobile-phone {
        font-size: 12px;
    }

    .mobile-nav-content {
        width: 280px;
    }

    .mobile-phone {
        display: none;
    }

    .mobile-menu-toggle {
        margin-left: 0;
    }
}

/* ==========================================================================
   CRITICAL MOBILE OVERRIDES - HIGHEST PRIORITY
   ========================================================================== */
@media screen and (max-width: 768px) {
    /* COMPLETE HEADER OVERRIDE FOR MOBILE */
    .site-header .nav-wrapper {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 15px !important;
        height: 60px !important;
    }

    .service-hero { margin-top:0 }

    /* Logo on left */
    .site-header .nav-logo {
        flex: 0 0 auto !important;
        order: 1 !important;
    }

    /* Mobile controls on right */
    .site-header .nav-cta {
        flex: 0 0 auto !important;
        order: 2 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* FORCE mobile CTA container visible */
    .site-header .mobile-cta,
    .nav-cta .mobile-cta,
    .mobile-cta {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
        gap: 10px !important;
    }

    /* FORCE hamburger menu visible with absolute positioning if needed */
    button.mobile-menu-toggle,
    .mobile-menu-toggle,
    #mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10000 !important;
        width: 44px !important;
        height: 44px !important;
        background-color: #A26859 !important;
        border: none !important;
        border-radius: 6px !important;
        padding: 0 !important;
        margin: 0 !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 3px !important;
        cursor: pointer !important;
    }

    /* Hamburger lines */
    .mobile-menu-toggle span,
    .mobile-menu-toggle .hamburger-line,
    #mobile-menu-toggle span,
    #mobile-menu-toggle .hamburger-line {
        display: block !important;
        width: 20px !important;
        height: 2.5px !important;
        background-color: #ffffff !important;
        margin: 0 !important;
        border-radius: 1px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Hide desktop nav */
    .nav-center,
    .desktop-cta,
    .desktop-nav {
        display: none !important;
    }

    /* FORCE bottom panel visible */
    .mobile-bottom-panel {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* ==========================================================================
   8. Responsive Design
   ========================================================================== */

/* Extra large screens (1920px and up) */
@media (min-width: 1920px) {
    .hero-section {
        padding: 240px; /* Even larger margins for big screens */
    }

    .hero-container-wrapper {
        max-width: calc(100vw - 480px);
    }
}

/* Ultra wide screens (2560px and up) */
@media (min-width: 2560px) {
    .hero-section {
        padding: 320px; /* Maximum margins for ultra-wide */
    }

    .hero-container-wrapper {
        max-width: calc(100vw - 640px);
        max-height: 70vh; /* Limit height on ultra-wide */
    }

    .nav-wrapper {
        max-width: calc(100vw - 640px); /* Same as video container */
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    :root {
        --fs-5xl: 2.5rem;
        --fs-4xl: 2rem;
        --fs-3xl: 1.75rem;
        --fs-2xl: 1.5rem;
    }

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

    .nav-menu {
        gap: var(--space-lg);
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    :root {
        --fs-5xl: 2rem;
        --fs-4xl: 1.75rem;
        --fs-3xl: 1.5rem;
        --fs-2xl: 1.25rem;
        --container-padding: var(--space-md);
    }

    /* Hide desktop nav, show mobile toggle */
    .desktop-nav,
    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Footer responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

    .legal-links {
        margin-top: var(--space-md);
        flex-wrap: wrap;
        justify-content: center;
    }

    /* CTA responsive */
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Newsletter responsive */
    .newsletter-form {
        flex-direction: column;
    }

    .btn-newsletter {
        width: 100%;
    }
    .hero-banner .banner-content-block { flex-direction:column-reverse; }
    .hero-banner .banner-content-block > div { width:100% !important; max-width:100% !important; }
    .hero-banner .banner-content-block .video-block { height:auto !important; }
    .hero-banner .banner-content-block .video-block video { min-height:320px !important; height:auto !important; max-height:340px; }
    .hero-banner .banner-content-block .banner-content { padding:4rem 1.5rem 4rem 1.5rem !important; }
    .btn-large, .btn-primary, .btn-secondary, .cta-actions a { white-space: normal !important; font-size: 18px; padding: 8px 28px; }
    .service-hero { padding: 4rem 1.5rem; padding-top: calc(4rem + 320px) !important; }
    .service-hero:before { width:100%; height:320px; min-height:320px; }
    .service-hero .hero-content { padding: 0; width:100% !important; max-width:100% !important; }
    .offices-hero { padding:4rem 1.5rem !important; background-size: 100vw 320px !important; padding-top: calc(4rem + 320px) !important; margin-top:0 !important; }
    .offices-hero .hero-content { width: 100%; max-width:100% !important; padding:0 !important; }
    .areas-hero { padding-top:0 !important; }
    .areas-hero .hero-content { width:100%; max-width:100%; padding: 4rem 1.5rem; padding-top: calc(4rem + 320px) !important; }
    .hero-background { top: 0; right: 0; width: 100%; left: 0; bottom: 0; height: 320px; }
}