/* ==========================================================================
   NETHU PRIYAA HOME — DESIGN SYSTEM & STYLESHEET
   Tech Stack: Pure HTML5 + CSS3 + Vanilla JS
   Aesthetic: Premium Editorial Senior Living / Healthcare Hospitality
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
    /* Ultra-Luxury Color Palette */
    --color-primary: #0e2e1e;          /* Rich Royal Emerald Forest */
    --color-primary-light: #1c4530;    /* Deep Minted Sage */
    --color-primary-dark: #071b11;     /* Midnight Emerald */
    
    --color-secondary: #b88a44;        /* Rich Champagne Gold */
    --color-secondary-light: #d8b26e;  /* Soft Warm Gold Highlight */
    --color-secondary-bg: #fdf8ef;     /* Champagne Tinted Off-White */

    --color-bg-main: #fcfaf7;          /* Luxury Warm Ivory */
    --color-surface: #ffffff;          /* Pure White Surface */
    --color-surface-alt: #f4efe6;      /* Warm Muted Cashmere Beige */
    --color-surface-card: #ffffff;     /* Elevated Card Surface */

    --color-text-main: #1f2421;        /* Deep Charcoal Text */
    --color-text-muted: #535955;       /* Soft Slate Muted Text */
    --color-text-light: #7a827c;       /* Subtle Hint Text */
    --color-text-inverse: #ffffff;     /* Inverse Light Text */

    --color-border: #ebdcc9;          /* Warm Gold-infused Subtle Border */
    --color-border-hover: #c49a53;    /* Gold border on hover */
    --color-shadow: rgba(14, 46, 30, 0.07);
    --color-shadow-hover: rgba(14, 46, 30, 0.15);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Spacing System */
    --container-width: 1280px;
    --container-narrow: 960px;
    --section-spacing-desktop: clamp(44px, 4.5vw, 60px);
    --section-spacing-mobile: clamp(28px, 3.5vw, 38px);

    /* Transitions & Elevation */
    --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 4px 16px var(--color-shadow);
    --shadow-md: 0 16px 36px var(--color-shadow);
    --shadow-lg: 0 28px 64px var(--color-shadow-hover);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1.0625rem; /* 17px base */
    line-height: 1.65;
    color: var(--color-text-main);
    background-color: var(--color-bg-main);
    overflow-x: clip;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Accessibility Skip Link */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--color-primary);
    color: var(--color-text-inverse);
    padding: 12px 24px;
    z-index: 9999;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: top var(--transition-fast);
}

.skip-to-content:focus {
    top: 20px;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-primary-dark);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 4.5vw, 3.8rem); margin-bottom: 1.2rem; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); margin-bottom: 0.75rem; }
h4 { font-size: clamp(1.15rem, 1.5vw, 1.35rem); margin-bottom: 0.5rem; }

p {
    margin-bottom: 1.25rem;
    color: var(--color-text-muted);
}

p.lead {
    font-size: clamp(1.1rem, 1.35vw, 1.3rem);
    line-height: 1.7;
    color: var(--color-text-main);
    font-weight: 400;
}

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

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

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

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Focus States */
:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(16px, 4vw, 32px);
    padding-right: clamp(16px, 4vw, 32px);
}

.container-narrow {
    max-width: var(--container-narrow);
}

/* Section Wrapper */
.section {
    padding-top: var(--section-spacing-desktop);
    padding-bottom: var(--section-spacing-desktop);
    position: relative;
}

.section-bg-alt {
    background-color: var(--color-surface-alt);
}

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

.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark h4 {
    color: var(--color-surface);
}

.section-bg-dark p {
    color: #c4d1c9;
}

