        /* ============================================
           CSS VARIABLES - Easy Color Customization
           ============================================ */
        :root {
            /* Primary Colors - Warm & Trustworthy Palette */
            --sage-dark: #5B7B6B;
            --sage: #7D9B8C;
            --sage-light: #A8C4B5;
            --terracotta: #C4836A;
            --terracotta-dark: #A85E3F;  /* WCAG-AA-safe terracotta for buttons & dark-on-light text */
            --terracotta-light: #D4A391;
            --cream: #FAF7F2;
            --cream-dark: #F0EBE3;

            /* Neutral Colors */
            --text-dark: #2C3E36;
            --text-medium: #5A6B62;
            --text-light: #8A9B92;
            --white: #FFFFFF;

            /* Fonts */
            --font-heading: 'Playfair Display', Georgia, serif;
            --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

            /* Spacing */
            --section-padding: 80px;
            --container-max: 1200px;

            /* Transitions */
            --transition-fast: 0.2s ease;
            --transition-medium: 0.3s ease;
            --transition-slow: 0.5s ease;
        }

        /* ============================================
           RESET & BASE STYLES
           ============================================ */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

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

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background-color: var(--cream);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 600;
            line-height: 1.2;
            color: var(--text-dark);
        }

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

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

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

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============================================
           UTILITY CLASSES
           ============================================ */
        .section-padding {
            padding: var(--section-padding) 0;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.75rem);
            text-align: center;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-medium);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all var(--transition-medium);
            text-decoration: none;
        }

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

        .btn-primary:hover {
            background: var(--sage-dark);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(91, 123, 107, 0.3);
        }

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

        .btn-secondary:hover {
            background: var(--white);
            color: var(--sage-dark);
        }

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

        .btn-outline:hover {
            background: var(--sage-dark);
            color: var(--white);
        }

        /* Placeholder Image Styles */
        .placeholder-image {
            background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 50%, var(--sage-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 0.875rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .placeholder-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .placeholder-image span {
            position: relative;
            z-index: 1;
            padding: 20px;
            background: rgba(0,0,0,0.2);
            border-radius: 8px;
        }

        /* ============================================
           HEADER & NAVIGATION
           ============================================ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: all var(--transition-medium);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 20px;
            max-width: var(--container-max);
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--sage-dark);
        }

        .logo span {
            color: var(--terracotta);
        }

        /* REPLACE: Logo Image
           To add your logo:
           1. Add your logo image to an 'images' folder (recommended: logo.png or logo.svg)
           2. Uncomment the img tag in the HTML and update the src path
           3. Recommended size: 150-200px wide, transparent background (PNG or SVG)
           4. You can hide the text logo by adding display:none to .logo-text */
        .logo-image {
            height: 50px;
            width: auto;
        }

        .logo-placeholder {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.25rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .logo-text .logo-main {
            font-size: 1.1rem;
        }

        .logo-text .logo-sub {
            font-size: 0.6rem;
            color: var(--terracotta-dark);
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* Logo accent ("Senior Living" word) and sub-text — WCAG-AA-safe on both light header and dark footer. */
        .brand-accent {
            color: var(--terracotta-dark);
        }

        /* In the footer the accent goes solid white for unambiguous WCAG contrast on the dark background.
           Sub-text stays terracotta-light (large enough to clear the 3:1 large-text threshold). */
        .footer .brand-accent {
            color: var(--white);
        }

        .footer .logo-text .logo-sub {
            color: var(--terracotta-light);
        }

        @media (max-width: 767px) {
            .logo-text .logo-sub {
                display: none;
            }
        }

        .nav-desktop {
            display: none;
        }

        .nav-desktop a {
            margin-left: 30px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .nav-desktop a:hover {
            color: var(--terracotta);
        }

        .header-phone {
            display: none;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--terracotta);
        }

        .header-phone svg {
            width: 20px;
            height: 20px;
        }

        .mobile-menu-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-menu-btn span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--sage-dark);
            margin: 5px 0;
            border-radius: 3px;
            transition: all var(--transition-fast);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--white);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            transform: translateX(100%);
            transition: transform var(--transition-medium);
        }

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

        .mobile-menu a {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        /* Restore .btn-primary white text — overrides the .mobile-menu a rule above. */
        .mobile-menu a.btn-primary {
            color: var(--white);
        }

        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        @media (min-width: 768px) {
            .nav-desktop {
                display: flex;
            }
            .header-phone {
                display: flex;
            }
            .mobile-menu-btn {
                display: none;
            }
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            overflow: hidden;
        }

        /* REPLACE: Hero background image - Replace the gradient with your actual hero image
           Example: background-image: url('images/hero-image.jpg'); */
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 50%, var(--terracotta) 100%);
            z-index: -2;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(44, 62, 54, 0.85) 0%, rgba(44, 62, 54, 0.4) 100%);
            z-index: -1;
        }

        .hero-content {
            color: var(--white);
            max-width: 650px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 20px;
            backdrop-filter: blur(5px);
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.95;
            line-height: 1.7;
        }

        .hero-ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .hero-phone {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255,255,255,0.1);
            padding: 15px 25px;
            border-radius: 10px;
            backdrop-filter: blur(5px);
        }

        .hero-phone-icon {
            width: 50px;
            height: 50px;
            background: var(--terracotta);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-phone-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--white);
        }

        .hero-phone-text span {
            display: block;
            font-size: 0.875rem;
            opacity: 0.8;
        }

        .hero-phone-text a {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
        }

        /* Hero Layout with Profile */
        .hero-layout {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
            width: 100%;
        }

        @media (min-width: 992px) {
            .hero-layout {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }

        .hero-profile-card {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.2);
            max-width: 320px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .hero-profile-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .hero-profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-profile-name {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .hero-profile-title {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 15px;
            color: var(--terracotta-light);
            font-weight: 500;
        }

        .hero-profile-bio {
            font-size: 0.9rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        @media (max-width: 991px) {
            .hero-profile-card {
                margin-top: 20px;
            }
        }

        /* ============================================
           TRUST BAR
           ============================================ */
        .trust-bar {
            background: var(--white);
            padding: 40px 0;
            border-bottom: 1px solid var(--cream-dark);
        }

        .trust-items {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        @media (min-width: 768px) {
            .trust-items {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .trust-item {
            text-align: center;
            padding: 20px;
        }

        .trust-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            background: var(--cream);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trust-icon svg {
            width: 30px;
            height: 30px;
            stroke: var(--sage-dark);
            fill: none;
            stroke-width: 2;
        }

        .trust-item h4 {
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .trust-item p {
            font-size: 0.875rem;
            color: var(--text-medium);
        }

        /* ============================================
           PHOTO GALLERY
           ============================================ */
        .gallery {
            background: var(--cream);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        @media (min-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 4/3;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: transform var(--transition-medium);
        }

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

        .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
            aspect-ratio: 1;
        }

        .gallery-item img,
        .gallery-item .placeholder-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: var(--white);
            opacity: 0;
            transition: opacity var(--transition-medium);
        }

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

        /* Lightbox */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.95);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 85vh;
            border-radius: 8px;
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            background: none;
            border: none;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            border: none;
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            transition: background var(--transition-fast);
        }

        .lightbox-nav:hover {
            background: rgba(255,255,255,0.3);
        }

        .lightbox-prev {
            left: -70px;
        }

        .lightbox-next {
            right: -70px;
        }

        /* ============================================
           VIDEO SECTION
           ============================================ */
        .video-section {
            background: var(--sage-dark);
            color: var(--white);
        }

        .video-section .section-title {
            color: var(--white);
        }

        .video-section .section-subtitle {
            color: var(--white);
        }

        .video-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Vimeo facade — clickable thumbnail that swaps in the real iframe on first click. */
        .video-facade {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            padding: 0;
            margin: 0;
            background: #000;
            cursor: pointer;
            overflow: hidden;
        }

        .video-facade img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .video-facade-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.92);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform var(--transition-medium), background var(--transition-fast);
        }

        .video-facade:hover .video-facade-play,
        .video-facade:focus-visible .video-facade-play {
            transform: translate(-50%, -50%) scale(1.1);
            background: var(--white);
        }

        .video-facade-play svg {
            width: 30px;
            height: 30px;
            fill: var(--sage-dark);
            margin-left: 5px;
        }

        /* ============================================
           TEAM SECTION
           ============================================ */
        .team {
            background: var(--white);
        }

        .team-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }

        @media (min-width: 768px) {
            .team-content {
                flex-direction: row;
                align-items: flex-start;
                gap: 60px;
            }
        }

        .team-image {
            flex-shrink: 0;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(91, 123, 107, 0.2);
            border: 5px solid var(--sage-light);
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-info {
            flex: 1;
            text-align: center;
        }

        @media (min-width: 768px) {
            .team-info {
                text-align: left;
            }
        }

        .team-name {
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .team-title {
            font-size: 1.1rem;
            color: var(--terracotta);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .team-bio {
            color: var(--text-medium);
            line-height: 1.8;
            font-size: 1.05rem;
            margin-bottom: 1rem;
        }

        .team-bio:last-child {
            margin-bottom: 0;
        }

        /* ============================================
           SERVICES SECTION
           ============================================ */
        .services {
            background: var(--white);
        }

        .services-grid {
            display: grid;
            gap: 30px;
        }

        @media (min-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .service-card {
            background: var(--cream);
            padding: 40px 30px;
            border-radius: 16px;
            text-align: center;
            transition: all var(--transition-medium);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(91, 123, 107, 0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: var(--sage-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-icon svg {
            width: 40px;
            height: 40px;
            stroke: var(--sage-dark);
            fill: none;
            stroke-width: 1.5;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .service-card p {
            color: var(--text-medium);
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .service-card .btn {
            padding: 12px 24px;
            font-size: 0.9rem;
        }

        /* ============================================
           TOUR BOOKING FORM
           ============================================ */
        .booking-section {
            background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
            position: relative;
            overflow: hidden;
        }

        .booking-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .booking-container {
            display: grid;
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        @media (min-width: 992px) {
            .booking-container {
                grid-template-columns: 1fr 1fr;
                align-items: center;
            }
        }

        .booking-info {
            color: var(--white);
        }

        .booking-info h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            color: var(--white);
            margin-bottom: 20px;
        }

        .booking-info p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .booking-benefits {
            list-style: none;
        }

        .booking-benefits li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .booking-benefits li svg {
            width: 24px;
            height: 24px;
            fill: var(--terracotta-light);
            flex-shrink: 0;
        }

        .booking-form-card {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .booking-form-card h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            text-align: center;
        }

        .form-row {
            display: grid;
            gap: 20px;
            margin-bottom: 20px;
        }

        @media (min-width: 576px) {
            .form-row.two-col {
                grid-template-columns: 1fr 1fr;
            }
        }

        .form-group {
            position: relative;
        }

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .form-group label .required {
            color: var(--terracotta);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            font-family: var(--font-body);
            font-size: 1rem;
            border: 2px solid var(--cream-dark);
            border-radius: 10px;
            background: var(--cream);
            transition: all var(--transition-fast);
        }

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

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

        .form-submit-btn {
            width: 100%;
            padding: 18px;
            font-size: 1.1rem;
            margin-top: 10px;
        }

        /* Form Success State */
        .form-success {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }

        .form-success.active {
            display: block;
        }

        .form-success svg {
            width: 80px;
            height: 80px;
            fill: var(--sage);
            margin-bottom: 20px;
        }

        .form-success h3 {
            color: var(--sage-dark);
            margin-bottom: 10px;
        }

        .form-success p {
            color: var(--text-medium);
        }

        /* ============================================
           TESTIMONIALS
           ============================================ */
        .testimonials {
            background: var(--cream);
        }

        .testimonials-grid {
            display: grid;
            gap: 30px;
        }

        @media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .testimonial-card {
            background: var(--white);
            padding: 35px;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
        }

        .testimonial-stars svg {
            width: 20px;
            height: 20px;
            fill: #F4B942;
        }

        .testimonial-card blockquote {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-medium);
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* REPLACE: Testimonial photos - Replace with real family/resident photos */
        .testimonial-photo {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            overflow: hidden;
        }

        .testimonial-photo .placeholder-image {
            width: 100%;
            height: 100%;
        }

        .testimonial-author-info h3 {
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 3px;
        }

        .testimonial-author-info span {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        /* ============================================
           FAQ SECTION
           ============================================ */
        .faq {
            background: var(--white);
        }

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

        .faq-item {
            border-bottom: 1px solid var(--cream-dark);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 25px 0;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: var(--font-body);
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-dark);
            transition: color var(--transition-fast);
        }

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

        .faq-question svg {
            width: 24px;
            height: 24px;
            stroke: var(--sage);
            transition: transform var(--transition-fast);
            flex-shrink: 0;
            margin-left: 20px;
        }

        .faq-item.active .faq-question svg {
            transform: rotate(180deg);
        }

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

        .faq-answer-inner {
            padding-bottom: 25px;
            color: var(--text-medium);
            line-height: 1.7;
        }

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

        /* ============================================
           CONTACT SECTION
           ============================================ */
        .contact {
            background: var(--cream);
        }

        .contact-grid {
            display: grid;
            gap: 50px;
        }

        @media (min-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .contact-info h3 {
            font-size: 1.75rem;
            margin-bottom: 30px;
        }

        .contact-details {
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }

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

        .contact-item-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--sage-dark);
            fill: none;
            stroke-width: 2;
        }

        .contact-item-content h4 {
            font-family: var(--font-body);
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-medium);
            margin-bottom: 5px;
        }

        .contact-item-content p,
        .contact-item-content a {
            font-size: 1.1rem;
            color: var(--text-dark);
            font-weight: 500;
        }

        .office-hours {
            background: var(--white);
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .office-hours h4 {
            font-size: 1rem;
            margin-bottom: 15px;
        }

        .office-hours p {
            color: var(--text-medium);
            margin-bottom: 8px;
        }

        /* REPLACE: Map placeholder - Replace with Google Maps embed or static map image */
        .map-placeholder {
            height: 250px;
            border-radius: 12px;
            overflow: hidden;
        }

        .quick-contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .quick-contact-form h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: var(--text-dark);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            gap: 40px;
            margin-bottom: 40px;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }
        }

        .footer-brand .logo {
            color: var(--white);
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.7);
            line-height: 1.7;
            margin-bottom: 25px;
        }

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

        /* REPLACE: Social media links - Update href attributes with your actual social media URLs */
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-fast);
        }

        .footer-social a:hover {
            background: var(--terracotta);
        }

        .footer-social svg {
            width: 20px;
            height: 20px;
            fill: var(--white);
        }

        .footer-column h4 {
            color: var(--white);
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

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

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

        .footer-links a {
            color: rgba(255,255,255,0.7);
            transition: color var(--transition-fast);
        }

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

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 15px;
            font-size: 0.875rem;
            color: rgba(255,255,255,0.6);
        }

        .footer-bottom a {
            color: rgba(255,255,255,0.6);
        }

        .footer-bottom a:hover {
            color: var(--white);
        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger animation delays */
        .fade-in:nth-child(2) { transition-delay: 0.1s; }
        .fade-in:nth-child(3) { transition-delay: 0.2s; }
        .fade-in:nth-child(4) { transition-delay: 0.3s; }
        .fade-in:nth-child(5) { transition-delay: 0.4s; }
        .fade-in:nth-child(6) { transition-delay: 0.5s; }

        /* ============================================
           ACCESSIBILITY
           ============================================ */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        :focus-visible {
            outline: 3px solid var(--terracotta);
            outline-offset: 3px;
        }

        /* Reduce motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            html {
                scroll-behavior: auto;
            }
        }
