/* ==========================================================================
   VARA FARM HAVEN — MAIN STYLESHEET
   Based on design.md specification
   ========================================================================== */

/* --------------------------------------------------------------------------
   05. Global CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Brand Colors */
    --vara-green: #005837;
    --vara-green-hover: #00452B;
    --vara-lime: #B0D236;
    --vara-slate: #606A71;

    /* Neutrals */
    --vara-ink: #111513;
    --vara-white: #FFFFFF;
    --vara-paper: #F6F7F2;
    --vara-sand: #E8E5D8;
    --vara-border: #D9DDD6;
    --vara-muted: #8A918E;

    /* Typography */
    --font-primary: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Layout */
    --container-width: 1440px;
    --page-padding: clamp(20px, 5vw, 80px);

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(17, 21, 19, 0.08);
    --shadow-nav: 0 4px 20px rgba(17, 21, 19, 0.06);

    /* Transitions */
    --transition-fast: 250ms ease;
    --transition-base: 500ms ease;
    --transition-slow: 800ms ease;
}

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

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

body {
    background: var(--vara-paper);
    color: var(--vara-ink);
    font-family: var(--font-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

/* --------------------------------------------------------------------------
   06. Typography Defaults
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--vara-ink);
}

.hero-heading {
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: var(--vara-white);
}

.section-heading {
    font-size: clamp(32px, 4.2vw, 56px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.body-text {
    font-size: 16.5px;
    line-height: 1.65;
    font-weight: 400;
    color: var(--vara-slate);
}

/* --------------------------------------------------------------------------
   07. Global Layout Components
   -------------------------------------------------------------------------- */
.container {
    width: min(calc(100% - 2 * var(--page-padding)), var(--container-width));
    margin-inline: auto;
}

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

/* --------------------------------------------------------------------------
   26 & 27. Buttons & Links (CTA Design)
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    padding: 0 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--vara-green);
    color: var(--vara-white);
    border: 1px solid var(--vara-green);
}

.btn-primary:hover {
    background: var(--vara-green-hover);
    border-color: var(--vara-green-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 88, 55, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--vara-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--vara-white);
    color: var(--vara-white);
}

.btn-secondary-dark {
    background: transparent;
    color: var(--vara-green);
    border: 1px solid var(--vara-green);
}

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

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--vara-green);
    font-size: 16px;
}

.link-arrow span {
    display: inline-block;
    transition: transform var(--transition-fast);
}

.link-arrow:hover span {
    transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   09 & 10. Header & Navigation
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background var(--transition-fast), padding var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.navbar.scrolled {
    background: rgba(246, 247, 242, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--vara-border);
    padding: 14px 0;
    box-shadow: var(--shadow-nav);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-logo img {
    height: 58px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast), filter var(--transition-fast), height var(--transition-fast);
    filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

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

.navbar.scrolled .brand-logo img {
    height: 50px;
}

.navbar.scrolled .brand-logo img,
.navbar.mobile-open .brand-logo img {
    filter: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-item {
    position: relative;
    padding: 6px 0;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.navbar.scrolled .nav-link {
    color: var(--vara-ink);
}

.dropdown-arrow {
    transition: transform var(--transition-fast), opacity var(--transition-fast);
    opacity: 0.75;
    flex-shrink: 0;
}

.nav-item:hover .dropdown-arrow,
.nav-item:focus-within .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

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

.navbar.scrolled .nav-link::after {
    background: var(--vara-green);
}

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

.navbar.scrolled .nav-link.active {
    color: var(--vara-green);
    font-weight: 600;
}

/* Dropdown Sub-menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(16, 28, 22, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 8px;
    min-width: 190px;
    list-style: none;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s;
    z-index: 1100;
}

.navbar.scrolled .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--vara-border);
    box-shadow: 0 16px 36px rgba(28, 38, 31, 0.12);
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}

.navbar.scrolled .dropdown-item {
    color: var(--vara-ink);
}

.dropdown-item:hover,
.dropdown-item.active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--vara-lime);
    padding-left: 18px;
}

.navbar.scrolled .dropdown-item:hover,
.navbar.scrolled .dropdown-item.active {
    background: var(--vara-sand);
    color: var(--vara-green);
    padding-left: 18px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--vara-white);
    transition: all var(--transition-fast);
    transform-origin: center;
}

.navbar.scrolled .mobile-menu-toggle span,
.mobile-menu-toggle[aria-expanded="true"] span {
    background-color: var(--vara-ink);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav Overlay & Nested Groups */
.mobile-nav-modal {
    position: fixed;
    inset: 0;
    background: var(--vara-paper);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 90px var(--page-padding) 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    overflow-y: auto;
}

.mobile-nav-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.mobile-nav-groups {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.mobile-nav-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-group-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--vara-green);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.mobile-sub-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 14px;
    border-left: 2px solid var(--vara-sand);
    margin-top: 4px;
}

.mobile-sub-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--vara-ink);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.mobile-sub-link:hover,
.mobile-sub-link.active {
    color: var(--vara-green-light);
    font-weight: 600;
}

.mobile-nav-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
}

/* --------------------------------------------------------------------------
   11 & 12. Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 70px;
    padding-top: 140px;
    overflow: hidden;
    color: var(--vara-white);
    box-sizing: border-box;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -15% 0;
    background-image: url('../assets/images/small-white-house-with-blue-roof-grassy-field-surrounded-by-trees.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    transform: translateY(var(--hero-parallax-y, 0px));
    will-change: transform;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 17, 14, 0.7) 0%, rgba(11, 17, 14, 0) 180px),
        linear-gradient(90deg,
            rgba(17, 21, 19, 0.82) 0%,
            rgba(17, 21, 19, 0.45) 50%,
            rgba(17, 21, 19, 0.15) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-heading {
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    max-width: 800px;
}

.hero-subhead {
    font-size: 16.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 400;
    margin-bottom: 36px;
    max-width: 680px;
}

/* Property Spec Strip */
.property-strip {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 20px 28px;
    background: rgba(17, 21, 19, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 36px;
    width: fit-content;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--vara-white);
    line-height: 1.2;
}

.spec-value span {
    color: var(--vara-lime);
}

.spec-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--vara-muted);
}

.spec-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.18);
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.location-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 24px;
}

.location-tag svg {
    color: var(--vara-lime);
}

/* --------------------------------------------------------------------------
   13 & 14. Section Layout & The Idea Section
   -------------------------------------------------------------------------- */
.section-padding {
    padding: clamp(60px, 5vw, 80px) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.idea-section {
    background: var(--vara-white);
    position: relative;
    overflow: hidden;
}

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

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

@media (min-width: 1024px) {
    .idea-grid {
        grid-template-columns: 1.05fr 1fr;
    }
}

.idea-image-col {
    position: relative;
    width: 100%;
}

.idea-image-frame {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4 / 3;
    width: 100%;
    background-color: var(--vara-sand);
}

.idea-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.idea-heading {
    margin-top: 0;
    margin-bottom: 24px;
    color: var(--vara-ink);
    font-size: clamp(32px, 4.2vw, 56px);
    line-height: 1.12;
}

.idea-divider {
    width: 50px;
    height: 3px;
    background: var(--vara-lime);
    margin-bottom: 28px;
    border-radius: 2px;
}

.idea-lead {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 500;
    line-height: 1.45;
    color: var(--vara-green);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.idea-body {
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--vara-slate);
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   15. Land & Pricing Section
   -------------------------------------------------------------------------- */
.land-pricing-section {
    background: var(--vara-green);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    color: var(--vara-white);
}

.land-pricing-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px auto;
}

.land-heading {
    color: var(--vara-white);
    margin-top: 8px;
}

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

.stat-card {
    background: var(--vara-white);
    padding: 40px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--vara-border);
    border-top: 3px solid var(--vara-green);
    box-shadow: 0 4px 20px rgba(17, 21, 19, 0.03);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-top-color: var(--vara-lime);
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.stat-currency {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: var(--vara-green);
    line-height: 1;
}

.stat-number {
    font-size: clamp(48px, 5vw, 68px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--vara-green);
}

.stat-unit {
    font-size: clamp(15px, 1.3vw, 19px);
    font-weight: 600;
    color: var(--vara-slate);
    margin-left: 2px;
}

.stat-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--vara-ink);
    margin-bottom: 8px;
}

.stat-subtext {
    font-size: 14px;
    line-height: 1.5;
    color: var(--vara-slate);
    margin-top: auto;
}