/* Metallic Gold Gradient Utility */
.text-gold-gradient {
    background: linear-gradient(135deg, #c59b27 0%, #f7e6b0 45%, #b88a1e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Header */
.section-header {
    margin-bottom: clamp(24px, 3vw, 36px);
}

.section-header.text-center {
    text-align: center;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 20px;
    background: linear-gradient(135deg, rgba(253, 248, 239, 0.9) 0%, rgba(244, 239, 230, 0.9) 100%);
    border: 1px solid rgba(184, 138, 68, 0.35);
    border-radius: var(--radius-full);
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 14px rgba(184, 138, 68, 0.08);
}

.badge-tag-dark {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(216, 178, 110, 0.35);
    color: var(--color-secondary-light);
}

/* --------------------------------------------------------------------------
   3. BUTTONS & UI CONTROLS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    color: var(--color-text-inverse);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 56, 43, 0.25);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-text-inverse);
}

.btn-secondary:hover {
    background-color: #826038;
    color: var(--color-text-inverse);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(150, 114, 68, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-text-inverse);
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9375rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.125rem;
}

/* --------------------------------------------------------------------------
   4. NAVIGATION & HEADER
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   4. NAVIGATION & HEADER
   -------------------------------------------------------------------------- */
.top-bar {
    background-color: #465d49;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-social {
    display: flex;
    gap: 16px;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.825rem;
    transition: color var(--transition-fast);
}

.top-bar-social a:hover {
    color: #ffffff;
}

.top-bar-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-info a {
    color: #ffffff;
}

/* Main Site Header */
.site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 99999;
    background-color: #ffffff;
    border-bottom: 1.5px solid #ebdcc9;
    box-shadow: 0 4px 20px rgba(14, 46, 30, 0.08);
    transition: all var(--transition-fast);
}

.site-header.scrolled {
    background-color: #ffffff;
    box-shadow: 0 6px 24px rgba(14, 46, 30, 0.12);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    gap: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo img {
    height: 72px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 32px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2b2b2b;
    padding: 6px 0;
    position: relative;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

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

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

/* Reference Black CTA Button */
/* Reference Dark Green CTA Button */
.btn-schedule-visit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #1b382b;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    white-space: nowrap;
    border: 1px solid #1b382b;
}

.btn-schedule-visit:hover {
    background-color: #132a1f;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(27, 56, 43, 0.3);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--color-primary-dark);
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
}

.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(10, 24, 16, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* --------------------------------------------------------------------------
   5. HERO SECTION — FULL-WIDTH BACKGROUND MOCKUP
   -------------------------------------------------------------------------- */
.hero-editorial {
    position: relative;
    padding-top: clamp(80px, 9vw, 120px);
    padding-bottom: clamp(100px, 11vw, 150px);
    background: linear-gradient(90deg, rgba(10, 24, 16, 0.88) 0%, rgba(10, 24, 16, 0.65) 50%, rgba(10, 24, 16, 0.15) 100%), url('../images/gallery/banner_image.png') center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.hero-content {
    max-width: 640px;
}

.hero-tag-gold {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d8b26e;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-title span.highlight {
    color: #d8b26e;
    font-style: italic;
    font-weight: 400;
}

.hero-heart-flourish {
    display: block;
    width: 40px;
    height: 2px;
    background: #d8b26e;
    margin-top: 6px;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.hero-description {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-hero-primary {
    background-color: #1b382b;
    color: #ffffff;
    border: 1px solid #1b382b;
}

.btn-hero-primary:hover {
    background-color: #132a1f;
    color: #ffffff;
}

.btn-hero-glass {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-hero-glass:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.hero-location-card {
    position: absolute;
    bottom: 40px;
    right: clamp(16px, 4vw, 32px);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 18px 24px;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 320px;
    color: #1f2421;
}

.hero-location-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #1b382b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.hero-location-card p {
    font-size: 0.85rem;
    margin: 0;
    color: #4a504c;
    line-height: 1.35;
}

.hero-location-card strong {
    color: #1f2421;
    display: block;
    font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   6. HERO TRUST BAR STRIP
   -------------------------------------------------------------------------- */
.hero-trust-strip {
    background-color: #0e2e1e;
    border-top: 1px solid rgba(216, 178, 110, 0.25);
    border-bottom: 1px solid rgba(216, 178, 110, 0.25);
    padding: 28px 0;
    color: #ffffff;
}

.hero-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 20px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.hero-trust-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(216, 178, 110, 0.2) 0%, rgba(184, 138, 68, 0.1) 100%);
    border: 1px solid rgba(216, 178, 110, 0.4);
    color: #d8b26e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hero-trust-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #d8b26e;
    line-height: 1;
}

.hero-trust-label {
    font-size: 0.875rem;
    color: #c4d1c9;
}

/* --------------------------------------------------------------------------
   7. PHILOSOPHY SECTION — LUXURY REDESIGN MOCKUP
   -------------------------------------------------------------------------- */
.philosophy-section {
    background-color: #fdfbf7;
    background-image: url('../images/lifestyle/h1_deco-3.png'), url('../images/lifestyle/h1_deco-4.png');
    background-position: top right, bottom left;
    background-repeat: no-repeat, no-repeat;
    background-size: 280px auto, 280px auto;
    padding: clamp(80px, 8vw, 110px) 0;
    position: relative;
}

.philosophy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.philosophy-text-col {
    padding-right: 10px;
}

.badge-tag-leaf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: #fdf8ef;
    border: 1px solid #ebdcc9;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: #b88a44;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.philosophy-text-col h2 {
    font-size: clamp(2.1rem, 3.4vw, 2.75rem);
    line-height: 1.18;
    color: #0e2e1e;
    margin-bottom: 1rem;
}

.text-gold-script {
    color: #b88a44;
    font-style: italic;
    font-weight: 400;
}

.philosophy-heart-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1.2rem 0 1.6rem 0;
}

.philosophy-heart-line::before,
.philosophy-heart-line::after {
    content: '';
    width: 60px;
    height: 1px;
    background-color: #ebdcc9;
}

.philosophy-heart-line span {
    color: #b88a44;
    font-size: 0.9rem;
}

.philosophy-text-col p {
    font-size: 1.025rem;
    line-height: 1.65;
    color: #535955;
    margin-bottom: 2rem;
}

.btn-know-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0e2e1e;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.btn-know-more .btn-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #0e2e1e;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.btn-know-more:hover {
    color: #b88a44;
}

.btn-know-more:hover .btn-icon-circle {
    transform: translateX(4px);
    background-color: #b88a44;
}

.philosophy-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.philosophy-card {
    background-color: #ffffff;
    padding: 34px 22px 30px 22px;
    border-radius: 24px;
    border: 1px solid #ebdcc9;
    box-shadow: 0 12px 36px rgba(14, 46, 30, 0.05);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(14, 46, 30, 0.12);
    border-color: #c49a53;
}

.philosophy-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #f7f2ea;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.philosophy-card-dash {
    width: 36px;
    height: 2px;
    background-color: #d8b26e;
    margin-bottom: 16px;
    border-radius: 2px;
}

.philosophy-card h4 {
    font-size: 1.15rem;
    color: #0e2e1e;
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.philosophy-card p {
    font-size: 0.885rem;
    line-height: 1.6;
    margin: 0;
    color: #535955;
}

/* --------------------------------------------------------------------------
   6. TRUST & ABOUT HIGHLIGHTS
   -------------------------------------------------------------------------- */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

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

.trust-feature-card {
    background-color: var(--color-surface);
    padding: 32px 26px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.trust-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.trust-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary-light);
}

.trust-feature-card:hover::before {
    opacity: 1;
}

.trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: var(--color-surface-alt);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.trust-feature-card h4 {
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.trust-feature-card p {
    font-size: 0.925rem;
    margin: 0;
}

/* --------------------------------------------------------------------------
   8. CARE SERVICES CARDS — REDESIGN MOCKUP
   -------------------------------------------------------------------------- */
.services-section {
    background-color: #fdfbf7;
    background-image: url('../images/lifestyle/h1_deco-3.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 260px auto;
    padding: clamp(80px, 8vw, 110px) 0;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 24px;
    border: 1px solid #ebdcc9;
    overflow: visible;
    box-shadow: 0 12px 36px rgba(14, 46, 30, 0.05);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(14, 46, 30, 0.14);
    border-color: #c49a53;
}

.service-card-media {
    position: relative;
    height: 230px;
    overflow: visible;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-media img {
    transform: scale(1.06);
}

.service-card-icon-badge {
    position: absolute;
    bottom: -28px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #f7f2ea;
    border: 3px solid #ffffff;
    box-shadow: 0 6px 18px rgba(14, 46, 30, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #0e2e1e;
    z-index: 10;
}

.service-card-body {
    padding: 36px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border-radius: 0 0 24px 24px;
    background-color: #ffffff;
}

.service-card-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #d8b26e;
    text-align: right;
    margin-bottom: 8px;
}

.service-card-title {
    font-size: 1.25rem;
    color: #0e2e1e;
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.service-card-text {
    font-size: 0.885rem;
    line-height: 1.6;
    color: #535955;
    margin-bottom: 20px;
}

.service-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.service-check-list li {
    font-size: 0.875rem;
    color: #333835;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-check-list li .check-icon {
    color: #b88a44;
    font-weight: 700;
}

.btn-service-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 9999px;
    border: 1.5px solid #0e2e1e;
    color: #0e2e1e;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    margin-top: auto;
}

.btn-service-outline:hover {
    background-color: #0e2e1e;
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   ACTIVITIES OF DAILY LIVING (ADL) ASSISTANCE — EXACT MOCKUP
   -------------------------------------------------------------------------- */
.adl-section {
    background-color: #fdfbf7;
    background-image: url('../images/lifestyle/h1_deco-4.png');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 280px auto;
    padding: clamp(80px, 8vw, 110px) 0;
    position: relative;
}

.adl-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 9999px;
    border: 1px solid #d8b26e;
    color: #b88a44;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.adl-cards-row-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 28px;
}

.adl-cards-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 36px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.adl-item-card {
    background-color: #ffffff;
    border: 1.5px solid #ebdcc9;
    border-radius: 24px;
    padding: 32px 24px;
    position: relative;
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.03);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.adl-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(14, 46, 30, 0.1);
    border-color: #b88a44;
}

.adl-card-num-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #ebdcc9;
    color: #b88a44;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adl-card-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #f4f7f4;
    border: 1px solid #e2ebe2;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.adl-item-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: #0e2e1e;
    line-height: 1.35;
    margin: 0 0 12px 0;
}

.adl-item-card p {
    font-size: 0.885rem;
    color: #535955;
    line-height: 1.6;
    margin: 0;
}

/* Mobility Card Spanning Layout */
.adl-item-card.adl-card-wide {
    grid-column: span 1 / 2;
}

/* Bottom ADL CTA Support Bar */
.adl-support-cta-bar {
    background-color: #fdfbf7;
    border: 1.5px solid #ebdcc9;
    border-radius: 20px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.04);
}

.adl-support-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.adl-support-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #0e2e1e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.adl-support-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #0e2e1e;
    margin: 0 0 4px 0;
}

.adl-support-info p {
    font-size: 0.885rem;
    color: #535955;
    margin: 0;
}

/* --------------------------------------------------------------------------
   SKILLED NURSING & DAILY HEALTH MONITORING — EXACT MOCKUP
   -------------------------------------------------------------------------- */
.nursing-section {
    background-color: #fdfbf7;
    background-image: url('../images/lifestyle/h1_deco-3.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 260px auto;
    padding: clamp(80px, 8vw, 110px) 0;
    position: relative;
}

.nursing-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(36px, 5vw, 60px);
    align-items: center;
    margin-bottom: 40px;
}

/* Left Nursing Content */
.nursing-left-content {
    display: flex;
    flex-direction: column;
}

.nursing-left-content h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.1rem);
    color: #0e2e1e;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.nursing-lead-text {
    font-size: 0.95rem;
    color: #535955;
    line-height: 1.65;
    margin-bottom: 12px;
}

