/* ═══════════════════════════════════════════════════════════════════
   TVS EMERALD 200 FT RADIAL ROAD — MODERN LIGHT THEME STYLESHEET
   - Font Family: Inter Only (No Serif / Display)
   - Color Palette: Luminous Pure White, Slate Pearl, Deep Jewel Emerald & Warm Amber
   - High-End Architectural Layout, Systematic Alignment & Full Mobile Responsiveness
═══════════════════════════════════════════════════════════════════ */

:root {
    /* Backgrounds */
    --bg-page: #f8fafc;
    --bg-surface: #ffffff;
    --bg-subtle: #f1f5f9;
    --bg-accent-light: #f2f9eb;
    --bg-dark-section: #0e203c;

    /* Text Colors - Deep TVS Corporate Navy for Headings */
    --text-heading: #0e203c;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --text-light-muted: #94a3b8;

    /* TVS Brand Corporate Navy (From TVS in Logo) */
    --tvs-navy: #16325c;
    --tvs-navy-dark: #0e203c;
    --tvs-navy-light: #244b82;
    --tvs-navy-subtle: #f0f4f9;

    /* TVS Emerald Green Palette (From Logo Roof & Emerald Mark) */
    --emerald-dark: #24622b;
    --emerald-primary: #55941d;
    --emerald-light: #6ea324;
    --emerald-vivid: #74b127;
    --emerald-subtle: #f2f9eb;
    --emerald-border: rgba(85, 148, 29, 0.25);
    --emerald-glow: rgba(110, 163, 36, 0.22);

    /* Secondary Warm Gold / Amber Accent */
    --amber-primary: #d97706;
    --amber-light: #f59e0b;
    --amber-subtle: #fffbeb;

    /* Borders */
    --border-color: #e2e8f0;
    --border-subtle: #cbd5e1;
    --border-focus: #55941d;

    /* Font Family: Strictly Inter */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* Spacing & Layout */
    --container-max: 1240px;
    --container-narrow: 840px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(14, 32, 60, 0.06);
    --shadow-md: 0 4px 16px rgba(14, 32, 60, 0.08);
    --shadow-lg: 0 12px 32px rgba(14, 32, 60, 0.12);
    --shadow-emerald: 0 8px 24px rgba(85, 148, 29, 0.25);

    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════════════════════ */
/* BASE RESETS                                    */
/* ══════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body.tvs-body {
    background-color: var(--bg-page);
    color: var(--text-body);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

button {
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    background: none;
}

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

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

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

/* ══════════════════════════════════════════════ */
/* TOP ANNOUNCEMENT BAR                           */
/* ══════════════════════════════════════════════ */
.tvs-topbar {
    background-color: var(--tvs-navy-dark);
    color: #ffffff;
    font-size: 0.84rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 102;
}

.tvs-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.tvs-topbar__left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.tvs-badge-pulse {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--emerald-light);
    box-shadow: 0 0 0 0 rgba(110, 163, 36, 0.7);
    animation: tvsPulse 2s infinite;
    flex-shrink: 0;
}

@keyframes tvsPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(110, 163, 36, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(110, 163, 36, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(110, 163, 36, 0); }
}

.tvs-topbar__right a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-weight: 600;
}

.tvs-topbar__right a:hover {
    color: #a3e635;
}

.tvs-topbar__right svg {
    width: 15px;
    height: 15px;
    color: var(--emerald-light);
}

/* ══════════════════════════════════════════════ */
/* HEADER & NAVIGATION BAR                        */
/* ══════════════════════════════════════════════ */
.tvs-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.tvs-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
}

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

.tvs-brand-logo {
    height: 44px;
    max-height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.tvs-brand-logo:hover {
    opacity: 0.92;
    transform: scale(1.02);
}

.tvs-brand-logo--drawer {
    height: 38px;
    max-height: 38px;
}

.tvs-brand__mark {
    background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(4, 106, 56, 0.25);
}

.tvs-brand__text {
    display: flex;
    flex-direction: column;
}

.tvs-brand__name {
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text-heading);
    line-height: 1.15;
}

.tvs-brand__sub {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--emerald-primary);
    text-transform: uppercase;
    font-weight: 700;
}

.tvs-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.tvs-nav__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-body);
    position: relative;
    padding: 6px 0;
}

.tvs-nav__link:hover {
    color: var(--emerald-primary);
}

.tvs-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--emerald-primary);
    transition: width 0.2s ease;
}

.tvs-nav__link:hover::after {
    width: 100%;
}

.tvs-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tvs-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    padding: 0;
}

.tvs-hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-heading);
    border-radius: 2px;
    transition: var(--transition);
}

/* ══════════════════════════════════════════════ */
/* BUTTONS & CTAS                                 */
/* ══════════════════════════════════════════════ */
.tvs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    line-height: 1.2;
    white-space: nowrap;
}

/* Primary Emerald Fill Button */
.tvs-btn--gold,
.tvs-btn--primary {
    background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(4, 106, 56, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tvs-btn--gold:hover,
.tvs-btn--primary:hover {
    background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald-primary) 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 106, 56, 0.35);
}

/* Secondary Button / Glass Outline */
.tvs-btn--glass,
.tvs-btn--outline {
    background-color: #ffffff;
    color: var(--emerald-primary);
    border: 1.5px solid var(--emerald-primary);
    box-shadow: var(--shadow-sm);
}