/* --------------------------------------------------------------------------
   16. Why 5 Guntas Section (Asymmetric Grid Layout)
   -------------------------------------------------------------------------- */
.why-guntas-section {
    background: var(--vara-white);
    border-top: 1px solid var(--vara-border);
    position: relative;
}

.why-guntas-header {
    margin-bottom: 48px;
}

.why-guntas-heading {
    color: var(--vara-ink);
}

/* Balanced 2-Column Grid */
.why-guntas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: stretch;
}

.guntas-card {
    background: var(--vara-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--vara-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(17, 21, 19, 0.03);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.guntas-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: var(--vara-green);
}

.guntas-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: var(--vara-sand);
}

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

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

.guntas-card-content {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.guntas-card-index {
    font-size: 14px;
    font-weight: 700;
    color: var(--vara-green);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.guntas-card-title {
    font-size: clamp(22px, 2vw, 26px);
    font-weight: 700;
    color: var(--vara-ink);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.guntas-card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--vara-slate);
    font-weight: 400;
}

/* Grid Column Assignments & Layout Variations for uniform sizing */
.guntas-card.card-wide,
.guntas-card.card-tall,
.guntas-card.card-medium,
.guntas-card.card-wide-alt {
    grid-column: span 1;
}

.guntas-card.card-wide .guntas-card-image,
.guntas-card.card-tall .guntas-card-image,
.guntas-card.card-medium .guntas-card-image,
.guntas-card.card-wide-alt .guntas-card-image {
    aspect-ratio: 16 / 9;
}

/* --------------------------------------------------------------------------
   17. Connectivity Section (Roadmap Showcase & Strategic Corridors)
   -------------------------------------------------------------------------- */
.connectivity-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--vara-green);
    color: var(--vara-white);
    position: relative;
    overflow: clip;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-sizing: border-box;
}

.connectivity-section::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(176, 210, 54, 0.08) 0%, rgba(0, 88, 55, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.connectivity-section .container {
    position: relative;
    z-index: 1;
}

.connectivity-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 48px);
    margin-bottom: 40px;
}

.connectivity-heading {
    color: var(--vara-white);
    margin-bottom: 0;
    font-size: clamp(28px, 3.8vw, 54px);
    line-height: 1.15;
    letter-spacing: -0.04em;
    flex-shrink: 0;
}

.connectivity-heading .heading-line {
    display: block;
    white-space: nowrap;
}

.connectivity-lead {
    font-size: 16.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    max-width: 540px;
    margin-bottom: 4px;
}

.connectivity-lead strong {
    color: var(--vara-white);
    font-weight: 700;
}

/* Quick Commute Metrics Strip (Placed After Grid) */
.connectivity-commute-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    margin-top: 44px;
    margin-bottom: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow-x: auto;
    scrollbar-width: none;
}

.connectivity-commute-strip::-webkit-scrollbar {
    display: none;
}

.commute-strip-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.commute-strip-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 800;
    color: var(--vara-lime);
    letter-spacing: -0.02em;
}

.commute-strip-time i {
    font-size: 14px;
    color: var(--vara-lime);
}

.commute-strip-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

.commute-strip-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 16px;
    flex-shrink: 0;
}

/* Main Grid Layout */
.connectivity-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(28px, 4vw, 52px);
    align-items: start;
}

/* Map Showcase Card */
.connectivity-map-column {
    width: 100%;
    position: sticky;
    top: 96px;
    align-self: start;
    z-index: 10;
}

.connectivity-map-showcase {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    background: var(--vara-green-hover);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.map-showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-showcase-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-showcase-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--vara-white);
    letter-spacing: 0.02em;
}

.map-zoom-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: rgba(176, 210, 54, 0.18);
    border: 1px solid rgba(176, 210, 54, 0.4);
    border-radius: 999px;
    color: var(--vara-lime);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    min-width: 44px;
    justify-content: center;
}

.btn-map-expand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--vara-white);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-map-expand:hover {
    background: var(--vara-lime);
    color: var(--vara-ink);
    border-color: var(--vara-lime);
    transform: translateY(-1px);
}

/* Map Image Wrapper & Stage */
.map-image-wrapper {
    position: relative;
    width: 100%;
    background: #FFFFFF;
    overflow: hidden;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: 380px;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
}

.map-image-wrapper.is-zoomed {
    cursor: grab;
}

.map-image-wrapper.is-dragging {
    cursor: grabbing !important;
}

/* Floating Zoom Controls */
.roadmap-zoom-controls {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 36, 22, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 4px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(176, 210, 54, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.roadmap-ctrl-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    background: transparent;
    color: var(--vara-white);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.roadmap-ctrl-btn:hover {
    background: var(--vara-lime);
    color: var(--vara-ink);
    border-color: var(--vara-lime);
}

.roadmap-ctrl-btn:active {
    transform: scale(0.94);
}

.roadmap-ctrl-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.roadmap-ctrl-btn.roadmap-reset-btn {
    width: auto;
    padding: 0 9px;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 600;
}

/* Roadmap Stage Container */
.roadmap-stage {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transform-origin: center center;
    transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1);
    will-change: transform;
}

.connectivity-roadmap-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.map-hover-hint {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 36, 22, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(176, 210, 54, 0.4);
    border-radius: 999px;
    color: var(--vara-white);
    font-size: 11.5px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    opacity: 0.85;
    transition: all var(--transition-fast);
    pointer-events: none;
    white-space: nowrap;
    z-index: 5;
}

.map-image-wrapper:hover .map-hover-hint {
    opacity: 1;
    background: var(--vara-green);
    border-color: var(--vara-lime);
    color: var(--vara-white);
    transform: translateX(-50%) translateY(-2px);
}

/* Corridors List Column */
.connectivity-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.connectivity-corridors-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.corridors-title {
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 700;
    color: var(--vara-white);
    letter-spacing: -0.02em;
}

/* Connectivity Item Cards List */
.connectivity-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.connectivity-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.connectivity-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--vara-lime);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.connectivity-item:hover,
.connectivity-item.active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(176, 210, 54, 0.5);
    transform: translateX(6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.connectivity-item:hover::before,
.connectivity-item.active::before {
    opacity: 1;
}

.connectivity-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(176, 210, 54, 0.12);
    color: var(--vara-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all var(--transition-fast);
    border: 1px solid rgba(176, 210, 54, 0.2);
}

.connectivity-item:hover .connectivity-icon-box,
.connectivity-item.active .connectivity-icon-box {
    background: var(--vara-lime);
    color: var(--vara-ink);
    border-color: var(--vara-lime);
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 6px 18px rgba(176, 210, 54, 0.3);
}

.connectivity-item-content {
    flex-grow: 1;
}

.connectivity-item-header {
    margin-bottom: 4px;
}

.connectivity-title {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--vara-white);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.connectivity-desc {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 400;
}

/* Connectivity Quick CTA */
.connectivity-quick-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px dashed rgba(176, 210, 54, 0.4);
    border-radius: var(--radius-md);
    margin-top: 8px;
}

.cta-inner-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cta-inner-text strong {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--vara-white);
}

.cta-inner-text span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
}

.connectivity-quick-cta .btn {
    height: 42px;
    padding: 0 18px;
    font-size: 13.5px;
    flex-shrink: 0;
    background: var(--vara-lime);
    color: var(--vara-ink);
    border-color: var(--vara-lime);
}

.connectivity-quick-cta .btn:hover {
    background: #c3e547;
    border-color: #c3e547;
    box-shadow: 0 6px 18px rgba(176, 210, 54, 0.35);
}

/* --------------------------------------------------------------------------
   18. Amenities Section (Editorial Grid Layout)
   -------------------------------------------------------------------------- */
.amenities-section {
    background: var(--vara-white);
    border-top: 1px solid var(--vara-border);
    position: relative;
}

.amenities-header {
    margin-bottom: 48px;
}

.amenities-heading {
    color: var(--vara-ink);
}

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

@media (min-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

.amenity-card {
    background: var(--vara-white);
    padding: 32px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--vara-border);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    box-shadow: 0 4px 20px rgba(17, 21, 19, 0.02);
}

.amenity-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--vara-lime);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    transition: width var(--transition-fast);
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(0, 88, 55, 0.25);
}

.amenity-card:hover::before {
    width: 100%;
}

.amenity-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.amenity-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 88, 55, 0.06);
    color: var(--vara-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.amenity-card:hover .amenity-icon-wrapper {
    background: var(--vara-green);
    color: var(--vara-white);
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 6px 16px rgba(0, 88, 55, 0.2);
}

.amenity-icon {
    width: 24px;
    height: 24px;
}

.amenity-number {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--vara-green);
    display: block;
    margin-bottom: 0;
}