.nursing-sub-text {
    font-size: 0.885rem;
    color: #7a827c;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Dark Emerald Medical Contact Banner */
.nursing-contact-banner {
    background-color: #0e2e1e;
    border-radius: 20px;
    padding: 24px 28px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(14, 46, 30, 0.2);
}

.nursing-banner-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 18px;
}

.nursing-banner-title-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nursing-banner-phone-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(216, 178, 110, 0.3);
    color: #d8b26e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.nursing-banner-title-group strong {
    display: block;
    font-size: 0.9rem;
    color: #d8b26e;
    letter-spacing: 0.5px;
}

.nursing-banner-title-group span {
    font-size: 0.78rem;
    color: #c4d1c9;
}

.nursing-banner-numbers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.nursing-banner-numbers a {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: #f7e6b0;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(216, 178, 110, 0.35);
    padding: 6px 14px;
    border-radius: 9999px;
    white-space: nowrap;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nursing-banner-numbers a:hover {
    background-color: #b88a44;
    color: #ffffff;
    border-color: #b88a44;
}

.nursing-banner-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.825rem;
    color: #c4d1c9;
}

.nursing-banner-bottom-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nursing-banner-bottom-row .icon {
    color: #d8b26e;
    font-size: 0.9rem;
}

/* Right Clinical Features Card */
.nursing-features-card {
    background-color: #ffffff;
    border: 1.5px solid #ebdcc9;
    border-radius: 28px;
    padding: clamp(28px, 4vw, 36px);
    box-shadow: 0 16px 48px rgba(14, 46, 30, 0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nursing-feature-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ebdcc9;
}

.nursing-feature-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.nursing-feature-icon-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f4f7f4;
    border: 1px solid #e2ebe2;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.nursing-feature-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #0e2e1e;
    margin: 0 0 4px 0;
}

.nursing-feature-info p {
    font-size: 0.865rem;
    color: #535955;
    line-height: 1.5;
    margin: 0;
}

/* Bottom Nursing CTA Bar */
.nursing-cta-bar {
    background-color: #fdfbf7;
    border: 1.5px solid #ebdcc9;
    border-radius: 20px;
    padding: 24px 36px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.04);
}

.nursing-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 32px;
    border-right: 1px solid #ebdcc9;
}

.nursing-cta-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #f4f7f4;
    border: 1px solid #e2ebe2;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.nursing-cta-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #0e2e1e;
    margin: 0 0 6px 0;
}

.nursing-cta-info p {
    font-size: 0.885rem;
    color: #535955;
    margin: 0;
    line-height: 1.55;
}

.nursing-cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

/* --------------------------------------------------------------------------
   9. VIBRANT COMMUNITY — FADED LIFESTYLE CARD MOCKUP
   -------------------------------------------------------------------------- */
.lifestyle-section {
    padding: clamp(60px, 7vw, 90px) 0;
}

.lifestyle-card-wrapper {
    position: relative;
    padding-bottom: 34px;
}

.lifestyle-hero-card {
    position: relative;
    border-radius: 28px;
    background-color: #fcfbf9;
    border: 1px solid #ebdcc9;
    padding: clamp(48px, 6vw, 72px) clamp(32px, 5vw, 64px) clamp(80px, 8vw, 100px) clamp(32px, 5vw, 64px);
    box-shadow: 0 16px 48px rgba(14, 46, 30, 0.06);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.lifestyle-card-media-fade {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    overflow: hidden;
    z-index: 1;
}

.lifestyle-card-media-fade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.7) 12%, #000000 28%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.7) 12%, #000000 28%);
}

.lifestyle-content-left {
    max-width: 540px;
    position: relative;
    z-index: 2;
}

.lifestyle-content-left h2 {
    font-size: clamp(2.1rem, 3.4vw, 2.75rem);
    line-height: 1.18;
    color: #0e2e1e;
    margin-bottom: 1rem;
}

.lifestyle-content-left p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #535955;
    margin-bottom: 1.2rem;
}

.btn-lifestyle-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0e2e1e;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    margin-top: 1rem;
}

.btn-lifestyle-dark:hover {
    background-color: #b88a44;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 138, 68, 0.3);
}

.lifestyle-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid #ebdcc9;
    box-shadow: 0 12px 36px rgba(14, 46, 30, 0.08);
    padding: 18px 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    z-index: 10;
}

.lifestyle-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 14px;
}

.lifestyle-bar-item:not(:last-child) {
    border-right: 1px solid #ebdcc9;
}

.lifestyle-bar-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f7f2ea;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.lifestyle-bar-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0e2e1e;
    line-height: 1.3;
}

/* --------------------------------------------------------------------------
   8. AMENITIES CATEGORIZED SYSTEM
   -------------------------------------------------------------------------- */