.tvs-btn--glass:hover,
.tvs-btn--outline:hover {
    background-color: var(--emerald-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Phone Header Pill */
.tvs-btn--phone {
    background-color: var(--emerald-subtle);
    color: var(--emerald-primary);
    border: 1px solid var(--emerald-border);
    padding: 8px 16px;
    font-size: 0.84rem;
    font-weight: 600;
}

.tvs-btn--phone svg {
    width: 15px;
    height: 15px;
    color: var(--emerald-primary);
}

.tvs-btn--phone:hover {
    background-color: var(--emerald-primary);
    color: #ffffff;
}

.tvs-btn--phone:hover svg {
    color: #ffffff;
}

.tvs-btn--full {
    width: 100%;
}

.tvs-btn__arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

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

/* ══════════════════════════════════════════════ */
/* HERO SECTION                                   */
/* ══════════════════════════════════════════════ */
.tvs-hero {
    position: relative;
    background: linear-gradient(180deg, #f0fdf4 0%, #f8fafc 100%);
    padding: 56px 0 76px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.tvs-hero__bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 90% 10%, rgba(5, 150, 105, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(217, 119, 6, 0.06) 0%, transparent 40%);
    z-index: 0;
}

.tvs-hero__overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.35;
    z-index: 1;
}

.tvs-hero__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.tvs-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tvs-hero__eyebrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.tvs-hero__pill {
    display: inline-block;
    padding: 5px 14px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--emerald-primary);
    border-radius: var(--radius-full);
}

.tvs-hero__rera {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-primary);
    background: var(--amber-subtle);
    border: 1px solid rgba(217, 119, 6, 0.3);
    border-radius: var(--radius-full);
}

.tvs-hero__title {
    font-size: clamp(2.3rem, 4.2vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-heading);
    margin-bottom: 18px;
}

.tvs-hero__title em {
    font-style: normal;
    color: var(--emerald-primary);
    background: linear-gradient(135deg, var(--emerald-primary) 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tvs-hero__tagline {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 580px;
}

.tvs-hero__tagline strong {
    color: var(--text-heading);
    font-weight: 600;
}

.tvs-hero__spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    margin-bottom: 30px;
    width: 100%;
    box-shadow: var(--shadow-sm);
}

.tvs-hero__spec {
    text-align: center;
    border-right: 1px solid var(--border-color);
    padding: 0 6px;
}

.tvs-hero__spec:last-child {
    border-right: none;
}

.tvs-hero__spec-val {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--emerald-primary);
    line-height: 1.2;
}

.tvs-hero__spec-lbl {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.tvs-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Hero Form Card */
.tvs-hero__form-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.tvs-hero__form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald-light), var(--emerald-primary));
    border-radius: 3px 3px 0 0;
}

.tvs-hero__form-header {
    text-align: center;
    margin-bottom: 22px;
}

.tvs-hero__form-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--emerald-primary);
    margin-bottom: 6px;
}

.tvs-hero__form-title {
    font-size: 1.35rem;
    color: var(--text-heading);
    font-weight: 700;
    margin-bottom: 6px;
}

.tvs-hero__form-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ══════════════════════════════════════════════ */
/* ENQUIRY FORM CONTROLS (LIGHT THEME)            */
/* ══════════════════════════════════════════════ */
.tvs-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tvs-form__group {
    display: flex;
    flex-direction: column;
}

.tvs-form__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 5px;
}

.tvs-required {
    color: #dc2626;
}

.tvs-optional {
    font-size: 0.74rem;
    color: var(--text-muted);
    font-weight: 400;
}

.tvs-form__input-wrapper,
.tvs-form__phone-row {
    position: relative;
    display: flex;
    align-items: center;
}

.tvs-form__input-icon {
    position: absolute;
    left: 14px;
    width: 17px;
    height: 17px;
    color: var(--text-muted);
    pointer-events: none;
}

.tvs-form__input {
    width: 100%;
    height: 44px;
    padding: 0 14px 0 40px;
    background-color: #ffffff;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-heading);
    font-size: 0.92rem;
    font-family: inherit;
    transition: var(--transition);
}

.tvs-form__input:focus {
    outline: none;
    border-color: var(--emerald-primary);
    box-shadow: 0 0 0 3px rgba(4, 106, 56, 0.15);
}

.tvs-form__input.is-error {
    border-color: #dc2626;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.15);
}

.tvs-form__phone-prefix {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 14px;
    background-color: var(--bg-subtle);
    border: 1.5px solid var(--border-subtle);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-heading);
}

.tvs-form__phone-row .tvs-input-phone {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding-left: 14px;
}

.tvs-form__error {
    font-size: 0.74rem;
    color: #dc2626;
    min-height: 16px;
    margin-top: 3px;
    font-weight: 500;
}

/* Typology Radio Pill Selectors */
.tvs-config-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tvs-config-option {
    display: flex;
    align-items: center;
    padding: 9px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: var(--bg-page);
    cursor: pointer;
    transition: var(--transition);
}

.tvs-config-option:hover {
    border-color: var(--emerald-primary);
    background-color: var(--emerald-subtle);
}

.tvs-config-option input {
    margin-right: 10px;
    accent-color: var(--emerald-primary);
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.tvs-config-option span {
    font-size: 0.84rem;
    color: var(--text-body);
    font-weight: 500;
}

.tvs-config-option input:checked + span {
    color: var(--emerald-dark);
    font-weight: 700;
}

.tvs-config-option:has(input:checked) {
    border-color: var(--emerald-primary);
    background-color: var(--emerald-subtle);
}

.tvs-form__security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.74rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 4px;
}

.tvs-form__security svg {
    width: 14px;
    height: 14px;
    color: var(--emerald-primary);
    flex-shrink: 0;
}

.tvs-form__direct-call {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
    font-size: 0.82rem;
    color: var(--text-body);
}