.amenity-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--vara-ink);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.amenity-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--vara-slate);
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   19. Section 19: A Day Here (Horizontal Track & Storytelling)
   -------------------------------------------------------------------------- */
.day-here-section {
    background: var(--vara-green);
    color: var(--vara-white);
    position: relative;
    overflow: hidden;
}

.day-here-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 44px;
}

.day-here-heading {
    color: var(--vara-white);
    max-width: 720px;
    margin-bottom: 0;
}

.day-here-track-wrapper {
    width: 100%;
    position: relative;
}

.day-here-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-inline: max(var(--page-padding), calc((100% - var(--container-width)) / 2));
    scroll-padding-inline: max(var(--page-padding), calc((100% - var(--container-width)) / 2));
    padding-bottom: 32px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.day-here-track::-webkit-scrollbar {
    display: none;
}

.day-card {
    flex: 0 0 360px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.day-card:hover {
    transform: translateY(-6px);
    border-color: var(--vara-lime);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.day-card-image {
    width: 100%;
    height: clamp(180px, 22vw, 220px);
    overflow: hidden;
    position: relative;
}

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

.day-card:hover .day-card-image img {
    transform: scale(1.06);
}

.day-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.day-card-meta {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.day-card-number {
    font-size: 15px;
    font-weight: 700;
    color: var(--vara-lime);
    letter-spacing: 0.05em;
}

.day-card-title {
    font-size: clamp(18px, 1.5vw, 20px);
    font-weight: 600;
    line-height: 1.35;
    color: var(--vara-white);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.day-card-desc {
    font-size: clamp(13.5px, 1.1vw, 14px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 400;
}

.day-here-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.day-here-progress {
    flex: 1;
    max-width: 320px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
}

.day-here-progress-bar {
    width: 20%;
    height: 100%;
    background: var(--vara-lime);
    transition: width 300ms ease;
}

.day-here-arrows {
    display: flex;
    gap: 12px;
}

.day-here-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--vara-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.day-here-arrow:hover {
    background: var(--vara-lime);
    color: var(--vara-ink);
    border-color: var(--vara-lime);
}

/* --------------------------------------------------------------------------
   20. Weekend Home Section
   -------------------------------------------------------------------------- */
.weekend-home-section {
    background: var(--vara-white);
    position: relative;
    overflow: hidden;
}

.weekend-home-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.weekend-home-heading {
    margin-bottom: 24px;
    color: var(--vara-ink);
}

.weekend-home-desc {
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--vara-slate);
    margin-bottom: 36px;
    max-width: 540px;
}

.weekend-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.weekend-spec-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--vara-white);
    border: 1px solid var(--vara-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.weekend-spec-item:hover {
    border-color: var(--vara-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.weekend-spec-item .spec-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(0, 88, 55, 0.08);
    color: var(--vara-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.weekend-spec-item:hover .spec-icon {
    background: var(--vara-green);
    color: var(--vara-white);
}

.weekend-spec-item .spec-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--vara-ink);
    letter-spacing: -0.01em;
}

.weekend-home-cta {
    margin-top: 12px;
}

.weekend-home-image-col {
    position: relative;
}

.weekend-home-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 20px 50px rgba(17, 21, 19, 0.12);
    border: 1px solid var(--vara-border);
}

.weekend-home-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --------------------------------------------------------------------------
   21 & 44. Master Plan Section (Interactive Layout & Blueprint Controller)
   -------------------------------------------------------------------------- */
.master-plan-section {
    background: var(--vara-green);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    color: var(--vara-white);
}

.master-plan-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 32px;
}

.master-plan-heading {
    color: var(--vara-white);
    margin-bottom: 0;
}

.master-plan-lead {
    font-size: 16.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    max-width: 520px;
    margin: 0;
}

/* Toolbar & Filters Bar */
.master-plan-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    width: 100%;
}

.plot-filters-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}

.plot-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.24);
    border-radius: 30px;
    font-family: var(--font-primary);
    font-size: 13.5px;
    font-weight: 700;
    color: #FFFFFF;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all var(--transition-fast);
}

.plot-filter-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-1px);
    color: #FFFFFF;
}