.amenities-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.amenity-tab-btn {
    padding: 12px 26px;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    background-color: var(--color-surface);
    color: var(--color-text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.amenity-tab-btn:hover,
.amenity-tab-btn.active {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    border-color: var(--color-primary);
}

.amenities-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.amenity-item-card {
    background-color: var(--color-surface);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all var(--transition-fast);
}

.amenity-item-card:hover {
    border-color: var(--color-secondary-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.amenity-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: var(--color-secondary-bg);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.amenity-item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.amenity-item-info p {
    font-size: 0.875rem;
    margin: 0;
}

/* --------------------------------------------------------------------------
   9. LIFESTYLE & COMMUNITY
   -------------------------------------------------------------------------- */
.lifestyle-banner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    background-color: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.lifestyle-banner-content {
    padding: clamp(32px, 5vw, 64px);
}

.lifestyle-banner-media img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

/* --------------------------------------------------------------------------
   10. A THOUGHTFUL PATH TO SENIOR LIVING — INTERACTIVE STEP MOCKUP
   -------------------------------------------------------------------------- */
.thoughtful-path-section {
    background-color: #fdfbf7;
    background-image: url('../images/lifestyle/h1_deco-4.png');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 280px auto;
    padding: clamp(80px, 8vw, 110px) 0;
    position: relative;
}

/* 4 Step Process Tabs */
.path-steps-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.path-steps-line {
    position: absolute;
    top: 40px;
    left: 80px;
    right: 80px;
    height: 2px;
    border-top: 2px dashed #ebdcc9;
    z-index: 1;
}

.path-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.path-step-tab {
    background-color: #ffffff;
    border: 1.5px solid #ebdcc9;
    border-radius: 20px;
    padding: 20px 18px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.04);
}

.path-step-tab.active {
    background-color: #0e2e1e;
    border-color: #0e2e1e;
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(14, 46, 30, 0.18);
    transform: translateY(-4px);
}

.path-step-tab.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #0e2e1e;
}

.path-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.path-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f7f2ea;
    color: #b88a44;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ebdcc9;
}

.path-step-tab.active .path-step-num {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.path-step-icon {
    font-size: 1.2rem;
}

.path-step-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: #0e2e1e;
    margin-bottom: 6px;
    line-height: 1.3;
}

.path-step-tab.active .path-step-title {
    color: #ffffff;
}

.path-step-desc {
    font-size: 0.8rem;
    color: #7a827c;
    line-height: 1.45;
    margin: 0;
}

.path-step-tab.active .path-step-desc {
    color: #c4d1c9;
}

/* Detail Card Panel */
.path-detail-panel {
    background-color: #ffffff;
    border-radius: 28px;
    border: 1.5px solid #ebdcc9;
    box-shadow: 0 16px 48px rgba(14, 46, 30, 0.06);
    padding: clamp(32px, 5vw, 48px);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.path-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(32px, 5vw, 54px);
    align-items: center;
}

.path-detail-left {
    position: relative;
    padding-right: 20px;
}

.path-watermark-num {
    position: absolute;
    top: -40px;
    left: -20px;
    font-family: var(--font-heading);
    font-size: 9rem;
    font-weight: 800;
    color: #f6efe2;
    z-index: 1;
    user-select: none;
    line-height: 1;
}

.path-detail-content {
    position: relative;
    z-index: 2;
}

.path-step-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #b88a44;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.path-detail-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: #0e2e1e;
    margin-bottom: 18px;
    line-height: 1.25;
}

.path-detail-text {
    font-size: 0.95rem;
    color: #535955;
    line-height: 1.65;
    margin-bottom: 32px;
}

.path-nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-step-next {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0e2e1e;
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-step-next:hover {
    background-color: #b88a44;
}

.btn-step-circle-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f7f2ea;
    border: 1px solid #ebdcc9;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.btn-step-circle-next:hover {
    background-color: #0e2e1e;
    color: #ffffff;
}

/* Right Checklist Column */
.path-checklist-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-left: 1px solid #ebdcc9;
    padding-left: clamp(24px, 4vw, 40px);
}

.path-check-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #ebdcc9;
}

.path-check-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.path-check-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f7f2ea;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.path-check-text {
    font-size: 0.925rem;
    color: #333835;
    line-height: 1.5;
}

/* Bottom Full Guide Bar */
.path-full-guide-bar {
    background-color: #fdfbf7;
    border: 1.5px solid #ebdcc9;
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.04);
}

.path-guide-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.path-guide-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #f7f2ea;
    border: 1px solid #ebdcc9;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.path-guide-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #0e2e1e;
    margin: 0 0 4px 0;
}

.path-guide-info p {
    font-size: 0.885rem;
    color: #535955;
    margin: 0;
}

.btn-read-full-guide {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0e2e1e;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.925rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-read-full-guide:hover {
    background-color: #b88a44;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 138, 68, 0.3);
}

/* --------------------------------------------------------------------------
   11. GALLERY & LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* --------------------------------------------------------------------------
   PHOTO GALLERY — CLEAN 4+3 PHOTO GRID MOCKUP
   -------------------------------------------------------------------------- */
.gallery-filter-wrapper {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 9999px;
    background-color: #ffffff;
    border: 1.5px solid #ebdcc9;
    color: #0e2e1e;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(14, 46, 30, 0.02);
}

.gallery-filter-pill:hover {
    border-color: #b88a44;
    color: #b88a44;
    transform: translateY(-2px);
}

.gallery-filter-pill.active {
    background-color: #0e2e1e;
    color: #ffffff;
    border-color: #d8b26e;
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.2);
}

/* 4 + 3 Balanced Grid Container */
.gallery-clean-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.gallery-row-1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1.35fr;
    gap: 24px;
}

.gallery-clean-card {
    background-color: #ffffff;
    border: 1.5px solid #ebdcc9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.04);
    transition: all var(--transition-smooth);
    cursor: pointer;
    position: relative;
    aspect-ratio: 4 / 3;
}

.gallery-clean-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(14, 46, 30, 0.12);
    border-color: #b88a44;
}

.gallery-clean-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-row-2 .gallery-clean-card:last-child {
    aspect-ratio: 16 / 9;
}

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

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background-color: rgba(18, 38, 29, 0.95);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   BLOGS PAGE — LUXURY KNOWLEDGE HUB MOCKUP
   -------------------------------------------------------------------------- */
.blogs-header-wrapper {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px auto;
}

.blogs-header-icon {
    font-size: 1.5rem;
    color: #b88a44;
    margin-bottom: 12px;
    display: inline-block;
}

.blogs-header-wrapper h1 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: #0e2e1e;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 14px 0;
}

.blogs-header-wrapper p {
    font-size: 1.05rem;
    color: #535955;
    line-height: 1.6;
    margin: 0;
}

/* Featured Top Section Grid */
.blogs-featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.blog-hero-card {
    background-color: #ffffff;
    border: 1.5px solid #ebdcc9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.03);
    display: flex;
    transition: all var(--transition-smooth);
}

.blog-hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(14, 46, 30, 0.1);
    border-color: #b88a44;
}

.blog-hero-img-wrapper {
    width: 48%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-hero-card:hover .blog-hero-img-wrapper img {
    transform: scale(1.06);
}

.blog-hero-content {
    width: 52%;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
    background-image: url('../images/lifestyle/h1_deco-3.png');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 160px auto;
    position: relative;
}

.blog-category-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #b88a44;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.blog-hero-content h2 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    color: #0e2e1e;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 14px 0;
}

.blog-hero-content p {
    font-size: 0.85rem;
    color: #535955;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.blog-read-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0e2e1e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-fast);
}

.blog-read-link:hover {
    color: #b88a44;
}

/* Side & Bottom Grid Cards */
.blog-grid-card {
    background-color: #ffffff;
    border: 1.5px solid #ebdcc9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.03);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-smooth);
}

.blog-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(14, 46, 30, 0.1);
    border-color: #b88a44;
}