.tvs-form__phone-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--emerald-primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.tvs-form__phone-link:hover {
    color: var(--emerald-dark);
    text-decoration: underline;
}

.tvs-form__phone-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════ */
/* STATS BAR                                      */
/* ══════════════════════════════════════════════ */
.tvs-stats-bar {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 34px 0;
    box-shadow: var(--shadow-sm);
}

.tvs-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    text-align: center;
}

.tvs-stat-item {
    padding: 0 10px;
    position: relative;
}

.tvs-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background-color: var(--border-color);
}

.tvs-stat-value {
    font-size: clamp(1.55rem, 2.4vw, 2.1rem);
    font-weight: 800;
    color: var(--emerald-primary);
    line-height: 1.15;
    margin-bottom: 4px;
}

.tvs-stat-value em {
    font-style: normal;
    font-size: 0.7em;
    font-weight: 600;
    color: var(--text-heading);
}

.tvs-stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

/* ══════════════════════════════════════════════ */
/* SECTIONS COMMON STYLING                        */
/* ══════════════════════════════════════════════ */
.tvs-section {
    padding: 85px 0;
    position: relative;
}

.tvs-section--dark {
    background-color: #f1f5f9;
}

.tvs-section--cream {
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.tvs-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 52px;
}

.tvs-section-header--light .tvs-section-title {
    color: var(--text-heading);
}

.tvs-section-header--light .tvs-section-desc {
    color: var(--text-body);
}

.tvs-section-eyebrow {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--emerald-primary);
    margin-bottom: 10px;
}

.tvs-section-title {
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.025em;
    color: var(--text-heading);
    margin-bottom: 14px;
}

.tvs-section-title em {
    font-style: normal;
    color: var(--emerald-primary);
}

.tvs-section-desc {
    font-size: 1.02rem;
    color: var(--text-body);
    line-height: 1.7;
}

.tvs-grid {
    display: grid;
    gap: 26px;
}