.filter-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.dot-all { background: #FFFFFF; }
.dot-available { background: #BFE340; }
.dot-estate { background: #F6BA35; }
.dot-booked { background: #FF8F80; }

.plot-filter-btn.active {
    background: #FFFFFF;
    color: var(--vara-ink);
    border-color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.plot-filter-btn.active .dot-all {
    background: var(--vara-ink);
}

.master-plan-quick-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-plan-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--vara-lime);
    color: var(--vara-ink);
    border: none;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-plan-action:hover {
    background: #c3e83f;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Main Grid Layout */
.master-plan-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: clamp(24px, 3.5vw, 40px);
    align-items: start;
}

/* Master Map Interactive Container */
.master-map-container {
    background: var(--vara-white);
    border: 1px solid var(--vara-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.master-plan-canvas-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--vara-green-hover);
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    min-height: 480px;
    cursor: default;
}

.master-plan-canvas-wrapper.is-zoomed {
    cursor: grab;
}

.master-plan-canvas-wrapper.is-dragging {
    cursor: grabbing !important;
}

/* Floating Zoom Controls */
.map-controls {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 4px;
    border-radius: var(--radius-md);
    border: 1px solid var(--vara-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.map-ctrl-btn {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    border: none;
    background: transparent;
    color: var(--vara-ink);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.map-ctrl-btn.reset-btn {
    width: auto;
    padding: 0 10px;
    font-size: 12.5px;
    font-weight: 600;
}

.map-ctrl-btn:hover {
    background: var(--vara-green);
    color: var(--vara-white);
}

.map-ctrl-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Blueprint Zoom Stage */
.blueprint-zoom-container {
    position: relative;
    width: 100%;
    line-height: 0;
    transform-origin: center center;
    transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1);
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
}

.master-plan-blueprint-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Interactive Pins Layer */
.plot-pins-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Hotspot Pin Element */
.plot-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    cursor: pointer;
    z-index: 10;
    outline: none;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.pin-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    padding: 0 7px;
    border-radius: 14px;
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 800;
    color: #FFFFFF;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    border: 2px solid #FFFFFF;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

/* Pin Color Schemes */
.pin-available .pin-badge {
    background: var(--vara-green);
}

.pin-estate .pin-badge {
    background: #2b7a78;
    border-color: var(--vara-lime);
}

.pin-booked .pin-badge {
    background: #c84b31;
    opacity: 0.85;
}

.pin-amenity .pin-badge {
    background: #1b608a;
    border-color: #79d0f7;
    font-size: 10.5px;
    gap: 4px;
}

/* Pin Hover State */
.plot-pin:hover {
    z-index: 15;
    transform: translate(-50%, -50%) scale(1.18);
}

.plot-pin:hover .pin-badge {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    border-color: #FFFFFF;
}

/* Pin Selected State */
.plot-pin.selected {
    z-index: 25;
    transform: translate(-50%, -50%) scale(1.28);
}

.plot-pin.selected .pin-badge {
    background: var(--vara-lime) !important;
    color: var(--vara-ink) !important;
    border-color: #FFFFFF !important;
    box-shadow: 0 0 0 4px rgba(176, 210, 54, 0.5), 0 8px 24px rgba(0, 0, 0, 0.6);
    font-weight: 900;
}

/* Dimmed state when filtered */
.plot-pin.filter-dimmed {
    opacity: 0.12 !important;
    filter: grayscale(100%);
    pointer-events: none;
}

/* Map Legend */
.master-map-legend {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 14px 18px;
    background: #FBFBFA;
    border-top: 1px solid var(--vara-border);
    gap: 12px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.legend-box {
    width: 13px;
    height: 13px;
    border-radius: 3px;
    flex-shrink: 0;
}

.available-box { background: var(--vara-green); }
.estate-box { background: #2b7a78; border: 1.5px solid var(--vara-lime); }
.amenity-box { background: #1b608a; }
.road-box { background: #3a423d; }

.legend-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--vara-slate);
}

/* Quick Plot Selector Strip */
.plot-quick-selector {
    padding: 14px 18px;
    background: var(--vara-white);
    border-top: 1px solid var(--vara-border);
}

.quick-selector-header {
    font-size: 12px;
    font-weight: 700;
    color: var(--vara-slate);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.quick-selector-header i {
    color: var(--vara-green);
}

.plot-chips-tray {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-height: 120px;
    overflow-y: auto;
    padding-bottom: 4px;
}

.plot-chip-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: var(--vara-paper);
    border: 1px solid var(--vara-border);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    color: var(--vara-ink);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.plot-chip-btn small {
    font-size: 10px;
    color: var(--vara-slate);
    font-weight: 500;
}

.plot-chip-btn:hover {
    background: #E8EDE4;
    border-color: var(--vara-green);
    color: var(--vara-green);
}

.plot-chip-btn.active {
    background: var(--vara-green);
    border-color: var(--vara-green);
    color: #FFFFFF;
}

.plot-chip-btn.active small {
    color: var(--vara-lime);
}

.plot-chip-btn.chip-booked {
    border-color: rgba(200, 75, 49, 0.3);
}

.plot-chip-btn.chip-booked small {
    color: #c84b31;
}

.plot-chip-btn.chip-amenity {
    background: rgba(27, 96, 138, 0.08);
    border-color: rgba(27, 96, 138, 0.3);
    color: #1b608a;
}

/* Detail Panel Styling */
.master-detail-column {
    position: sticky;
    top: 90px;
}

.plot-detail-card {
    background: var(--vara-white);
    border: 1px solid var(--vara-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all var(--transition-base);
    color: var(--vara-ink);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.panel-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-plot-badge {
    font-size: 24px;
    font-weight: 800;
    color: var(--vara-ink);
    letter-spacing: -0.02em;
}

.panel-status-pill {
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.badge-available {
    background: rgba(0, 88, 55, 0.12);
    color: var(--vara-green);
    border: 1px solid rgba(0, 88, 55, 0.3);
}

.badge-booked {
    background: rgba(200, 75, 49, 0.12);
    color: #A83822;
    border: 1px solid rgba(200, 75, 49, 0.35);
}

.badge-amenity {
    background: rgba(27, 96, 138, 0.12);
    color: #1b608a;
    border: 1px solid rgba(27, 96, 138, 0.3);
}

.corner-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--vara-green);
    background: var(--vara-paper);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--vara-border);
}

/* Panel Metric Boxes */
.panel-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.metric-box {
    background: var(--vara-paper);
    padding: 12px 8px;
    border-radius: var(--radius-md);
    border: 1px solid var(--vara-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-val {
    font-size: 17px;
    font-weight: 800;
    color: var(--vara-green);
    line-height: 1.2;
}

.metric-unit {
    font-size: 10px;
    font-weight: 700;
    color: var(--vara-slate);
    letter-spacing: 0.04em;
    margin-top: 4px;
}

/* Dimensions */
.panel-pricing-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--vara-border);
    gap: 10px;
    flex-wrap: wrap;
}

.dimensions-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--vara-slate);
    background: var(--vara-paper);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--vara-border);
}

.panel-road-access {
    font-size: 12.5px;
    color: var(--vara-slate);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 88, 55, 0.05);
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(0, 88, 55, 0.12);
}

.panel-road-access i {
    color: var(--vara-green);
}

.panel-road-access strong {
    color: var(--vara-ink);
}

.panel-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--vara-slate);
    margin: 0;
}

/* Nearby Chips */
.panel-nearby-section .nearby-heading {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--vara-ink);
    margin-bottom: 8px;
}

.nearby-chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.nearby-chip {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--vara-green);
    background: rgba(0, 88, 55, 0.07);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 88, 55, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nearby-chip i {
    font-size: 10px;
}

.panel-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.panel-actions .btn {
    width: 100%;
    justify-content: center;
}

.btn-secondary-outline {
    background: transparent;
    color: var(--vara-green);
    border: 1.5px solid var(--vara-green);
    padding: 10px 16px;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary-outline:hover {
    background: var(--vara-green);
    color: #FFFFFF;
}

/* Master Plan Infrastructure Bento Highlights */
.master-plan-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.plan-highlight-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--transition-fast);
}

.plan-highlight-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.highlight-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--vara-lime);
    color: var(--vara-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.highlight-title {
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.highlight-text {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Fullscreen Master Plan Lightbox Modal */
.master-plan-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease, visibility 300ms ease;
}

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

.master-plan-modal .modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 21, 19, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.master-plan-modal .modal-container {
    position: relative;
    z-index: 10;
    width: min(94vw, 1320px);
    height: 90vh;
    max-height: 90vh;
    background: #0f1813;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    gap: 16px;
    flex-shrink: 0;
}

.modal-title {
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 2px 0;
}

.modal-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

.modal-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-close-btn:hover {
    background: #ff5e4d;
    border-color: #ff5e4d;
    transform: rotate(90deg);
}

.modal-body {
    padding: 16px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-height: 0;
}

.modal-blueprint-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   22. GALLERY SECTION & LIGHTBOX (design.md Section 22)
   ========================================================================== */
.gallery-section {
    background: var(--vara-white);
    position: relative;
}

.gallery-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 36px auto;
}

.section-tag,
.section-tag-sub,
.eyebrow {
    display: none !important;
}

.gallery-heading {
    margin-bottom: 16px;
}

.gallery-lead {
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--vara-slate);
}

/* Category Filter Links (Editorial Text Links, No Pills) */
.gallery-filters-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.gallery-filter-btn {
    background: transparent;
    border: none;
    padding: 6px 0;
    color: var(--vara-slate);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: color var(--transition-fast), border-color var(--transition-fast);
    position: relative;
    border-bottom: 2px solid transparent;
    display: inline-flex;
    align-items: center;
}

.gallery-filter-btn:hover {
    color: var(--vara-green);
}

.gallery-filter-btn.active {
    color: var(--vara-green);
    font-weight: 700;
    border-bottom-color: var(--vara-green);
}

.filter-sep {
    color: var(--vara-border);
    font-size: 16px;
    user-select: none;
}

/* Bento Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(230px, 28vh, 270px);
    grid-auto-flow: dense;
    gap: 20px;
}

/* Bento Grid Spans */
.gallery-item.bento-hero {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.bento-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item.bento-standard {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item.bento-full {
    grid-column: span 4;
    grid-row: span 1;
}

/* Grid Spans Fallback */
.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }
.row-span-2 { grid-row: span 2; }

.gallery-item {
    cursor: pointer;
    outline: none;
    border: none;
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform var(--transition-base), box-shadow var(--transition-base), opacity var(--transition-base);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.gallery-item.is-collapsed {
    display: none !important;
}

.gallery-load-more-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    width: 100%;
}

.gallery-load-more-wrapper .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 40px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.gallery-load-more-wrapper .btn svg {
    transition: transform var(--transition-fast);
}


.gallery-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg, 16px);
    background: #141B17;
    border: none;
    outline: none;
}

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

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

/* Card Hover Overlay */
.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(17, 21, 19, 0.88) 0%,
            rgba(17, 21, 19, 0.35) 50%,
            rgba(17, 21, 19, 0.05) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-card-overlay,
.gallery-item:focus-visible .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-content {
    color: var(--vara-white);
}

.gallery-item-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--vara-lime);
    background: rgba(0, 0, 0, 0.45);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.gallery-item-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--vara-white);
    margin: 0 0 4px 0;
}

.gallery-item-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.gallery-zoom-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vara-white);
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.gallery-item:hover .gallery-zoom-icon {
    transform: scale(1.1);
    background: var(--vara-green);
    border-color: var(--vara-green);
}

/* ==========================================
   LIGHTBOX MODAL
   ========================================== */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.gallery-lightbox.is-active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 21, 19, 0.94);
    backdrop-filter: blur(16px);
}

.lightbox-container {
    position: relative;
    z-index: 2001;
    width: min(92vw, 1100px);
    height: min(88vh, 760px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-content-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    max-height: 100%;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: clamp(280px, 64vh, 620px);
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption-bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    gap: 16px;
}

.lightbox-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lightbox-info .gallery-category-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--vara-lime);
    margin-bottom: 2px;
}

.lightbox-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--vara-white);
    margin: 0;
}

.lightbox-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.lightbox-counter {
    font-size: 13px;
    font-weight: 700;
    color: var(--vara-lime);
    letter-spacing: 0.06em;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

/* Lightbox Action Buttons */
.lightbox-close-btn,
.lightbox-nav-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--vara-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 2002;
    outline: none;
}

.lightbox-close-btn:hover,
.lightbox-nav-btn:hover {
    background: var(--vara-lime);
    color: var(--vara-ink);
    border-color: var(--vara-lime);
    transform: scale(1.08);
}