.blog-card-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.blog-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-grid-card:hover .blog-card-img-wrapper img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: #ffffff;
}

.blog-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: #0e2e1e;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px 0;
}

.blog-card-body p {
    font-size: 0.825rem;
    color: #535955;
    line-height: 1.5;
    margin: 0 0 16px 0;
    flex-grow: 1;
}

/* Bottom 3 Cards Per Row Grid */
.blogs-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.btn-view-all-blogs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 9999px;
    background-color: #0e2e1e;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: 0 6px 18px rgba(14, 46, 30, 0.15);
}

.btn-view-all-blogs:hover {
    background-color: #1b4d32;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(14, 46, 30, 0.25);
    color: #ffffff;
}

.btn-view-all-blogs .circle-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   CARE COORDINATORS QUESTIONS SECTION — LUXURY MOCKUP
   -------------------------------------------------------------------------- */
.care-questions-section {
    padding: 32px 0;
    background-color: transparent;
}

.care-questions-container {
    background-color: #fdfbf7;
    background-image: url('../images/lifestyle/h1_deco-4.png');
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 240px auto;
    border: 1.5px solid #ebdcc9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(14, 46, 30, 0.05);
}

.care-questions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.care-questions-left {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.care-questions-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #b88a44;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.care-questions-left h2 {
    font-family: var(--font-heading);
    font-size: 2.15rem;
    color: #0e2e1e;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 10px 0;
}

.care-questions-lead {
    font-size: 0.95rem;
    color: #535955;
    line-height: 1.6;
    margin: 0 0 28px 0;
    max-width: 480px;
}

.care-questions-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.care-questions-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.care-questions-feature-item .icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f4f7f4;
    border: 1px solid #e2ebe2;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.care-questions-feature-item span {
    font-size: 0.78rem;
    font-weight: 600;
    color: #333a35;
    line-height: 1.35;
}

.care-questions-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-questions-call {
    display: inline-flex;
    align-items: center;
    padding: 14px 24px;
    border-radius: 9999px;
    background-color: #ffffff;
    border: 1.5px solid #0e2e1e;
    color: #0e2e1e;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.btn-questions-call:hover {
    background-color: #f4f7f4;
    border-color: #b88a44;
    color: #b88a44;
    transform: translateY(-2px);
}

/* Right Image Side */
.care-questions-right {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
}

.care-questions-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.care-questions-priority-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1.5px solid #ebdcc9;
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 340px;
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.12);
}

.priority-icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0e2e1e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.priority-info strong {
    display: block;
    font-size: 0.85rem;
    color: #0e2e1e;
    margin-bottom: 2px;
}

.priority-info span {
    font-size: 0.75rem;
    color: #535955;
    line-height: 1.35;
    display: block;
}

/* --------------------------------------------------------------------------
   CONTACT US — LUXURY PAGE MOCKUP
   -------------------------------------------------------------------------- */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 40px;
}

/* Left Column Info Side */
.contact-info-side {
    display: flex;
    flex-direction: column;
}

.contact-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 9999px;
    background-color: #fdfbf7;
    border: 1.5px solid #ebdcc9;
    color: #b88a44;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 16px;
}

.contact-info-side h1 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    color: #0e2e1e;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 10px 0;
}

.contact-intro-text {
    font-size: 0.95rem;
    color: #535955;
    line-height: 1.6;
    margin: 0 0 28px 0;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px dashed #ebdcc9;
}

.contact-info-row:last-child {
    border-bottom: none;
}

.contact-row-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f4f7f4;
    border: 1px solid #e2ebe2;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-row-body {
    flex-grow: 1;
}

.contact-row-body strong {
    display: block;
    font-size: 0.95rem;
    color: #0e2e1e;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-row-body p {
    font-size: 0.875rem;
    color: #333a35;
    margin: 0;
    line-height: 1.5;
}

.contact-row-subtext {
    font-size: 0.78rem;
    color: #737c76;
    margin-top: 2px;
}

.btn-chat-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 9999px;
    border: 1.5px solid #0e2e1e;
    color: #0e2e1e;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.btn-chat-whatsapp:hover {
    background-color: #0e2e1e;
    color: #ffffff;
}

/* Right Column Form Side */
.contact-form-card {
    background-color: #ffffff;
    border: 1.5px solid #ebdcc9;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 12px 36px rgba(14, 46, 30, 0.04);
}

.contact-form-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-form-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #0e2e1e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-form-header h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #0e2e1e;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 2px 0;
}

.contact-form-header p {
    font-size: 0.825rem;
    color: #535955;
    margin: 0;
}

.contact-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-input-field {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1.5px solid #ebdcc9;
    background-color: #fdfbf7;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: #0e2e1e;
    transition: all var(--transition-fast);
}

.contact-input-field:focus {
    outline: none;
    border-color: #0e2e1e;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(14, 46, 30, 0.08);
}

.contact-form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 9999px;
    background-color: #0e2e1e;
    color: #ffffff;
    border: none;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 6px 18px rgba(14, 46, 30, 0.15);
}

.btn-contact-submit:hover {
    background-color: #1b4d32;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(14, 46, 30, 0.25);
}

.contact-secure-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #737c76;
}

/* Bottom Locations Grid */
.contact-locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.contact-location-card {
    background-color: #ffffff;
    border: 1.5px solid #ebdcc9;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.03);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.contact-location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(14, 46, 30, 0.08);
    border-color: #b88a44;
}

.contact-location-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 70%;
}

.contact-location-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #0e2e1e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-location-left h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #0e2e1e;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.contact-location-left p {
    font-size: 0.85rem;
    color: #535955;
    line-height: 1.5;
    margin: 0;
}

.contact-location-sketch {
    width: 110px;
    height: auto;
    opacity: 0.85;
}

/* --------------------------------------------------------------------------
   SCHEDULE A VISIT — GLOBAL MODAL POPUP MOCKUP
   -------------------------------------------------------------------------- */
.schedule-visit-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background-color: rgba(14, 46, 30, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.schedule-visit-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.schedule-visit-modal-card {
    background-color: #ffffff;
    border: 1.5px solid #ebdcc9;
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px;
    box-shadow: 0 24px 60px rgba(14, 46, 30, 0.25);
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.35s ease;
}

.schedule-visit-modal-backdrop.active .schedule-visit-modal-card {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f4f7f4;
    border: 1px solid #e2ebe2;
    color: #0e2e1e;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    line-height: 1;
}

.modal-close-btn:hover {
    background-color: #0e2e1e;
    color: #ffffff;
}

.modal-header-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.modal-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #0e2e1e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.modal-header-box h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    color: #0e2e1e;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.modal-header-box p {
    font-size: 0.825rem;
    color: #535955;
    margin: 0;
}

.modal-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-input-group {
    margin-bottom: 16px;
}

.modal-input-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #0e2e1e;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-input-field {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1.5px solid #ebdcc9;
    background-color: #fdfbf7;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: #0e2e1e;
    transition: all var(--transition-fast);
}

.modal-input-field:focus {
    outline: none;
    border-color: #0e2e1e;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(14, 46, 30, 0.08);
}