.tvs-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ══════════════════════════════════════════════ */
/* HIGHLIGHT CARDS                                */
/* ══════════════════════════════════════════════ */
.tvs-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 26px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tvs-card:hover {
    border-color: var(--emerald-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tvs-card__icon-box {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background-color: var(--emerald-subtle);
    border: 1px solid var(--emerald-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-primary);
    margin-bottom: 20px;
}

.tvs-card__icon-box svg {
    width: 26px;
    height: 26px;
}

.tvs-card__title {
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.tvs-card__text {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════ */
/* TYPOLOGY & CONFIGURATION CARDS                 */
/* ══════════════════════════════════════════════ */
.tvs-plan-card {
    background-color: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.tvs-plan-card:hover {
    border-color: var(--emerald-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tvs-plan-card--featured {
    border-color: var(--emerald-primary);
    box-shadow: 0 8px 30px rgba(4, 106, 56, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.tvs-plan-card__badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background-color: var(--emerald-primary);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 4px 14px;
    border-radius: var(--radius-full);
}

.tvs-plan-card__type {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--emerald-primary);
    display: block;
    margin-bottom: 6px;
}

.tvs-plan-card__title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.tvs-plan-card__desc {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.5;
    margin-bottom: 22px;
}

.tvs-plan-card__specs {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.tvs-plan-card__spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
}

.tvs-plan-card__spec-row span {
    color: var(--text-muted);
}

.tvs-plan-card__spec-row strong {
    color: var(--text-heading);
    font-weight: 600;
}

.tvs-plan-card__price {
    color: var(--emerald-primary) !important;
    font-weight: 800 !important;
}

.tvs-plan-card__footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tvs-banner-cta {
    margin-top: 48px;
    background: linear-gradient(135deg, var(--emerald-dark) 0%, #064e3b 100%);
    border-radius: var(--radius-md);
    padding: 34px 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.tvs-banner-cta__content h3 {
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.tvs-banner-cta__content p {
    font-size: 0.92rem;
    color: #d1fae5;
}

.tvs-banner-cta .tvs-btn--gold {
    background: #ffffff;
    color: var(--emerald-dark);
    font-weight: 700;
}

.tvs-banner-cta .tvs-btn--gold:hover {
    background-color: var(--emerald-subtle);
    color: var(--emerald-primary);
}

/* ══════════════════════════════════════════════ */
/* AMENITIES SECTION                              */
/* ══════════════════════════════════════════════ */
.tvs-amenities-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.tvs-amenity-block {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.tvs-amenity-block:hover {
    border-color: var(--emerald-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tvs-amenity-block__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    border-bottom: 1.5px solid var(--border-color);
    padding-bottom: 14px;
}

.tvs-amenity-block__icon {
    font-size: 1.5rem;
}

.tvs-amenity-block__header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
}

.tvs-amenity-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.tvs-amenity-list li {
    font-size: 0.88rem;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
}

.tvs-amenity-list li::before {
    content: '✓';
    color: var(--emerald-primary);
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ══════════════════════════════════════════════ */
/* LOCATION & CONNECTIVITY                        */
/* ══════════════════════════════════════════════ */
.tvs-location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 38px;
}

.tvs-location-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.tvs-location-card__badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--emerald-primary);
    margin-bottom: 8px;
}

.tvs-location-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 18px;
}

.tvs-location-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tvs-location-list li {
    font-size: 0.9rem;
    color: var(--text-body);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 7px;
}

.tvs-location-list strong {
    color: var(--text-heading);
    font-weight: 600;
}

.tvs-location-cta__box {
    background-color: var(--emerald-dark);
    border-radius: var(--radius-md);
    padding: 30px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    gap: 20px;
    box-shadow: var(--shadow-md);
}

.tvs-location-cta__box h3 {
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.tvs-location-cta__box p {
    font-size: 0.92rem;
    color: #d1fae5;
}

.tvs-location-cta__box .tvs-btn--gold {
    background: #ffffff;
    color: var(--emerald-dark);
    font-weight: 700;
}

.tvs-location-cta__box .tvs-btn--gold:hover {
    background-color: var(--emerald-subtle);
    color: var(--emerald-primary);
}

/* ══════════════════════════════════════════════ */
/* ABOUT DEVELOPER (TVS EMERALD)                  */
/* ══════════════════════════════════════════════ */
.tvs-about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.tvs-about-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tvs-about-card:hover {
    border-color: var(--emerald-primary);
    transform: translateY(-3px);
}

.tvs-about-card__metric {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--emerald-primary);
    margin-bottom: 4px;
    line-height: 1.15;
}

.tvs-about-card__metric-label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-heading);
    font-weight: 700;
    margin-bottom: 14px;
}

.tvs-about-card__body {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════ */
/* FAQS ACCORDION (LIGHT THEME)                   */
/* ══════════════════════════════════════════════ */
.tvs-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tvs-faq-item {
    background-color: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.tvs-faq-item[open] {
    border-color: var(--emerald-primary);
    box-shadow: 0 4px 16px rgba(4, 106, 56, 0.08);
}

.tvs-faq-question {
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--text-heading);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

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

.tvs-faq-icon {
    font-size: 1.4rem;
    color: var(--emerald-primary);
    line-height: 1;
    font-weight: 700;
    transition: transform 0.25s ease;
}

.tvs-faq-item[open] .tvs-faq-icon {
    transform: rotate(45deg);
}

.tvs-faq-answer {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.7;
}

.tvs-faq-answer ul {
    margin: 8px 0 8px 20px;
}

.tvs-faq-answer li {
    margin-bottom: 4px;
}

/* ══════════════════════════════════════════════ */
/* FINAL CTA HIGHLIGHT SECTION (2ND IMAGE UI)     */
/* ══════════════════════════════════════════════ */
.tvs-section--cta {
    position: relative;
    background: 
        radial-gradient(circle at 85% 20%, rgba(110, 163, 36, 0.28) 0%, transparent 45%),
        radial-gradient(circle at 15% 85%, rgba(36, 98, 43, 0.35) 0%, transparent 50%),
        linear-gradient(135deg, #0e203c 0%, #16325c 50%, #174224 100%);
    color: #ffffff;
    text-align: center;
    padding: 95px 0;
    overflow: hidden;
    border-top: 1px solid rgba(110, 163, 36, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tvs-section--cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.5;
    pointer-events: none;
}

.tvs-cta-highlight {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
}

.tvs-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(110, 163, 36, 0.18);
    border: 1px solid rgba(110, 163, 36, 0.45);
    color: #a3e635;
    padding: 7px 18px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tvs-cta-title {
    font-size: clamp(2.2rem, 4.2vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.tvs-cta-gradient {
    background: linear-gradient(135deg, #bbf451 0%, #65a30d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-style: normal;
}

.tvs-cta-desc {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto 30px;
}

.tvs-cta-features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.tvs-cta-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    color: #f1f5f9;
    font-weight: 500;
}

.tvs-cta-feature svg {
    width: 16px;
    height: 16px;
    color: #a3e635;
    flex-shrink: 0;
}

.tvs-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Vibrant TVS Emerald CTA Primary Button */
.tvs-btn--cta-primary {
    background: linear-gradient(135deg, #6ea324 0%, #3e7814 100%);
    color: #ffffff !important;
    font-weight: 700;
    padding: 14px 30px;
    font-size: 0.96rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    box-shadow: 0 8px 24px rgba(110, 163, 36, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.tvs-btn--cta-primary svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.tvs-btn--cta-primary:hover {
    background: linear-gradient(135deg, #7cb324 0%, #55941d 100%);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(110, 163, 36, 0.55);
}

/* High Contrast TVS Glass Secondary Button */
.tvs-btn--cta-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    padding: 14px 28px;
    font-size: 0.96rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-decoration: none;
    transition: var(--transition);
}

.tvs-btn--cta-secondary svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.tvs-btn--cta-secondary:hover {
    background: #ffffff;
    color: #0e203c !important;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ══════════════════════════════════════════════ */
/* FOOTER (CLEAN LIGHT/SLATE STYLING)             */
/* ══════════════════════════════════════════════ */
.tvs-footer {
    background-color: #ffffff;
    padding: 65px 0 95px;
    border-top: 1px solid var(--border-color);
    font-size: 0.88rem;
    color: var(--text-muted);
}

.tvs-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 40px;
}

.tvs-footer__logo-link {
    display: inline-block;
    margin-bottom: 14px;
}

.tvs-footer-logo {
    height: 48px;
    max-height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.tvs-footer-logo:hover {
    opacity: 0.9;
}

.tvs-footer__brand .tvs-brand__name {
    font-size: 1.3rem;
    color: var(--text-heading);
}

.tvs-footer__text {
    font-size: 0.88rem;
    color: var(--text-body);
    margin-top: 12px;
    line-height: 1.65;
}

.tvs-footer__contact h4,
.tvs-footer__quicklinks h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 14px;
}

.tvs-footer__contact p {
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: var(--text-body);
}

.tvs-footer__contact a {
    color: var(--emerald-primary);
    font-weight: 700;
}

.tvs-footer__quicklinks ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.tvs-footer__quicklinks a {
    color: var(--text-body);
    font-weight: 500;
}

.tvs-footer__quicklinks a:hover {
    color: var(--emerald-primary);
}

.footer-disclaimer-box,
.tvs-footer-disclaimer-box {
    margin-top: 2rem;
    padding: 1.25rem 1.4rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid rgba(22, 50, 92, 0.12);
}

.footer-rera-info,
.tvs-footer-rera-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.4rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(22, 50, 92, 0.08);
}

.rera-pill,
.tvs-rera-pill {
    font-size: 0.78rem;
    color: var(--tvs-navy);
}

.rera-pill strong,
.tvs-rera-pill strong {
    color: var(--tvs-navy-dark);
    font-weight: 700;
}

.rera-pill a,
.tvs-rera-pill a {
    color: var(--emerald-primary);
    text-decoration: underline;
    font-weight: 600;
}

.footer-disclaimer-text,
.tvs-footer-disclaimer-text {
    font-size: 0.75rem !important;
    line-height: 1.65;
    color: var(--text-muted) !important;
    max-width: 100% !important;
    text-align: justify;
    margin: 0;
}

.tvs-footer__copy {
    margin-top: 18px;
    font-size: 0.82rem;
    color: var(--text-body);
    text-align: center;
}

/* ══════════════════════════════════════════════ */
/* RADIANCE-STYLE LIVE BENEFIT NUDGE TOAST        */
/* ══════════════════════════════════════════════ */
.conversion-nudge {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 1550;
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr) auto;
    gap: 0.9rem;
    align-items: center;
    width: min(440px, calc(100vw - 48px));
    padding: 1rem 1.15rem;
    border: 1px solid rgba(22, 50, 92, 0.18);
    border-radius: 16px;
    background: #ffffff;
    color: var(--tvs-navy);
    box-shadow: 0 16px 48px rgba(14, 32, 60, 0.18), 0 2px 8px rgba(14, 32, 60, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.conversion-nudge.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nudge-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6ea324;
    box-shadow: 0 0 0 4px rgba(110, 163, 36, 0.18), 0 0 12px rgba(110, 163, 36, 0.5);
    animation: tvsNudgePulse 2s infinite ease-in-out;
}

@keyframes tvsNudgePulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(110, 163, 36, 0.18), 0 0 12px rgba(110, 163, 36, 0.5);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(110, 163, 36, 0.3), 0 0 16px rgba(110, 163, 36, 0.8);
    }
}

.nudge-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.35;
}

.nudge-kicker {
    margin-bottom: 0.15rem;
    color: var(--emerald-primary);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nudge-title {
    color: var(--tvs-navy);
    font-size: 0.92rem;
    font-weight: 700;
}

.nudge-text {
    margin-top: 0.15rem;
    color: var(--text-muted);
    font-size: 0.74rem;
    line-height: 1.35;
}

.nudge-cta {
    min-height: 38px;
    padding: 0.55rem 0.9rem;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
    color: #ffffff;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(110, 163, 36, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nudge-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(110, 163, 36, 0.4);
}

.nudge-close {
    position: absolute;
    top: -8px;
    right: -8px;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid rgba(22, 50, 92, 0.15);
    border-radius: 50%;
    background: #ffffff;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: color 0.2s ease, background 0.2s ease;
}

.nudge-close:hover {
    color: var(--tvs-navy);
    background: #f1f5f9;
}

/* ══════════════════════════════════════════════ */
/* MODAL POPUP (LIGHT THEME)                      */
/* ══════════════════════════════════════════════ */
.tvs-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.tvs-modal-overlay.is-active {
    display: flex;
}

.tvs-modal-box {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 440px;
    padding: 34px 28px;
    position: relative;
    box-shadow: var(--shadow-lg);
    max-height: 92vh;
    overflow-y: auto;
    animation: tvsModalPop 0.25s ease;
}

@keyframes tvsModalPop {
    from { transform: scale(0.94); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.tvs-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 26px;
    color: var(--text-muted);
    line-height: 1;
    transition: var(--transition);
}

.tvs-modal-close:hover {
    color: var(--text-heading);
    transform: scale(1.15);
}

.tvs-modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.tvs-modal-badge {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--emerald-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.tvs-modal-title {
    font-size: 1.45rem;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.tvs-modal-subtitle {
    font-size: 0.84rem;
    color: var(--text-muted);
}

/* ══════════════════════════════════════════════ */
/* FLOATING ACTIONS & MOBILE BOTTOM BAR           */
/* ══════════════════════════════════════════════ */
.tvs-floating-actions {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.tvs-floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    color: #ffffff;
}

.tvs-floating-btn svg {
    width: 26px;
    height: 26px;
}

.tvs-floating-btn--wa {
    background-color: #25d366;
}

.tvs-floating-btn--wa:hover {
    background-color: #1eb956;
    transform: scale(1.08);
}

.tvs-floating-btn--call {
    background-color: var(--emerald-primary);
}

.tvs-floating-btn--call:hover {
    background-color: var(--emerald-dark);
    transform: scale(1.08);
}

/* Mobile Bottom Sticky Action Bar (3 Equal Width Columns) */
.tvs-mobile-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(14, 32, 60, 0.12);
    padding: 8px 10px;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}

.tvs-mobile-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 44px;
    width: 100%;
    min-width: 0;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    box-sizing: border-box;
    padding: 0 4px;
}

.tvs-mobile-bar__btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.tvs-mobile-bar__btn span {
    font-size: 0.8rem;
    font-weight: 700;
}

.tvs-mobile-bar__btn--call {
    background-color: var(--tvs-navy-subtle, #f0f4f9);
    color: var(--tvs-navy, #16325c);
    border: 1.5px solid #cbd5e1;
}

.tvs-mobile-bar__btn--call:hover,
.tvs-mobile-bar__btn--call:active {
    background-color: #e2e8f0;
    color: var(--tvs-navy-dark);
}

.tvs-mobile-bar__btn--wa {
    background-color: #ecfdf5;
    color: #059669;
    border: 1.5px solid #a7f3d0;
}

.tvs-mobile-bar__btn--wa:hover,
.tvs-mobile-bar__btn--wa:active {
    background-color: #d1fae5;
    color: #047857;
}

.tvs-mobile-bar__btn--cta {
    background: linear-gradient(135deg, #6ea324 0%, #24622b 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 2px 8px rgba(36, 98, 43, 0.3);
}

.tvs-mobile-bar__btn--cta:hover,
.tvs-mobile-bar__btn--cta:active {
    background: linear-gradient(135deg, #24622b 0%, #16325c 100%);
}

.tvs-mobile-bar__btn--cta:hover,
.tvs-mobile-bar__btn--cta:active {
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-primary) 100%);
}

/* Mobile Navigation Drawer */
.tvs-mobile-drawer {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.5);
    z-index: 2100;
    display: none;
    justify-content: flex-end;
}

.tvs-mobile-drawer.is-active {
    display: flex;
}

.tvs-mobile-drawer__inner {
    width: 82%;
    max-width: 320px;
    background-color: #ffffff;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 24px rgba(15, 23, 42, 0.15);
    animation: tvsSlideLeft 0.25s ease;
}

@keyframes tvsSlideLeft {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.tvs-mobile-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.tvs-mobile-drawer__close {
    font-size: 28px;
    color: var(--text-muted);
}

.tvs-mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.tvs-mobile-drawer__link {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-heading);
    padding: 6px 0;
}

.tvs-mobile-drawer__link:hover {
    color: var(--emerald-primary);
}

.tvs-mobile-drawer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
}

/* ══════════════════════════════════════════════ */
/* THANK YOU PAGE STYLING                         */
/* ══════════════════════════════════════════════ */
.tvs-thankyou-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #f8fafc 100%);
}

.tvs-thankyou-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.tvs-thankyou-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: var(--emerald-subtle);
    border: 1px solid var(--emerald-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--emerald-primary);
}

.tvs-thankyou-icon svg {
    width: 34px;
    height: 34px;
}

.tvs-thankyou-title {
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    color: var(--text-heading);
    margin-top: 10px;
    margin-bottom: 14px;
}

.tvs-thankyou-title em {
    font-style: normal;
    color: var(--emerald-primary);
}

.tvs-thankyou-desc {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 30px;
}

.tvs-thankyou-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.tvs-thankyou-back {
    display: inline-block;
    color: var(--emerald-primary);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.tvs-thankyou-back:hover {
    color: var(--emerald-dark);
}

/* Toast Message */
.tvs-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    background-color: #ffffff;
    color: var(--text-heading);
    border: 1.5px solid var(--emerald-primary);
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.tvs-toast.is-show {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════ */
/* SPECIAL OFFER BAR                              */
/* ══════════════════════════════════════════════ */
.tvs-offer-bar {
    background: linear-gradient(90deg, #fef3c7 0%, #fffbeb 50%, #fef3c7 100%);
    border-bottom: 1px solid #fde68a;
    padding: 9px 0;
    font-size: 0.85rem;
    color: #92400e;
}

.tvs-offer-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    text-align: center;
}

.tvs-offer-bar__badge {
    background-color: #d97706;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.tvs-offer-bar__btn {
    background-color: #92400e;
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.tvs-offer-bar__btn:hover {
    background-color: #78350f;
    transform: scale(1.04);
}

/* Hero Section Additions */
.tvs-hero__pricing-highlight {
    font-size: 1.22rem;
    font-weight: 600;
    color: var(--emerald-dark);
    margin-bottom: 14px;
}

.tvs-hero__pricing-highlight strong {
    color: var(--emerald-primary);
    font-weight: 800;
}

.tvs-hero__ptr-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tvs-navy);
    background: var(--tvs-navy-subtle);
    border: 1px solid rgba(22, 50, 92, 0.25);
    border-radius: var(--radius-full);
}

.tvs-btn--wa-hero {
    background-color: #25d366;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.tvs-btn--wa-hero svg {
    width: 18px;
    height: 18px;
}

.tvs-btn--wa-hero:hover {
    background-color: #1eb956;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ══════════════════════════════════════════════ */
/* 3. THE ADDRESS & THE VISION SECTION            */
/* ══════════════════════════════════════════════ */
.tvs-vision-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: start;
}

.tvs-vision-content {
    font-size: 1.02rem;
    color: var(--text-body);
    line-height: 1.8;
}

.tvs-vision-content p {
    margin-bottom: 18px;
}

.tvs-vision-content strong {
    color: var(--text-heading);
    font-weight: 700;
}

.tvs-vision-cta {
    margin-top: 28px;
}

.tvs-vision-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tvs-vision-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--emerald-primary);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tvs-vision-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--tvs-navy);
}

.tvs-vision-card__icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.tvs-vision-card h4 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.tvs-vision-card p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.55;
    margin: 0;
}

/* ══════════════════════════════════════════════ */
/* 4. GALLERY (BENTO GRID UI)                     */
/* ══════════════════════════════════════════════ */
.tvs-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
    margin-bottom: 36px;
}

.tvs-bento-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(14, 32, 60, 0.08);
    border: 1px solid rgba(22, 50, 92, 0.12);
    cursor: pointer;
    background-color: var(--bg-subtle);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.tvs-bento-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(14, 32, 60, 0.16);
    border-color: var(--emerald-primary);
}

/* Bento Item Grid Placement:
   Item 1: 2 cols x 2 rows (hero elevation)
   Item 2: 2 cols x 1 row (wide top living)
   Item 3: 1 col x 1 row (bedroom)
   Item 4: 1 col x 1 row (balcony)
   Item 5: 2 cols x 1 row (wide bottom entrance)
   Item 6: 2 cols x 1 row (wide bottom kitchen)
*/
.tvs-bento-item--hero {
    grid-column: span 2;
    grid-row: span 2;
}

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

.tvs-bento-item--standard-1,
.tvs-bento-item--standard-2 {
    grid-column: span 1;
    grid-row: span 1;
}

.tvs-bento-item--wide-bottom-1,
.tvs-bento-item--wide-bottom-2 {
    grid-column: span 2;
    grid-row: span 1;
}

.tvs-bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.tvs-bento-item:hover .tvs-bento-img {
    transform: scale(1.07);
}

.tvs-bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 32, 60, 0.92) 0%, rgba(14, 32, 60, 0.35) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 24px;
    color: #ffffff;
    pointer-events: none;
}

.tvs-bento-tag {
    display: inline-block;
    width: fit-content;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #a3e635;
    background: rgba(110, 163, 36, 0.22);
    border: 1px solid rgba(163, 230, 53, 0.3);
    border-radius: 999px;
    padding: 3px 10px;
    text-transform: uppercase;
    margin-bottom: 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.tvs-bento-overlay h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.tvs-bento-item--hero .tvs-bento-overlay h4 {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.tvs-bento-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

.tvs-gallery-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ══════════════════════════════════════════════ */
<!-- 6. MASTER & FLOOR PLANS                        -->
/* ══════════════════════════════════════════════ */
.tvs-plan-preview-box {
    max-width: 980px;
    margin: 0 auto;
}

.tvs-plan-preview-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.tvs-plan-preview-card__img-wrapper {
    position: relative;
    max-height: 540px;
    overflow: hidden;
    background-color: #f8fafc;
}

.tvs-plan-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    transform: scale(1.02);
}

.tvs-plan-watermark-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 32, 60, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 24px;
}

.tvs-plan-watermark-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.tvs-plan-watermark-overlay p {
    font-size: 1.1rem;
    max-width: 520px;
    margin-bottom: 22px;
    color: #e2e8f0;
}

.tvs-plan-preview-card__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 22px 24px;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
}

.tvs-btn--wa-plan {
    background-color: #25d366;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tvs-btn--wa-plan svg {
    width: 18px;
    height: 18px;
}

.tvs-btn--wa-plan:hover {
    background-color: #1eb956;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

/* ══════════════════════════════════════════════ */
/* 7. AMENITIES CARDS GRID                        */
/* ══════════════════════════════════════════════ */
.tvs-amenity-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.tvs-amenity-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tvs-amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--emerald-border);
}

.tvs-amenity-card__media {
    position: relative;
    height: 230px;
    overflow: hidden;
    background-color: var(--bg-subtle);
}

.tvs-amenity-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.tvs-amenity-card:hover .tvs-amenity-card__media img {
    transform: scale(1.06);
}

.tvs-amenity-card__pill {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(14, 32, 60, 0.85);
    backdrop-filter: blur(6px);
    color: #a3e635;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 5px 14px;
    border-radius: var(--radius-full);
}

.tvs-amenity-card__body {
    padding: 24px;
    flex: 1;
}

.tvs-amenity-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 14px;
}

.tvs-amenity-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.tvs-amenity-card__list li {
    font-size: 0.92rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tvs-amenity-card__list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--emerald-subtle);
    color: var(--emerald-primary);
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════ */
/* 8. SPECIFICATIONS GRID                         */
/* ══════════════════════════════════════════════ */
.tvs-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.tvs-spec-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tvs-spec-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--emerald-border);
}