.lightbox-close-btn:focus-visible,
.lightbox-nav-btn:focus-visible {
    box-shadow: 0 0 0 3px var(--vara-lime);
}

.lightbox-close-btn {
    top: 10px;
    right: 10px;
}

.lightbox-prev-btn {
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev-btn:hover {
    transform: translateY(-50%) scale(1.08);
}

.lightbox-next-btn {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next-btn:hover {
    transform: translateY(-50%) scale(1.08);
}

/* ==========================================
   23. ABOUT VARA SECTION (DIRECTOR'S PERSPECTIVE)
   ========================================== */
.about-section {
    position: relative;
    overflow: hidden;
    color: var(--vara-white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/aerial_masterplan.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.about-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 34, 21, 0.94) 0%, rgba(1, 18, 11, 0.97) 100%);
    z-index: 1;
}

.about-card-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: clamp(24px, 5vw, 56px);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    max-width: 1100px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(280px, 340px) 1fr;
    gap: clamp(32px, 5vw, 60px);
    align-items: center;
}

.about-founder-card {
    width: 100%;
}

.about-founder-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    max-height: 420px;
    background: #111513;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.about-founder-card:hover .about-founder-img-wrapper {
    transform: translateY(-4px);
    border-color: var(--vara-lime);
}

.about-founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform var(--transition-slow);
}

.about-founder-card:hover .about-founder-img {
    transform: scale(1.04);
}

.founder-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(14, 22, 18, 0.82);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(163, 230, 53, 0.3);
    padding: 10px 16px;
    border-radius: 12px;
    text-align: center;
}

.founder-badge span {
    font-size: 13px;
    font-weight: 700;
    color: var(--vara-lime);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-content {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.quote-icon-bg {
    position: absolute;
    top: -24px;
    right: 0;
    color: rgba(163, 230, 53, 0.12);
    pointer-events: none;
}

.about-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--vara-lime);
    margin-bottom: 12px;
}

.about-heading {
    font-size: clamp(32px, 4.2vw, 56px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--vara-white);
    margin-bottom: 24px;
}

.about-message {
    font-size: 16.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 32px;
}

.about-message strong {
    color: var(--vara-lime);
    font-weight: 700;
}

.about-submessage {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.78);
}

.about-signature-block {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.founder-full-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--vara-white);
    margin: 0 0 2px 0;
}

.signature-company {
    font-size: 13px;
    color: var(--vara-lime);
    font-weight: 600;
}

/* ==========================================================================
   23B. FAQ SECTION
   ========================================================================== */
.faq-section {
    background: var(--vara-paper);
    border-top: 1px solid var(--vara-border);
}

.faq-header {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

.faq-heading {
    margin-bottom: 16px;
}

.faq-subhead {
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--vara-slate);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--vara-white);
    border: 1px solid var(--vara-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item[open] {
    border-color: var(--vara-green);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--vara-ink);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition-fast);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    content: "";
}

.faq-item:hover .faq-question,
.faq-item[open] .faq-question {
    color: var(--vara-green);
}

.faq-question:focus-visible {
    outline: 2px solid var(--vara-green);
    outline-offset: -2px;
}

.faq-toggle-icon {
    position: relative;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: "";
    position: absolute;
    background: var(--vara-green);
    transition: transform var(--transition-fast);
}

.faq-toggle-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-toggle-icon::after {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item[open] .faq-toggle-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

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

.faq-answer p {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--vara-slate);
}

.faq-answer-link {
    color: var(--vara-green);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-answer-link:hover {
    color: var(--vara-green-hover);
}

/* ==========================================================================
   24 - 27. ENQUIRY SECTION & FORM DESIGN (design.md Section 24-27)
   ========================================================================== */
.enquiry-section {
    background: var(--vara-white);
    border-top: 1px solid var(--vara-border);
    position: relative;
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.enquiry-heading {
    margin-bottom: 20px;
    color: var(--vara-ink);
}

.enquiry-subhead {
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--vara-slate);
    margin-bottom: 36px;
    max-width: 480px;
}

.enquiry-contact-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--vara-white);
    border: 1px solid var(--vara-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 10px 30px rgba(17, 21, 19, 0.04);
    margin-bottom: 32px;
}

.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 88, 55, 0.08);
    color: var(--vara-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.contact-phones {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
}

.contact-sep {
    color: var(--vara-slate);
    font-weight: 500;
    user-select: none;
}

.contact-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--vara-slate);
    letter-spacing: 0.02em;
}

.contact-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--vara-ink);
    text-decoration: none;
    transition: color var(--transition-fast);
    line-height: 1.45;
    word-break: break-word;
    overflow-wrap: break-word;
}

a.contact-value {
    display: inline;
    white-space: nowrap;
}

a.contact-value:hover {
    color: var(--vara-green);
}

.enquiry-contact-link {
    margin-top: 8px;
}

/* Form Styles (design.md Section 25) */
.enquiry-form-wrapper {
    background: var(--vara-white);
    border: 1px solid var(--vara-border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 48px);
    box-shadow: var(--shadow-soft);
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    width: 100%;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: 0;
}

.form-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--vara-slate);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--vara-green);
}

/* Editorial Underline Inputs */
.form-input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 0;
    border-bottom: 1.5px solid var(--vara-border);
    background: transparent;
    padding: 14px 0;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: var(--vara-ink);
    outline: none;
    border-radius: 0;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
    -webkit-appearance: none;
    appearance: none;
}

.form-input::placeholder {
    color: var(--vara-muted);
    font-weight: 400;
}

.form-input:focus {
    border-color: var(--vara-green);
}

.form-group.is-invalid .form-input {
    border-color: #d93025;
}

.form-error {
    display: none;
    font-size: 12px;
    font-weight: 600;
    color: #d93025;
    margin-top: 6px;
}

.form-group.is-invalid .form-error {
    display: block;
}

/* Custom Select & Date Styling */
.select-wrapper {
    position: relative;
    width: 100%;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 28px;
}

input[type="date"].form-input {
    min-height: 48px;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--vara-slate);
}

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

/* Captcha wrapper for responsive fit on small screens */
.captcha-wrapper {
    width: 100%;
    overflow: hidden;
}

.g-recaptcha {
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
}

/* Form Actions (design.md Section 26) */
.form-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.btn-submit {
    height: 52px;
    padding: 0 36px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
}

/* Link Arrow Component (design.md Section 27) */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--vara-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.link-arrow span {
    display: inline-block;
    transition: transform var(--transition-fast);
}

.link-arrow:hover span {
    transform: translateX(5px);
}

/* Form Success Notification Message */
.form-success-msg {
    display: none;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(0, 88, 55, 0.06);
    border: 1px solid var(--vara-green);
    border-radius: var(--radius-md);
    margin-top: 16px;
}

.form-success-msg.is-visible {
    display: flex;
    animation: fadeIn 400ms ease forwards;
}

.success-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--vara-green);
    color: var(--vara-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--vara-green);
    margin: 0 0 4px 0;
}

.success-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--vara-ink);
    margin: 0;
}

/* ==========================================================================
   29. FOOTER SECTION (design.md Section 29)
   ========================================================================== */
.site-footer {
    background: #111215;
    color: var(--vara-white);
    padding: clamp(60px, 6vw, 90px) 0 clamp(40px, 4vw, 60px) 0;
    width: 100%;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.footer-card-container {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    overflow: visible;
}

/* Footer Top Invite Header */
.footer-top-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-top-left {
    flex: 1;
}

.footer-invite-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin: 0;
}

.footer-invite-title span {
    color: #ffffff;
}

.footer-top-right {
    flex: 0 1 460px;
}

.footer-invite-desc {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Footer Polaroid Scattered Photo Gallery */
.footer-polaroid-gallery {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    width: 100%;
    margin: 30px 0 60px 0;
    padding: 40px 10px 20px 10px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.footer-polaroid-gallery.is-dragging {
    cursor: grabbing !important;
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
}

.footer-polaroid-gallery img {
    -webkit-user-drag: none;
    pointer-events: none;
}

.polaroid-card {
    background: #ffffff;
    padding: 8px 8px 22px 8px;
    border-radius: 4px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
    transform: translateY(var(--y, 0px)) rotate(var(--rot, 0deg));
    will-change: transform;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease;
    cursor: pointer;
    margin: 0 -10px;
    flex: 1 1 0;
    min-width: 120px;
    max-width: 200px;
    position: relative;
    z-index: 1;
}

.polaroid-card:hover {
    transform: translateY(-16px) scale(1.12) rotate(0deg) !important;
    z-index: 25 !important;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.65);
}

.polaroid-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3.2;
    overflow: hidden;
    border-radius: 2px;
    background: #222;
}