.btn-modal-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 9999px;
    background-color: #0e2e1e;
    color: #ffffff;
    border: none;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 6px 18px rgba(14, 46, 30, 0.15);
    margin-top: 8px;
}

.btn-modal-submit:hover {
    background-color: #1b4d32;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(14, 46, 30, 0.25);
}

.modal-success-box {
    text-align: center;
    padding: 24px 12px 12px 12px;
    display: none;
}

.modal-success-box .success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #f4f7f4;
    border: 2px solid #0e2e1e;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 16px auto;
}

.modal-success-box h4 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: #0e2e1e;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.modal-success-box p {
    font-size: 0.875rem;
    color: #535955;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   11. FREQUENTLY ASKED QUESTIONS — LUXURY ACCORDION MOCKUP
   -------------------------------------------------------------------------- */
.faq-section {
    background-color: #fdfbf7;
    background-image: url('../images/lifestyle/h1_deco-4.png');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 280px auto;
    padding: clamp(80px, 8vw, 110px) 0;
    position: relative;
}

.faq-badge-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 9999px;
    border: 1px solid #d8b26e;
    color: #b88a44;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 880px;
    margin: 0 auto;
}

.faq-card {
    background-color: #ffffff;
    border: 1.5px solid #ebdcc9;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.03);
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.faq-card.active {
    border-color: #d8b26e;
    box-shadow: 0 16px 40px rgba(14, 46, 30, 0.08);
}

.faq-header-btn {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    text-align: left;
}

.faq-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-q-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0e2e1e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    font-family: var(--font-heading);
}

.faq-q-title {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 600;
    color: #0e2e1e;
    line-height: 1.35;
}

.faq-arrow-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f7f2ea;
    color: #b88a44;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.faq-card.active .faq-arrow-badge {
    transform: rotate(180deg);
    background-color: #b88a44;
    color: #ffffff;
}

.faq-body-content {
    display: none;
    padding: 0 24px 24px 24px;
}

.faq-card.active .faq-body-content {
    display: block;
}

.faq-answer-inner {
    background-color: #f4f7f4;
    border: 1px solid #e2ebe2;
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-answer-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e6efe6;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.faq-answer-text {
    font-size: 0.95rem;
    color: #4a524d;
    line-height: 1.65;
    margin: 0;
}

/* Bottom "Still Have Questions?" CTA Bar */
.faq-still-questions-bar {
    background-color: #fdfbf7;
    border: 1.5px solid #ebdcc9;
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 880px;
    margin: 32px auto 0 auto;
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.04);
}

.faq-still-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.faq-still-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #f7f2ea;
    border: 1px solid #ebdcc9;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.faq-still-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #0e2e1e;
    margin: 0 0 4px 0;
}

.faq-still-info p {
    font-size: 0.885rem;
    color: #535955;
    margin: 0;
}

.btn-talk-care-team {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0e2e1e;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.925rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-talk-care-team:hover {
    background-color: #b88a44;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 138, 68, 0.3);
}

/* --------------------------------------------------------------------------
   17. READY TO TOUR NETHU PRIYAA HOME — LUXURY TOUR CTA MOCKUP
   -------------------------------------------------------------------------- */
.ready-tour-section {
    background-color: #fdfbf7;
    background-image: url('../images/lifestyle/h1_deco-3.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 260px auto;
    padding: clamp(60px, 7vw, 90px) 0;
    position: relative;
}

.ready-tour-container {
    background-color: #fdfbf7;
    background-image: url('../images/lifestyle/h1_deco-4.png');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 280px auto;
    border: 1.5px solid #ebdcc9;
    border-radius: 28px;
    padding: clamp(40px, 5vw, 60px) clamp(32px, 5vw, 54px);
    box-shadow: 0 16px 48px rgba(14, 46, 30, 0.05);
}

.ready-tour-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(36px, 5vw, 60px);
    align-items: center;
}

/* Left Content */
.ready-tour-left h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.1rem);
    color: #0e2e1e;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.ready-tour-lead {
    font-size: 0.95rem;
    color: #535955;
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 520px;
}

/* 3 Features Row */
.ready-tour-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px;
    padding-right: 16px;
}

.ready-tour-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-right: 12px;
    border-right: 1px solid #ebdcc9;
}

.ready-tour-feature-item:last-child {
    border-right: none;
    padding-right: 0;
}

.ready-tour-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #f4f7f4;
    border: 1px solid #e2ebe2;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.ready-tour-feature-item strong {
    font-family: var(--font-heading);
    font-size: 0.925rem;
    color: #0e2e1e;
    margin-bottom: 4px;
}

.ready-tour-feature-item span {
    font-size: 0.78rem;
    color: #7a827c;
    line-height: 1.4;
}

.btn-ready-schedule {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #0e2e1e;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.2);
}

.btn-ready-schedule:hover {
    background-color: #b88a44;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(184, 138, 68, 0.35);
}

/* Right Card */
.ready-tour-card {
    background-color: #f7f4ec;
    border: 1px solid #ebdcc9;
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ready-tour-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ebdcc9;
}

.ready-tour-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #0e2e1e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ready-tour-card-header h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #0e2e1e;
    margin: 0 0 2px 0;
}

.ready-tour-card-header p {
    font-size: 0.825rem;
    color: #535955;
    margin: 0;
}

.ready-tour-card-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ready-tour-card-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ready-tour-card-item .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e6efe6;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.ready-tour-card-item h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #0e2e1e;
    margin: 0 0 2px 0;
}

.ready-tour-card-item p {
    font-size: 0.85rem;
    color: #535955;
    margin: 0;
    line-height: 1.45;
}

.ready-tour-card-item a {
    color: #0e2e1e;
    text-decoration: none;
    font-weight: 600;
}

.ready-tour-card-item a:hover {
    color: #b88a44;
}

.ready-tour-script-note {
    font-family: var(--font-heading);
    font-style: italic;
    color: #b88a44;
    font-size: 1.05rem;
    text-align: center;
    padding-top: 8px;
}

/* --------------------------------------------------------------------------
   SHORT-TERM RESPITE CARE — LUXURY MOCKUP
   -------------------------------------------------------------------------- */
.respite-section {
    background-color: #fdfbf7;
    background-image: url('../images/lifestyle/h1_deco-4.png');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 280px auto;
    padding: clamp(80px, 8vw, 110px) 0;
    position: relative;
}

.respite-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: clamp(36px, 5vw, 60px);
    align-items: center;
}

.respite-left h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.1rem);
    color: #0e2e1e;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.respite-lead {
    font-size: 0.95rem;
    color: #535955;
    line-height: 1.65;
    margin-bottom: 24px;
}

/* Travel Callout Box */
.respite-travel-box {
    background-color: #ffffff;
    border: 1.5px solid #ebdcc9;
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.03);
}

.respite-travel-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f7f2ea;
    border: 1px solid #ebdcc9;
    color: #b88a44;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.respite-travel-text {
    font-size: 0.885rem;
    color: #4a524d;
    line-height: 1.55;
    margin: 0;
}

/* 4 Feature Pills Row */
.respite-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.respite-feature-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 14px;
    border-right: 1px solid #ebdcc9;
}