.tvs-spec-card--wide {
    grid-column: span 3;
    background: linear-gradient(135deg, #ffffff 0%, var(--emerald-subtle) 100%);
    border-color: var(--emerald-border);
}

.tvs-spec-card__icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.tvs-spec-card h4 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.tvs-spec-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

/* ══════════════════════════════════════════════ */
/* 9. LOCATION & CONNECTIVITY SECTION             */
/* ══════════════════════════════════════════════ */
.tvs-location-overview-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
    margin-bottom: 48px;
}

.tvs-location-text {
    font-size: 1.02rem;
    color: var(--text-body);
    line-height: 1.8;
}

.tvs-location-text p {
    margin-bottom: 16px;
}

.tvs-location-map-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.tvs-location-map-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.tvs-location-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1.5px);
}

.tvs-map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 32, 60, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    text-align: center;
    padding: 16px;
}

.tvs-map-overlay span {
    font-size: 0.88rem;
    font-weight: 600;
    color: #e2e8f0;
}

.tvs-location-map-footer {
    padding: 16px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.tvs-connectivity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.tvs-conn-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.tvs-conn-card__badge {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--emerald-primary);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-block;
    border-bottom: 2px solid var(--emerald-primary);
    padding-bottom: 4px;
}

.tvs-conn-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tvs-conn-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.tvs-conn-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tvs-conn-list span {
    color: var(--text-body);
}