.polaroid-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease;
}

.polaroid-card:hover .polaroid-img-wrap img {
    filter: brightness(1.05);
}

/* Tall Polaroid Variant */
.card-tall {
    margin-top: -30px;
}

.card-tall .polaroid-img-wrap {
    aspect-ratio: 3 / 4;
}

/* Address Card Variant */
.card-address {
    background: var(--vara-green);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px 10px;
    aspect-ratio: 4 / 3.4;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.address-card-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
    width: 100%;
    color: #ffffff;
}

.address-line {
    font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
    font-size: 10px;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.address-line.address-main {
    font-weight: 600;
    font-size: 10.5px;
}

.address-line.address-sub {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2px;
    font-size: 9.5px;
}

.address-contact-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 2px;
}

.address-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 9.5px;
    font-weight: 600;
    color: #ffffff;
    font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.address-contact-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    color: #0d493e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8.5px;
    flex-shrink: 0;
}

.address-contact-link {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.address-contact-link:hover {
    opacity: 0.85;
    text-decoration: underline;
}

/* Footer Main Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 2fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
    padding-top: 32px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-link img {
    filter: brightness(0) invert(1);
    height: 58px;
    width: auto;
}

.footer-brand-tagline {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0;
}

.tagline-mute {
    color: rgba(255, 255, 255, 0.35);
}

.footer-brand-subtext {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin: 8px 0 0 0;
    max-width: 280px;
}

/* Navigation Columns */
.footer-nav-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 48px);
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 20px 0;
}

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

.footer-logo-link {
    display: inline-block;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.footer-logo-link:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.footer-links a {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color var(--transition-fast), transform var(--transition-fast);
    font-weight: 400;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--vara-lime);
    transform: translateX(4px);
}

/* Footer Social Icons (Icons Only) */
.footer-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.footer-social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-social-links a:hover {
    background: var(--vara-lime);
    border-color: var(--vara-lime);
    color: var(--vara-ink);
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(176, 210, 54, 0.35);
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 36px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.copyright-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-location-text {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.footer-designer-link {
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-designer-link:hover {
    opacity: 0.95;
}

.footer-designer-credit {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-designer-credit .designer-brand {
    color: var(--vara-white);
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-designer-link:hover .designer-brand,
.footer-designer-credit:hover .designer-brand {
    color: var(--vara-lime);
}

/* Responsive Styles for Footer */
@media (max-width: 1024px) {
    .footer-top-section {
        flex-direction: column;
        gap: 16px;
    }

    .footer-top-right {
        flex: 1 1 auto;
    }

    .footer-polaroid-gallery {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        padding: 40px 20px 25px 20px;
        margin: 20px 0 40px 0;
        gap: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
    }

    .footer-polaroid-gallery::-webkit-scrollbar {
        height: 6px;
    }

    .footer-polaroid-gallery::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 3px;
    }

    .footer-polaroid-gallery::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.35);
        border-radius: 3px;
    }

    .footer-polaroid-gallery::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.6);
    }

    .polaroid-card {
        flex: 0 0 170px;
        min-width: 170px;
        max-width: 170px;
        scroll-snap-align: start;
        margin: 0;
        --y: 0px !important;
    }

    .card-tall {
        margin-top: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .footer-card-container {
        padding: 0;
        border-radius: 0;
    }

    .footer-nav-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

/* ==========================================
   BACK TO TOP BUTTON WITH SCROLL INDICATOR
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--vara-green);
    color: var(--vara-paper);
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 950;
    box-shadow: 0 8px 24px rgba(0, 88, 55, 0.25), 0 2px 8px rgba(17, 21, 19, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.85);
    transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
                background-color 200ms ease,
                box-shadow 200ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background-color: var(--vara-green-hover);
    box-shadow: 0 12px 32px rgba(0, 88, 55, 0.4), 0 4px 12px rgba(17, 21, 19, 0.2);
    transform: translateY(-4px) scale(1.06);
}

.back-to-top:active {
    transform: translateY(-1px) scale(0.98);
}

.back-to-top:focus-visible {
    outline: 2px solid var(--vara-lime);
    outline-offset: 4px;
}

.back-to-top-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
}

.back-to-top-circle-bg {
    stroke: rgba(255, 255, 255, 0.18);
    stroke-width: 2.5;
    fill: none;
}

.back-to-top-circle-progress {
    stroke: var(--vara-lime);
    stroke-width: 2.5;
    stroke-dasharray: 132;
    stroke-dashoffset: 132;
    stroke-linecap: round;
    fill: none;
    transition: stroke-dashoffset 80ms linear;
}

.back-to-top-arrow {
    position: relative;
    z-index: 2;
    transition: transform 200ms ease;
}

.back-to-top:hover .back-to-top-arrow {
    transform: translateY(-2px);
}

/* ==========================================
   WHY CHOOSE US (STATS STRIP)
   ========================================== */
.hero-stats-strip {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at 80% 10%, rgba(200, 230, 245, 0.25) 0%, rgba(185, 255, 218, 0.15) 30%, rgba(255, 255, 255, 1) 70%), var(--bg-site, #ffffff);
  border-bottom: 1px solid var(--border-light, #e2e8f0);
  padding: 100px 2rem 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-stats-strip::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-image: url('../Assets/Img/bg-overlay-buildings.webp');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  opacity: 0.14;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 80%);
  pointer-events: none;
  z-index: 1;
}

.stats-new-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.stats-new-left {
  display: flex;
  justify-content: center;
  width: 100%;
}

.stats-new-tag {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary, var(--vara-green));
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(10, 54, 92, 0.04);
  border: 1px solid rgba(10, 54, 92, 0.08);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(10, 54, 92, 0.02);
}

.stats-new-tag .tag-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-green-light, var(--vara-lime));
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-green-light, var(--vara-lime));
  display: inline-block;
}

.stats-new-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.stats-new-desc {
  font-family: var(--font-primary);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-primary, var(--vara-green));
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
  max-width: 1000px;
  text-align: center;
  width: 100%;
}

.stats-new-desc .reveal-span {
  display: inline;
}

.stats-new-desc .muted-part {
  font-weight: 400;
}

.stats-new-desc .highlight-part {
  font-weight: 900;
}

.muted-part .reveal-char {
  color: #e2e8f0;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.muted-part .reveal-char.active {
  color: var(--text-muted, #64748b);
}

.highlight-part .reveal-char {
  color: #cbd5e1;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-part .reveal-char.active {
  color: var(--color-primary, var(--vara-green));
}

.reveal-char {
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 100%;
}

.stats-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.45) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 20px;
  border: 1px solid rgba(10, 54, 92, 0.07);
  box-shadow: 0 8px 32px -10px rgba(10, 54, 92, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, transparent);
  transition: background 0.4s ease;
}