.respite-feature-col:last-child {
    border-right: none;
    padding-right: 0;
}

.respite-feature-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f4f7f4;
    border: 1px solid #e2ebe2;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.respite-feature-col h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #0e2e1e;
    margin: 0 0 4px 0;
}

.respite-feature-col p {
    font-size: 0.78rem;
    color: #7a827c;
    line-height: 1.45;
    margin: 0;
}

/* Respite Action Bar */
.respite-action-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.respite-peace-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.respite-peace-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f4f7f4;
    border: 1px solid #e2ebe2;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.respite-peace-text {
    font-size: 0.825rem;
    color: #535955;
    line-height: 1.4;
}

.respite-peace-text strong {
    display: block;
    color: #0e2e1e;
    font-size: 0.85rem;
}

/* Right Respite Card */
.respite-home-card {
    background-color: #f4f7f4;
    border: 1.5px solid #e2ebe2;
    border-radius: 28px;
    padding: clamp(36px, 5vw, 48px) clamp(28px, 4vw, 36px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(14, 46, 30, 0.04);
}

.respite-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ebdcc9;
    margin-bottom: 24px;
}

.respite-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #0e2e1e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.respite-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #0e2e1e;
    margin: 0;
    line-height: 1.25;
}

.respite-card-body p {
    font-size: 0.925rem;
    color: #4a524d;
    line-height: 1.7;
    margin: 0;
}

.respite-card-leaf-watermark {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 220px;
    opacity: 0.15;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   CATEGORIZED AMENITIES GRID & SUPPORT BAR — LUXURY MOCKUP
   -------------------------------------------------------------------------- */
.amenities-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.amenity-tab-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 9999px;
    background-color: #ffffff;
    border: 1.5px solid #ebdcc9;
    color: #0e2e1e;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(14, 46, 30, 0.02);
}

.amenity-tab-pill:hover {
    border-color: #b88a44;
    color: #b88a44;
    transform: translateY(-2px);
}

.amenity-tab-pill.active {
    background-color: #0e2e1e;
    color: #ffffff;
    border-color: #d8b26e;
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.2);
}

.amenities-content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.amenity-item-card {
    background-color: #ffffff;
    border: 1.5px solid #ebdcc9;
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.03);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.amenity-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(14, 46, 30, 0.1);
    border-color: #b88a44;
}

.amenity-card-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #f4f7f4;
    border: 1px solid #e2ebe2;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.amenity-item-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #0e2e1e;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

.amenity-item-info p {
    font-size: 0.85rem;
    color: #535955;
    line-height: 1.55;
    margin: 0;
}

/* Bottom Amenities Support CTA Bar */
.amenities-bottom-cta-bar {
    background-color: #fdfbf7;
    border: 1.5px solid #ebdcc9;
    border-radius: 20px;
    padding: 24px 32px;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 28px;
    align-items: center;
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.04);
}

.amenities-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 28px;
    border-right: 1px solid #ebdcc9;
}

.amenities-cta-left-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #0e2e1e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.amenities-cta-left-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #0e2e1e;
    margin: 0 0 4px 0;
}

.amenities-cta-left-info p {
    font-size: 0.865rem;
    color: #535955;
    margin: 0;
    line-height: 1.5;
}

.amenities-cta-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.amenities-cta-right-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.amenities-cta-right-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f4f7f4;
    border: 1px solid #e2ebe2;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.amenities-cta-right-info h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #0e2e1e;
    margin: 0 0 2px 0;
}

.amenities-cta-right-info p {
    font-size: 0.825rem;
    color: #535955;
    margin: 0;
}

/* --------------------------------------------------------------------------
   12. TESTIMONIALS CAROUSEL (SLIDER)
   -------------------------------------------------------------------------- */
.testimonials-section {
    background-color: #fdfbf7;
    background-image: url('../images/lifestyle/h1_deco-3.png');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 260px auto;
    padding: clamp(80px, 8vw, 110px) 0;
}

.testimonials-carousel-container {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 10px 0 20px 0;
}

.testimonial-track {
    position: relative;
    width: 100%;
    min-height: 280px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px) scale(0.98);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.testimonial-card {
    background-color: #ffffff;
    padding: clamp(36px, 5vw, 48px) clamp(32px, 5vw, 48px);
    border-radius: 24px;
    border: 1.5px solid #ebdcc9;
    box-shadow: 0 16px 48px rgba(14, 46, 30, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-top-quote {
    color: #d8b26e;
    font-size: 3.2rem;
    line-height: 0.8;
    font-weight: 900;
    font-family: var(--font-heading);
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-style: italic;
    color: #2d332f;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-mid-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.testimonial-mid-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ebdcc9 30%, #ebdcc9 70%, transparent);
}

.testimonial-mid-quote {
    color: #d8b26e;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

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

.testimonial-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #fcf9f2;
    border: 1.5px solid #ebdcc9;
    color: #b88a44;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.testimonial-info h5 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #0e2e1e;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: #7a827c;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}

.testimonial-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1.5px solid #ebdcc9;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(14, 46, 30, 0.05);
}

.testimonial-arrow:hover {
    background-color: #0e2e1e;
    color: #ffffff;
    border-color: #0e2e1e;
}

.testimonial-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ebdcc9;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dot.active {
    width: 28px;
    border-radius: 9999px;
    background-color: #b88a44;
}

/* --------------------------------------------------------------------------
   13. COME EXPERIENCE OUR WARMTH & HOSPITALITY — VISIT BOOKING MOCKUP
   -------------------------------------------------------------------------- */
.visit-booking-section {
    background-color: #0b2318;
    background-image: url('../images/lifestyle/h1_deco-3.png');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 320px auto;
    padding: clamp(80px, 8vw, 110px) 0;
    position: relative;
    overflow: hidden;
}

.visit-booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 64px);
    align-items: center;
}

/* Left Branding Column */
.visit-left-content {
    color: #ffffff;
}

.visit-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 9999px;
    border: 1px solid #d8b26e;
    color: #d8b26e;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.visit-left-content h2 {
    font-size: clamp(2.2rem, 3.6vw, 3.1rem);
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1rem;
}

.visit-left-content p.visit-lead {
    color: #c4d1c9;
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 520px;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-detail-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(235, 220, 201, 0.15);
}

.contact-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-detail-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(216, 178, 110, 0.25);
    color: #d8b26e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    font-family: var(--font-heading);
}

.contact-detail-text p {
    color: #c4d1c9;
    font-size: 0.95rem;
    margin: 0;
}

.contact-detail-text a {
    color: #ffffff;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-detail-text a:hover {
    color: #d8b26e;
}

/* Bottom Feature Trust Bar */
.visit-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(235, 220, 201, 0.18);
}

.visit-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.visit-trust-icon {
    font-size: 1.2rem;
    color: #d8b26e;
}

.visit-trust-info strong {
    display: block;
    font-size: 0.85rem;
    color: #ffffff;
}

.visit-trust-info span {
    font-size: 0.75rem;
    color: #a3b5ab;
}