.tvs-conn-list strong {
    color: var(--tvs-navy);
    font-weight: 700;
    white-space: nowrap;
}

/* ══════════════════════════════════════════════ */
/* 10. INFRASTRUCTURE & GROWTH DRIVERS            */
/* ══════════════════════════════════════════════ */
.tvs-infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tvs-infra-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tvs-infra-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--emerald-border);
}

.tvs-infra-card__number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--emerald-light);
    line-height: 1;
    margin-bottom: 12px;
}

.tvs-infra-card__title {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
    line-height: 1.35;
}

.tvs-infra-card__text {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
}

/* ══════════════════════════════════════════════ */
/* 11. WHY INVEST: 6 COMPELLING REASONS           */
/* ══════════════════════════════════════════════ */
.tvs-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tvs-reason-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tvs-reason-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--tvs-navy);
}

.tvs-reason-card__num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tvs-navy) 0%, var(--emerald-dark) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 16px;
    box-shadow: 0 4px 10px rgba(22, 50, 92, 0.25);
}

.tvs-reason-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
    line-height: 1.35;
}

.tvs-reason-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
}

/* ══════════════════════════════════════════════ */
/* 12. DEVELOPER ARTICLE & METRICS                */
/* ══════════════════════════════════════════════ */
.tvs-developer-box {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 44px 38px;
    box-shadow: var(--shadow-sm);
}