.stats-card:nth-child(1):hover::before {
  background: linear-gradient(90deg, var(--color-green-light, #4bb749), transparent);
}
.stats-card:nth-child(2):hover::before {
  background: linear-gradient(90deg, var(--color-green-dark, #0d5e31), transparent);
}
.stats-card:nth-child(3):hover::before {
  background: linear-gradient(90deg, var(--color-blue, #008ece), transparent);
}

.stats-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-color: rgba(10, 54, 92, 0.15);
  box-shadow: 0 20px 40px -15px rgba(10, 54, 92, 0.12);
}

.stats-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 2.25rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-card:nth-child(1) .stats-card-icon {
  background-color: rgba(75, 183, 73, 0.08);
  color: var(--color-green-light, #4bb749);
  border: 1px solid rgba(75, 183, 73, 0.15);
}
.stats-card:nth-child(2) .stats-card-icon {
  background-color: rgba(13, 94, 49, 0.08);
  color: var(--color-green-dark, #0d5e31);
  border: 1px solid rgba(13, 94, 49, 0.15);
}
.stats-card:nth-child(3) .stats-card-icon {
  background-color: rgba(0, 142, 206, 0.08);
  color: var(--color-blue, #008ece);
  border: 1px solid rgba(0, 142, 206, 0.15);
}

.stats-card:hover .stats-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.stats-card:nth-child(1):hover .stats-card-icon {
  background-color: rgba(75, 183, 73, 0.14);
  box-shadow: 0 0 15px rgba(75, 183, 73, 0.1);
}
.stats-card:nth-child(2):hover .stats-card-icon {
  background-color: rgba(13, 94, 49, 0.14);
  box-shadow: 0 0 15px rgba(13, 94, 49, 0.1);
}
.stats-card:nth-child(3):hover .stats-card-icon {
  background-color: rgba(0, 142, 206, 0.14);
  box-shadow: 0 0 15px rgba(0, 142, 206, 0.1);
}

.stats-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #0B3A69;
  stroke-width: 2;
}

.stats-card-number {
  font-family: var(--font-primary);
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--color-primary, var(--vara-green));
  line-height: 1;
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.stats-card-number span.plus {
  color: var(--color-green-light, #4bb749);
  margin-left: 4px;
  font-weight: 600;
  font-size: 2.5rem;
}

.stats-card-label {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-muted, #64748b);
  letter-spacing: 0.02em;
}

/* ==========================================
   BRAND PILLARS SECTION
   ========================================== */
.rr-pillars {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background-color: #0d1b2a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  --rr-accent-mint: #b9ffda;
  --rr-accent-blue: #c8e6f5;
  --rr-accent-green: #4bb749;
}

.rr-pillars > .container {
  max-width: var(--container-max-width, 1280px);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.rr-pillars-header {
  max-width: 800px;
  text-align: left;
}

.rr-pillars-eyebrow {
  display: inline-block;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--rr-accent-green);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.rr-pillars-heading {
  font-family: var(--font-primary);
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 3.5rem;
}

.rr-pillars-heading span {
  color: var(--color-yellow, #f59e0b);
}

.rr-pillars-subtext {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.rr-pillars-grid {
  display: flex;
  gap: 1.5rem;
  width: 100%;
}

.rr-panel {
  flex: 1 1 0;
  height: 500px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.4s ease, background-color 0.4s ease;
}

.rr-panel:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.rr-panel:focus-visible {
  outline: 2px solid var(--rr-accent-green);
  outline-offset: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.rr-panel-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(75, 183, 73, 0.07) 0%, rgba(75, 183, 73, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  z-index: 1;
}

.rr-panel.is-active .rr-panel-glow {
  opacity: 1;
}

.rr-panel-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.rr-panel-content * {
  pointer-events: auto;
}

.rr-panel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.rr-panel-num {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rr-accent-green);
}

.rr-panel-label-small {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: opacity 0.4s ease;
}

.rr-panel-title {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.rr-panel.is-active .rr-panel-title {
  color: var(--rr-accent-green);
}

.rr-panel-body {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.rr-panel.is-active .rr-panel-body {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.rr-panel-desc {
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.rr-panel-bottom {
  margin-top: auto;
  padding-top: 2rem;
}

.rr-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--rr-accent-green);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.rr-panel-cta svg {
  transition: transform 0.3s ease;
}

.rr-panel-cta:hover svg {
  transform: translateX(4px);
}

.rr-panel-artwork {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: clamp(160px, 14vw, 240px);
  height: clamp(160px, 14vw, 240px);
  pointer-events: none;
  z-index: 1;
  color: rgba(255, 255, 255, 0.35);
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 0.25;
}

.rr-panel.is-active .rr-panel-artwork {
  opacity: 0.7;
  color: var(--rr-accent-green);
}

.rr-panel-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ==========================================================================
   FLOATING CONTACT WIDGET (SOCIAL MEDIA QUICK CONTACT)
   Fixed bottom-right toggle that expands into Call / WhatsApp / Facebook /
   Twitter / Instagram / LinkedIn / YouTube quick-contact buttons.
   ========================================================================== */

.floating-contact-widget {
  position: fixed;
  right: var(--fcw-right, 24px);
  bottom: var(--fcw-bottom, 100px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}

.floating-contact-widget * {
  box-sizing: border-box;
}

/* Stack of social buttons */
.floating-contact-widget__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 12px;
}

.floating-contact-widget__item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  pointer-events: none;
}

/* Tooltip / label shown to the left of each social button */
.floating-contact-widget__tooltip {
  background: #ffffff;
  color: #239f58;
  font-family: var(--font-secondary, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 8px !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16) !important;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  order: 1;
}

.floating-contact-widget__item:hover .floating-contact-widget__tooltip,
.floating-contact-widget__link:focus-visible + .floating-contact-widget__tooltip,
.floating-contact-widget__link:focus-visible ~ .floating-contact-widget__tooltip {
  opacity: 1;
  transform: translateX(0);
}

.floating-contact-widget__link {
  order: 2;
  width: 54px;
  height: 54px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18) !important;
  transform: translateY(18px) scale(0.82);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.25s ease;
}

.floating-contact-widget__link svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.floating-contact-widget__link:hover {
  transform: translateY(0) scale(1.06);
}

.floating-contact-widget__link:active {
  transform: translateY(0) scale(0.96);
}

.floating-contact-widget__link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(10, 54, 92, 0.45), 0 10px 24px rgba(0, 0, 0, 0.18) !important;
}

/* Individual brand colors */
.floating-contact-widget__link--phone {
  background: #22c55e;
}

.floating-contact-widget__link--whatsapp {
  background: #25d366;
}

.floating-contact-widget__link--facebook {
  background: #1877f2;
}

.floating-contact-widget__link--twitter {
  background: #000000;
}

.floating-contact-widget__link--instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.floating-contact-widget__link--linkedin {
  background: #0077b5;
}

.floating-contact-widget__link--youtube {
  background: #ff0000;
}

/* Open state: reveal + stagger the buttons */
.floating-contact-widget.is-open .floating-contact-widget__link {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-contact-widget.is-open .floating-contact-widget__item:nth-child(1) .floating-contact-widget__link { transition-delay: 50ms; }
.floating-contact-widget.is-open .floating-contact-widget__item:nth-child(2) .floating-contact-widget__link { transition-delay: 95ms; }
.floating-contact-widget.is-open .floating-contact-widget__item:nth-child(3) .floating-contact-widget__link { transition-delay: 140ms; }
.floating-contact-widget.is-open .floating-contact-widget__item:nth-child(4) .floating-contact-widget__link { transition-delay: 185ms; }
.floating-contact-widget.is-open .floating-contact-widget__item:nth-child(5) .floating-contact-widget__link { transition-delay: 230ms; }
.floating-contact-widget.is-open .floating-contact-widget__item:nth-child(6) .floating-contact-widget__link { transition-delay: 275ms; }

/* On close, collapse top item first */
.floating-contact-widget__item:nth-child(6) .floating-contact-widget__link { transition-delay: 0ms; }
.floating-contact-widget__item:nth-child(5) .floating-contact-widget__link { transition-delay: 25ms; }
.floating-contact-widget__item:nth-child(4) .floating-contact-widget__link { transition-delay: 50ms; }
.floating-contact-widget__item:nth-child(3) .floating-contact-widget__link { transition-delay: 75ms; }
.floating-contact-widget__item:nth-child(2) .floating-contact-widget__link { transition-delay: 100ms; }
.floating-contact-widget__item:nth-child(1) .floating-contact-widget__link { transition-delay: 125ms; }

/* Bottom row: "Hide" label + main toggle button */
.floating-contact-widget__row {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.floating-contact-widget__hide {
  background: #ffffff;
  color: #374151;
  font-family: var(--font-secondary, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 16px;
  font-weight: 600;
  height: 38px;
  padding: 0 16px;
  border: none;
  border-radius: 12px !important;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16) !important;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.floating-contact-widget__hide:focus-visible {
  outline: 2px solid #0a365c;
  outline-offset: 2px;
}

.floating-contact-widget.is-open .floating-contact-widget__hide {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  transition-delay: 120ms;
}

.floating-contact-widget__toggle {
  position: relative;
  width: 60px;
  height: 60px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50% !important;
  border: none;
  background: var(--vara-green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  pointer-events: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22) !important;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease;
}

.floating-contact-widget__toggle:hover {
  background: var(--vara-green-hover);
  transform: scale(1.05);
}

.floating-contact-widget__toggle:active {
  transform: scale(0.96);
}

.floating-contact-widget__toggle:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(0, 88, 55, 0.45), 0 10px 30px rgba(0, 0, 0, 0.22) !important;
}

.floating-contact-widget__toggle svg {
  width: 26px;
  height: 26px;
  position: absolute;
}

.floating-contact-widget__icon-open,
.floating-contact-widget__icon-close {
  stroke: #ffffff;
  fill: none;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.floating-contact-widget__icon-close {
  opacity: 0;
  transform: rotate(-45deg) scale(0.6);
}

.floating-contact-widget.is-open .floating-contact-widget__icon-open {
  opacity: 0;
  transform: rotate(45deg) scale(0.6);
}

.floating-contact-widget.is-open .floating-contact-widget__icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* One-time gentle pulse */
.floating-contact-widget__toggle.floating-contact-widget__toggle--pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50% !important;
  background: rgba(0, 88, 55, 0.35);
  animation: floating-contact-widget-pulse 1.6s cubic-bezier(0.22, 1, 0.36, 1) 2;
  pointer-events: none;
}

@keyframes floating-contact-widget-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Media Queries for Stats, Pillars & Floating Contact Widget */
@media (max-width: 1024px) {
  .hero-stats-strip {
    min-height: auto;
    padding: 5.5rem 2rem;
  }

  .stats-new-grid {
    gap: 2.5rem;
  }

  .stats-new-desc {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    max-width: 800px;
  }

  .stats-cards-grid {
    gap: 1.5rem;
  }

  .stats-card {
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
  }

  .stats-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1.5rem;
  }

  .stats-card-icon svg {
    width: 19px;
    height: 19px;
  }

  .stats-card-number {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
  }

  .stats-card-label {
    font-size: 0.88rem;
  }

  .rr-pillars {
    height: auto;
    min-height: auto;
    display: block;
    padding: 5rem 0 4rem;
  }

  .rr-pillars > .container {
    height: auto;
    max-height: none;
    gap: 2.5rem;
    padding: 0 1.75rem;
  }

  .rr-pillars-header {
    max-width: 100%;
  }

  .rr-pillars-eyebrow {
    font-size: 0.8rem;
    margin-bottom: 0.65rem;
  }

  .rr-pillars-heading {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  .rr-pillars-subtext {
    font-size: 1rem;
    line-height: 1.65;
  }

  .rr-pillars-grid {
    flex-direction: column;
    gap: 0.75rem;
    min-height: auto;
  }

  .rr-panel {
    flex: none !important;
    width: 100%;
    height: auto;
    min-height: auto;
    border-radius: 16px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
  }

  .rr-panel.is-active {
    border-color: rgba(75, 183, 73, 0.35);
    background: rgba(75, 183, 73, 0.04);
  }

  .rr-panel:focus-visible {
    outline: 2px solid var(--color-green-light, #4bb749);
    outline-offset: 2px;
  }

  .rr-panel-content {
    height: auto;
    display: block;
    padding: 1.5rem 1.5rem 0;
  }

  .rr-panel-meta {
    gap: 0.75rem;
    margin-bottom: 0.6rem;
  }

  .rr-panel-num {
    font-size: 1rem;
    color: var(--color-green-light, #4bb749);
  }

  .rr-panel-label-small {
    display: inline-block;
    opacity: 0;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    transition: opacity 0.3s ease;
  }

  .rr-panel.is-active .rr-panel-label-small {
    opacity: 1;
  }

  .rr-panel-title {
    font-size: 1.3rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.85);
    padding-bottom: 1.25rem;
  }

  .rr-panel.is-active .rr-panel-title {
    color: var(--color-green-light, #4bb749);
    padding-bottom: 0.5rem;
  }

  .rr-panel-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: none !important;
    padding: 0;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, padding 0.4s ease;
  }

  .rr-panel.is-active .rr-panel-body {
    max-height: 260px;
    opacity: 1;
    padding: 0 0 1rem;
  }

  .rr-panel-desc {
    font-size: 0.97rem;
    line-height: 1.65;
  }

  .rr-panel-bottom {
    padding: 0;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  }

  .rr-panel.is-active .rr-panel-bottom {
    max-height: 70px;
    padding: 0 0 1.5rem;
  }

  .rr-panel-cta {
    display: inline-flex;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: none !important;
    color: var(--color-green-light, #4bb749);
    transition: opacity 0.35s ease 0.1s, max-height 0.4s ease;
  }

  .rr-panel.is-active .rr-panel-cta {
    opacity: 1;
    max-height: 40px;
  }

  .rr-panel-artwork {
    width: 90px;
    height: 90px;
    bottom: 8px;
    right: 8px;
    opacity: 0.22;
    color: rgba(255, 255, 255, 0.455);
  }

  .rr-panel.is-active .rr-panel-artwork {
    opacity: 0.4;
    color: var(--color-green-light, #4bb749);
  }

  .rr-panel-glow {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-stats-strip {
    min-height: auto;
    padding: 2.5rem 2rem;
  }

  .stats-new-grid {
    gap: 2rem;
  }

  .stats-new-desc {
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .stats-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stats-card {
    padding: 2rem 1.75rem;
    border-radius: 16px;
    align-items: center;
    text-align: center;
  }

  .stats-card-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 1.5rem;
  }

  .stats-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .stats-card-number {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    justify-content: center;
  }

  .stats-card-label {
    font-size: 0.95rem;
  }

  .rr-pillars {
    padding: 4.5rem 0 3.5rem;
  }

  .rr-pillars > .container {
    padding: 0 1.25rem;
    gap: 2rem;
  }

  .rr-pillars-heading {
    font-size: clamp(1.65rem, 6vw, 2.4rem);
  }

  .rr-pillars-subtext {
    font-size: 0.97rem;
  }

  .rr-pillars-grid {
    gap: 0.6rem;
  }

  .rr-panel-title {
    font-size: 1.2rem;
  }

  .rr-panel-content {
    padding: 1.25rem 1.25rem 0;
  }

  .rr-panel.is-active .rr-panel-body {
    padding: 0 0 0.9rem;
  }

  .rr-panel.is-active .rr-panel-bottom {
    padding: 0 0 1.25rem;
  }

  .rr-panel-artwork {
    width: 75px;
    height: 75px;
  }

  .floating-contact-widget {
    right: 16px;
    bottom: var(--fcw-bottom, calc(90px + env(safe-area-inset-bottom, 0px)));
  }

  .floating-contact-widget__toggle {
    width: 58px;
    height: 58px;
  }

  .floating-contact-widget__link {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .rr-pillars {
    padding: 4rem 0 3rem;
  }

  .rr-pillars > .container {
    padding: 0 1rem;
    gap: 1.75rem;
  }

  .rr-pillars-eyebrow {
    font-size: 0.75rem;
  }

  .rr-pillars-heading {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 0.6rem;
  }

  .rr-pillars-subtext {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .rr-pillars-grid {
    gap: 0.5rem;
  }

  .rr-panel {
    border-radius: 14px;
  }

  .rr-panel-content {
    padding: 1.1rem 1.1rem 0;
  }

  .rr-panel-num {
    font-size: 0.9rem;
  }

  .rr-panel-title {
    font-size: 1.1rem;
    padding-bottom: 1rem;
  }

  .rr-panel.is-active .rr-panel-title {
    padding-bottom: 0.5rem;
  }

  .rr-panel-desc {
    font-size: 0.9rem;
  }

  .rr-panel-body {
    padding: 0;
  }

  .rr-panel.is-active .rr-panel-body {
    max-height: 300px;
    padding: 0 0 2.25rem;
  }

  .rr-panel-bottom {
    padding: 0;
  }

  .rr-panel.is-active .rr-panel-bottom {
    padding: 0 0 1.1rem;
  }

  .rr-panel-cta {
    font-size: 0.85rem;
  }

  .rr-panel-artwork {
    width: 60px;
    height: 60px;
    opacity: 0.18;
  }

  .rr-panel.is-active .rr-panel-artwork {
    opacity: 0.32;
  }
}

@media (max-height: 560px) {
  .floating-contact-widget__stack {
    gap: 8px;
    margin-bottom: 8px;
  }

  .floating-contact-widget__toggle {
    width: 50px;
    height: 50px;
  }

  .floating-contact-widget__link {
    width: 44px;
    height: 44px;
  }

  .floating-contact-widget__link svg {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rr-panel,
  .rr-panel-body,
  .rr-panel-bottom,
  .rr-panel-cta,
  .rr-panel-artwork,
  .rr-panel-glow,
  .floating-contact-widget__link,
  .floating-contact-widget__hide,
  .floating-contact-widget__icon-open,
  .floating-contact-widget__icon-close,
  .floating-contact-widget__toggle {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    animation: none !important;
  }

  .floating-contact-widget__link,
  .floating-contact-widget.is-open .floating-contact-widget__link,
  .floating-contact-widget__hide,
  .floating-contact-widget__icon-close,
  .floating-contact-widget.is-open .floating-contact-widget__icon-open {
    transform: none !important;
  }

  .floating-contact-widget__toggle--pulse::before {
    display: none !important;
  }
}