.visit-script-footer {
    margin-top: 28px;
    font-family: var(--font-heading);
    font-style: italic;
    color: #d8b26e;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 16px;
}

.visit-script-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, #d8b26e 0%, transparent 100%);
}

/* Right Form Card */
.visit-form-card {
    background-color: #ffffff;
    border-radius: 28px;
    padding: clamp(36px, 5vw, 48px) clamp(28px, 5vw, 40px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
}

.visit-form-header {
    margin-bottom: 28px;
}

.visit-form-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #b88a44;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.visit-form-tag::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: #ebdcc9;
}

.visit-form-header h3 {
    font-size: 1.85rem;
    color: #0e2e1e;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.visit-form-header p {
    font-size: 0.885rem;
    color: #535955;
    line-height: 1.55;
    margin: 0;
}

/* Custom Input Groups with Left Icon */
.form-field-group {
    margin-bottom: 18px;
}

.form-field-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0e2e1e;
    margin-bottom: 6px;
}

.input-with-icon {
    display: flex;
    align-items: center;
    border: 1px solid #ebdcc9;
    border-radius: 12px;
    background-color: #fdfbf7;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.input-with-icon:focus-within {
    border-color: #b88a44;
    box-shadow: 0 0 0 3px rgba(184, 138, 68, 0.15);
    background-color: #ffffff;
}

.input-icon-box {
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a827c;
    font-size: 1rem;
    border-right: 1px solid #ebdcc9;
    flex-shrink: 0;
    min-height: 48px;
}

.form-input-clean {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 0.925rem;
    color: #0e2e1e;
    outline: none;
    width: 100%;
}

.form-select-clean {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 0.925rem;
    color: #0e2e1e;
    outline: none;
    width: 100%;
    cursor: pointer;
}

.form-textarea-clean {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 0.925rem;
    color: #0e2e1e;
    outline: none;
    width: 100%;
    min-height: 90px;
    resize: vertical;
}

.btn-schedule-submit {
    width: 100%;
    padding: 16px 24px;
    border-radius: 9999px;
    background-color: #0e2e1e;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all var(--transition-fast);
    box-shadow: 0 8px 24px rgba(14, 46, 30, 0.2);
    margin-top: 10px;
}

.btn-schedule-submit:hover {
    background-color: #b88a44;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(184, 138, 68, 0.35);
}

.visit-card-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.825rem;
    color: #7a827c;
}

/* Form Status Messages */
.form-status {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-top: 16px;
    display: none;
    font-size: 0.95rem;
}

.form-status.success {
    display: block;
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.form-status.error {
    display: block;
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* --------------------------------------------------------------------------
   14. FOOTER STYLING — EXACT MOCKUP
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: #fdfbf7;
    background-image: url('../images/lifestyle/h1_deco-4.png');
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 280px auto;
    border-top: 1.5px solid #ebdcc9;
    padding: clamp(60px, 6vw, 80px) 0 0 0;
    width: 100%;
    position: relative;
}

.footer-main-body {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1.3fr;
    gap: clamp(24px, 4vw, 40px);
    padding-bottom: 48px;
}

/* Col 1 Brand */
.footer-brand-col {
    padding-right: 16px;
}

.footer-logo-img {
    width: 100px;
    height: auto;
    margin-bottom: 12px;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #0e2e1e;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-brand-text {
    font-size: 0.885rem;
    line-height: 1.6;
    color: #535955;
    margin-bottom: 20px;
}

.footer-brand-pill {
    background-color: #f4f7f4;
    border: 1px solid #e2ebe2;
    border-radius: 18px;
    padding: 16px 20px;
    font-size: 0.825rem;
    color: #0e2e1e;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand-pill span.heart-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #0e2e1e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-brand-pill-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #0e2e1e;
    margin-bottom: 2px;
}

.footer-brand-pill-info span {
    font-size: 0.78rem;
    color: #535955;
}

/* Columns Headers */
.footer-col-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ebdcc9;
}

.footer-col-icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f4f7f4;
    border: 1px solid #e2ebe2;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-col-header h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #0e2e1e;
    margin: 0;
    letter-spacing: 1.2px;
    font-weight: 700;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list li {
    padding-bottom: 10px;
    border-bottom: 1px dashed #ebdcc9;
}

.footer-nav-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.footer-nav-list a {
    color: #333835;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color var(--transition-fast);
}

.footer-nav-list a span.nav-icon {
    font-size: 1.05rem;
    color: #0e2e1e;
}

.footer-nav-list a:hover {
    color: #b88a44;
}

/* Col 4 Contact */
.footer-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.885rem;
    color: #333835;
    line-height: 1.5;
}

.footer-contact-item .icon {
    color: #b88a44;
    font-size: 1.05rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: #333835;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
    color: #b88a44;
}

.footer-hours-box {
    background-color: #f4f7f4;
    border: 1px solid #e2ebe2;
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-hours-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0e2e1e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-hours-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #0e2e1e;
    margin-bottom: 2px;
}

.footer-hours-info span {
    font-size: 0.78rem;
    color: #535955;
    display: block;
}

/* Middle Trust & Social Bar */
.footer-trust-bar {
    background-color: #fdfbf7;
    border-top: 1.5px solid #ebdcc9;
    border-bottom: 1.5px solid #ebdcc9;
    padding: 24px 0;
}

.footer-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 24px;
    align-items: center;
}

.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 20px;
    border-right: 1.5px solid #ebdcc9;
}

.footer-trust-item:last-child {
    border-right: none;
    padding-right: 0;
}

.footer-trust-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1.5px solid #ebdcc9;
    color: #0e2e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-trust-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #0e2e1e;
    margin-bottom: 2px;
}

.footer-trust-info span {
    font-size: 0.8rem;
    color: #535955;
    line-height: 1.4;
}

.footer-social-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.footer-social-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #0e2e1e;
    font-weight: 600;
}

.social-circle-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, opacity 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border: none !important;
}

.social-circle-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

.social-circle-btn.social-facebook {
    background-color: #1877F2 !important;
    color: #ffffff !important;
}

.social-circle-btn.social-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
    color: #ffffff !important;
}

.social-circle-btn.social-whatsapp {
    background-color: #25D366 !important;
    color: #ffffff !important;
}

.social-circle-btn:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    opacity: 0.95;
}


/* Bottom Full-Width Dark Emerald Strip */
.footer-dark-strip {
    background-color: #0e2e1e;
    padding: 16px 0;
    color: #ffffff;
    font-size: 0.86rem;
    width: 100%;
}

.footer-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-dark-strip p,
.footer-dark-strip a,
.footer-bottom,
.footer-bottom p,
.footer-bottom a {
    color: #ffffff !important;
    opacity: 1 !important;
}

.footer-dark-strip a,
.footer-bottom a {
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.footer-dark-strip a:hover,
.footer-bottom a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-strip-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }
}




/* --------------------------------------------------------------------------
   15. MOBILE PERSISTENT ACTION BAR
   -------------------------------------------------------------------------- */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 10px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.action-bar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 8px;
}

.action-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-align: center;
}

/* --------------------------------------------------------------------------
   16. REDUCED MOTION OVERRIDES
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