.tvs-developer-article {
    font-size: 1.02rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 36px;
}

.tvs-developer-article p {
    margin-bottom: 18px;
}

.tvs-developer-article strong {
    color: var(--text-heading);
    font-weight: 700;
}

.tvs-developer-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 28px;
}

.tvs-dev-stat {
    text-align: center;
}

.tvs-dev-stat strong {
    display: block;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--emerald-primary);
    margin-bottom: 4px;
}

.tvs-dev-stat span {
    font-size: 0.84rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════ */
/* RESPONSIVE BREAKPOINTS                         */
/* ══════════════════════════════════════════════ */
@media (max-width: 1140px) {
    .tvs-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .tvs-stat-item:nth-child(3)::after {
        display: none;
    }

    .tvs-amenities-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .tvs-about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .tvs-nav {
        display: none;
    }

    .tvs-hamburger {
        display: flex;
    }

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

    .tvs-hero__content {
        align-items: center;
        text-align: center;
    }

    .tvs-hero__eyebrow {
        justify-content: center;
    }

    .tvs-hero__tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .tvs-hero__ctas {
        justify-content: center;
    }

    .tvs-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .tvs-vision-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tvs-amenity-cards-grid {
        grid-template-columns: 1fr;
    }

    .tvs-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .tvs-bento-item--hero {
        grid-column: span 2;
        grid-row: span 2;
    }

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

    .tvs-bento-item--standard-1,
    .tvs-bento-item--standard-2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .tvs-bento-item--wide-bottom-1,
    .tvs-bento-item--wide-bottom-2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .tvs-connectivity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tvs-infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tvs-reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tvs-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tvs-spec-card--wide {
        grid-column: span 2;
    }

    .tvs-location-overview-grid {
        grid-template-columns: 1fr;
    }

    .tvs-location-grid {
        grid-template-columns: 1fr;
    }

    .tvs-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .tvs-header__inner {
        height: 64px;
    }

    .tvs-btn--phone {
        display: none;
    }

    .tvs-topbar__right {
        display: none;
    }

    .tvs-topbar__inner {
        justify-content: center;
        text-align: center;
    }

    .tvs-offer-bar__inner {
        flex-direction: column;
        gap: 8px;
    }

    .tvs-hero {
        padding: 32px 0 50px;
    }

    .tvs-hero__spec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .tvs-hero__spec {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 10px;
    }

    .tvs-hero__spec:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
    }

    .tvs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tvs-stat-item::after {
        display: none !important;
    }

    .tvs-grid--3 {
        grid-template-columns: 1fr;
    }

    .tvs-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .tvs-bento-item--hero,
    .tvs-bento-item--wide-top,
    .tvs-bento-item--standard-1,
    .tvs-bento-item--standard-2,
    .tvs-bento-item--wide-bottom-1,
    .tvs-bento-item--wide-bottom-2 {
        grid-column: span 1;
        grid-row: auto;
        min-height: 220px;
    }

    .tvs-connectivity-grid {
        grid-template-columns: 1fr;
    }

    .tvs-infra-grid {
        grid-template-columns: 1fr;
    }

    .tvs-reasons-grid {
        grid-template-columns: 1fr;
    }

    .tvs-specs-grid {
        grid-template-columns: 1fr;
    }

    .tvs-spec-card--wide {
        grid-column: span 1;
    }

    .tvs-developer-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .tvs-developer-box {
        padding: 26px 20px;
    }

    .tvs-amenities-categories {
        grid-template-columns: 1fr;
    }

    .tvs-about-grid {
        grid-template-columns: 1fr;
    }

    .tvs-banner-cta {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .tvs-location-cta__box {
        flex-direction: column;
        text-align: center;
    }

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

    /* Hide floating buttons on mobile devices - sticky bar handles actions */
    .tvs-floating-actions {
        display: none !important;
    }

    .tvs-brand-logo {
        height: 36px;
        max-height: 36px;
    }

    .tvs-mobile-bar {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
        padding: 8px 10px !important;
        box-sizing: border-box !important;
    }

    body.tvs-body {
        padding-bottom: 72px;
    }
}

@media (max-width: 480px) {
    .tvs-hero__form-card {
        padding: 22px 18px;
    }

    .tvs-plan-card {
        padding: 26px 20px;
    }

    .tvs-modal-box {
        padding: 24px 18px;
    }

    .tvs-topbar {
        font-size: 0.76rem;
    }

    .tvs-developer-metrics-grid {
        grid-template-columns: 1fr;
    }
}
