/* ==========================================================================
   ATH MEADOWS LANDING PAGE - BRAND COMPLIANT STYLING
   Primary Color: #653388 (Royal Purple)
   Secondary Color: #8A5CB0
   Light Purple: #F5F0FA
   Dark Text: #1F1F1F
   Gray Text: #6B7280
   ========================================================================== */

/* --- CSS VARIABLES & THEMING --- */
:root {
    --primary: #653388;
    --primary-rgb: 101, 51, 136;
    --primary-light: #7c43a6;

    --secondary: #8A5CB0;
    --secondary-rgb: 138, 92, 176;

    --light-purple: #F5F0FA;
    --white: #FFFFFF;
    --dark-text: #000000;
    --gray-text: #6B7280;
    --gold: #E2B65C;

    /* Layout Borders & Curves */
    --border-color: rgba(101, 51, 136, 0.12);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;

    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Montserrat', sans-serif;

    /* Shadows & Transitions */
    --shadow-sm: 0 4px 12px rgba(101, 51, 136, 0.04);
    --shadow-md: 0 10px 30px rgba(101, 51, 136, 0.08);
    --shadow-lg: 0 20px 40px rgba(101, 51, 136, 0.12);
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* --- COMMON COMPONENTS & TYPOGRAPHY --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* Global section overflow guard - prevents any section from causing horizontal scroll */
section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

.section-padding {
    padding: 50px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 30px 0;
    }
}

.section-header {
    margin-bottom: 35px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    color: #653388;
    line-height: 1.3;
}

.title-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    margin: 18px auto 0;
    border-radius: 2px;
}

.title-divider-left {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    margin: 18px 0 0;
    border-radius: 2px;
}

.text-center {
    text-align: center;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* --- NAVIGATION BAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 14px 0;
    background-color: var(--primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(101, 51, 136, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo styling */
.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Rounded Navigation Action Button */
.nav-cta-btn-previous {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border-radius: 30px;
    background-color: var(--white);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.nav-cta-btn-previous:hover {
    transform: translateY(-2px);
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.nav-btn-mobile {
    display: none;
}

/* Mobile toggler */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-fast);
}

.navbar.scrolled .menu-toggle .bar {
    background-color: var(--white);
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .nav-cta-btn-previous {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #4a2068;
        padding: 30px 24px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        gap: 20px;
        z-index: 999;
    }

    .nav-links.mobile-active .nav-link {
        color: rgba(255, 255, 255, 0.9);
        width: 100%;
        text-align: center;
        font-size: 1.05rem;
    }

    .nav-links.mobile-active .nav-link:hover {
        color: var(--white);
    }

    .nav-links.mobile-active .nav-btn-mobile {
        display: block;
        width: 100%;
        text-align: center;
        padding: 13px;
        background-color: var(--white);
        color: var(--primary);
        border-radius: 30px;
        font-family: var(--font-heading);
        font-weight: 700;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* --- HERO SECTION --- */
.hero-section-previous {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    background-image: url('assets/hero-banner.png');
    background-size: cover;
    background-position: right center;
}

.hero-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content-wrapper {
    width: 100%;
    padding-top: 130px;
    padding-bottom: 100px;
}

.hero-left-text {
    max-width: 580px;
    text-align: left;
    user-select: text;
    -webkit-user-select: text;
}

.hero-screenshot-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-highlight {
    color: #7f0e7f;
    /* Bright gold/orange from screenshot */
}

/* Responsive line-break: default hidden on larger screens */
.mobile-only-br {
    display: none;
}

.hero-screenshot-desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--white);
    max-width: 500px;
    margin: 0;
    padding: 18px 24px;
    background-color: rgba(31, 20, 42, 0.65);
    border-left: 4px solid #7f0e7f;
    border-radius: 0 12px 12px 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .hero-section-previous {
        min-height: 90vh;
        background-position: 75% center;
    }
}

@media (max-width: 480px) {

    /* ── HERO: Portrait image optimised for mobile ── */
    .hero-section-previous {
        min-height: 168vw !important;
        height: 168vw !important;
        padding: 0 !important;
        background-position: center bottom !important;
        background-size: cover !important;
        align-items: flex-start !important;
        /* Use the portrait mobile image + gradient overlay for text legibility */
        background-image:
            linear-gradient(
                to bottom,
                rgba(10, 5, 20, 0.52) 0%,
                rgba(10, 5, 20, 0.35) 35%,
                rgba(0, 0, 0, 0.0)    50%,
                rgba(0, 0, 0, 0.0)   100%
            ),
            url('assets/mobile%20view.jpeg') !important;
    }

    .container {
        padding: 0 16px !important;
    }

    .hero-container {
        align-items: flex-start !important;
        height: 100% !important;
    }

    /* Content sits at top, clears the fixed navbar */
    .hero-content-wrapper {
        padding-top: clamp(90px, 20vw, 120px) !important;
        padding-bottom: 0 !important;
        width: 100%;
    }

    /* Full-width, centered */
    .hero-left-text {
        max-width: 100% !important;
        padding: 0 !important;
        text-align: center;
    }

    /* Title */
    .hero-screenshot-title {
        font-size: clamp(1.25rem, 5.8vw, 1.45rem) !important;
        font-weight: 800 !important;
        letter-spacing: -0.3px;
        margin-bottom: 8px;
        line-height: 1.25;
        text-align: center;
        color: #ffffff;
        text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    /* Highlight color */
    .hero-highlight {
        color: #d480f0;
    }

    .mobile-only-br {
        display: inline !important;
    }

    /* Description box — dark glass card, fully rounded, compact and centered */
    .hero-screenshot-desc {
        font-family: var(--font-body) !important;
        font-size: clamp(0.72rem, 3vw, 0.8rem) !important;
        line-height: 1.45 !important;
        color: #f0e8ff !important;
        max-width: 380px !important;
        margin: 0 auto !important;
        padding: 10px 14px !important;
        background-color: rgba(20, 10, 35, 0.58) !important;
        border-left: none !important;
        border-radius: 12px !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
        text-align: center;
    }

    /* Enquire Now button — centered */
    .hero-enquire-wrapper {
        margin-top: 12px !important;
        display: flex;
        justify-content: center;
    }

    .strip-submit-btn {
        padding: 10px 32px !important;
        font-size: 0.94rem !important;
        border-radius: 8px !important;
        background-color: #653388 !important;
        color: #fff !important;
        font-weight: 700 !important;
        letter-spacing: 0.3px;
        box-shadow: 0 4px 14px rgba(101, 51, 136, 0.45) !important;
    }

    /* ── Other section font overrides ── */
    .overview-title-previous { font-size: 1.8rem !important; }
    .section-title           { font-size: 1.8rem !important; }
    .contact-panel-title     { font-size: 1.9rem !important; }
}

@media (min-width: 481px) and (max-width: 991px) {
    /* ── HERO: Portrait image optimised for tablets (same as mobile) ── */
    .hero-section-previous {
        min-height: 130vw !important;
        height: 130vw !important;
        padding: 0 !important;
        background-position: center bottom !important;
        background-size: cover !important;
        align-items: flex-start !important;
        background-image:
            linear-gradient(
                to bottom,
                rgba(10, 5, 20, 0.52) 0%,
                rgba(10, 5, 20, 0.35) 35%,
                rgba(0, 0, 0, 0.0)    50%,
                rgba(0, 0, 0, 0.0)   100%
            ),
            url('assets/mobile%20view.jpeg') !important;
    }

    .container {
        padding: 0 24px !important;
    }

    .hero-container {
        align-items: flex-start !important;
        height: 100% !important;
    }

    /* Content centered with custom top padding */
   .hero-content-wrapper {
        padding-top: clamp(110px, 15vw, 130px) !important;
        padding-bottom: 0 !important;
        width: 100%;
    }

    /* Centered text for tablets */
    .hero-left-text {
        max-width: 600px !important;
        margin: 0 auto !important;
        text-align: center !important;
        padding: 0 !important;
    }

    /* Title size for tablets */
    .hero-screenshot-title {
        font-size: clamp(1.6rem, 4.5vw, 2.2rem) !important;
        font-weight: 800 !important;
        letter-spacing: -0.5px;
        margin-bottom: clamp(10px, 2vw, 15px) !important;
        line-height: 1.25;
        text-align: center;
        color: #ffffff;
        text-shadow: 0 2px 10px rgba(0,0,0,0.35);
    }

    /* Highlight color */
    .hero-highlight {
        color: #d480f0;
    }

    /* Description box for tablets with bottom gap */
    .hero-screenshot-desc {
        font-family: var(--font-body) !important;
        font-size: clamp(0.8rem, 1.8vw, 0.88rem) !important;
        line-height: 1.45 !important;
        color: #f0e8ff !important;
        max-width: 550px !important;
        margin: 0 auto clamp(10px, 2vw, 15px) !important;
        padding: 10px 16px !important;
        background-color: rgba(20, 10, 35, 0.58) !important;
        border-left: none !important;
        border-radius: 12px !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35) !important;
        text-align: center;
    }

    /* Enquire Now button — centered */
    .hero-enquire-wrapper {
        margin-top: 0 !important;
        display: flex;
        justify-content: center;
    }

    .strip-submit-btn {
        padding: 12px 36px !important;
        font-size: 1rem !important;
        border-radius: 8px !important;
        background-color: #653388 !important;
        color: #fff !important;
        font-weight: 700 !important;
        letter-spacing: 0.3px;
        box-shadow: 0 4px 14px rgba(101, 51, 136, 0.45) !important;
    }

    /* ── Other section font overrides for tablets ── */
    .overview-title-previous { font-size: 1.9rem !important; }
    .section-title           { font-size: 1.9rem !important; }
    .contact-panel-title     { font-size: 2rem !important; }
}


.hero-enquire-wrapper {
    margin-top: 14px;
}

/* Circular Badge Design from Screenshot 1 */
.circular-badge-container {
    position: relative;
    width: 420px;
    height: 420px;
    z-index: 2;
    margin-right: 120px;
}

@media (max-width: 1200px) {
    .circular-badge-container {
        width: 370px;
        height: 370px;
        margin-right: 80px;
    }
}

@media (max-width: 991px) {
    .circular-badge-container {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .circular-badge-container {
        width: 290px;
        height: 290px;
    }
}

.badge-ring-outer {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: rotateRing 40s linear infinite;
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.badge-ring-inner {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--gold);
    border-radius: 50%;
}

.badge-main-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary) 0%, rgba(101, 51, 136, 0.95) 100%);
    box-shadow: 0 15px 40px rgba(101, 51, 136, 0.4), inset 0 2px 20px rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    border: 3px solid var(--white);
}

.badge-bhk {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.badge-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    line-height: 1.1;
    margin-top: 2px;
}

.badge-divider {
    width: 40px;
    height: 2px;
    background-color: var(--gold);
    margin: 8px 0;
}

.badge-loc-at {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-location {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
}

.badge-min-tag {
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 6px;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.badge-station {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.badge-station-sub {
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.85;
}

.credai-badge {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.credai-member {
    font-size: 0.5rem;
    letter-spacing: 1px;
    opacity: 0.75;
}

.credai-brand {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold);
    margin: 2px 0;
}

.credai-city {
    font-size: 0.55rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

@media (max-width: 480px) {
    .badge-title {
        font-size: 1.5rem;
    }

    .badge-location {
        font-size: 1.1rem;
    }

    .badge-station {
        font-size: 0.8rem;
    }

    .credai-badge {
        margin-top: 8px;
    }
}

/* Presenter cutout positioning matching Screenshot 1 */
.presenter-container {
    position: absolute;
    bottom: -120px;
    right: 40px;
    width: 320px;
    z-index: 3;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .presenter-container {
        width: 270px;
        right: 0px;
    }
}

@media (max-width: 991px) {
    .presenter-container {
        display: none;
        /* Hide cutout on tablet/mobile to keep layout clean */
    }
}

.presenter-img {
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Horizontal Lead Inquiry Form Strip */
.horizontal-enquiry-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(101, 51, 136, 0.1);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.05);
    z-index: 10;
    padding: 16px 0;
}

.strip-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.strip-form {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

@media (max-width: 768px) {
    .horizontal-enquiry-strip {
        position: relative;
        padding: 24px 0;
    }

    .strip-form {
        justify-content: center;
    }
}

.strip-submit-btn {
    display: inline-block;
    text-align: center;
    padding: 12px 32px;
    background-color: #653388;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.2);
    text-decoration: none;
}

.strip-submit-btn:hover {
    background-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(101, 51, 136, 0.25);
}

/* --- PROJECT OVERVIEW (Previous Style) --- */
.overview-grid-previous {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .overview-grid-previous {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.overview-title-previous {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

.overview-desc-previous {
    font-size: 0.95rem;
    color: #606060;
    margin-top: 20px;
    line-height: 1.7;
    text-align: justify;
}

/* Decorative Framing splash for child playing visual */
.overview-splash-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 15px 15px 0;
    overflow: visible;
}





.splash-image-card {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    z-index: 2;
    box-shadow: var(--shadow-md);
    border: 6px solid var(--white);
    height: 380px;
    width: 100%;
    max-width: 100%;
}

.splash-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overview-splash-wrapper:hover .splash-img {
    transform: scale(1.04);
}

.flower-deco-wrapper {
    display: none;
}

/* ── YouTube Card Corner Bracket Decoration ──────────────────── */
.yt-corner-frame {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Shared corner span */
.yt-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    z-index: 10;
    pointer-events: none;
}

/* Top-Left corner */
.yt-corner-tl {
    top: -8px;
    left: -8px;
    border-top: 4px solid #653388;
    border-left: 4px solid #653388;
    border-radius: 3px 0 0 0;
}

/* Top-Right corner */
.yt-corner-tr {
    top: -8px;
    right: -8px;
    border-top: 4px solid #653388;
    border-right: 4px solid #653388;
    border-radius: 0 3px 0 0;
}

/* Bottom-Left corner */
.yt-corner-bl {
    bottom: -8px;
    left: -8px;
    border-bottom: 4px solid #653388;
    border-left: 4px solid #653388;
    border-radius: 0 0 0 3px;
}

/* Bottom-Right corner */
.yt-corner-br {
    bottom: -8px;
    right: -8px;
    border-bottom: 4px solid #653388;
    border-right: 4px solid #653388;
    border-radius: 0 0 3px 0;
}

/* --- PROJECT HIGHLIGHTS (Premium Card Grid) --- */
.highlights-section-premium {
    background-color: var(--light-purple);
    position: relative;
}

.highlights-slider-container {
    position: relative;
    padding: 0 40px;
    margin-top: 50px;
    overflow: hidden;
}

.highlights-slider-viewport {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.highlights-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.highlight-premium-card {
    flex: 0 0 calc((100% - 60px) / 3);
    /* 3 cards visible on desktop */
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.highlight-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(101, 51, 136, 0.25);
}

/* Image header area */
.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.highlight-premium-card:hover .card-image,
.amenity-premium-card:hover .card-image {
    transform: scale(1.08);
}

/* Gradient overlay on image */
.card-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(101, 51, 136, 0.35) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.highlight-premium-card:hover .card-image-wrapper::after,
.amenity-premium-card:hover .card-image-wrapper::after {
    opacity: 1;
}

/* Text content below image */
.card-content {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-content h3,
.card-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin: 0;
}

.card-content p {
    font-size: 0.875rem;
    color: #000000;
    line-height: 1.65;
    margin: 0;
}

/* Purple bottom accent bar */
.highlight-premium-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    transition: width 0.4s ease;
}

.highlight-premium-card:hover::after {
    width: 100%;
}

/* Responsiveness for premium highlights slider */
@media (max-width: 991px) {
    .highlight-premium-card {
        flex: 0 0 calc((100% - 30px) / 2);
        /* 2 cards visible on tablet */
    }
}

@media (max-width: 576px) {
    .highlight-premium-card {
        flex: 0 0 calc(100% - 0px);
        min-width: 0;
        /* 1 card visible on mobile */
    }
    .highlights-carousel-track {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .card-image-wrapper {
        height: 180px;
    }
    .slider-nav-btn {
        display: none !important;
    }
    .highlights-slider-container {
        padding: 0;
        overflow: hidden;
    }
    .highlights-slider-viewport {
        overflow: hidden;
        width: 100%;
    }
    .overview-splash-wrapper {
        padding: 12px;
        overflow: visible;
    }
 
}

.highlights-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.highlights-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(101, 51, 136, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.highlights-dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--primary);
}

/* --- AMENITIES SECTION (Premium Card Grid from Screenshot) --- */
.amenities-section-premium {
    background-color: var(--light-purple);
    padding: 30px 0;
}

@media (max-width: 768px) {
    .amenities-section-premium {
        padding: 20px 0;
    }
}

.amenities-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.amenity-premium-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.amenity-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(101, 51, 136, 0.25);
}

/* Purple bottom accent bar */
.amenity-premium-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    transition: width 0.4s ease;
}

.amenity-premium-card:hover::after {
    width: 100%;
}

/* Responsiveness for premium amenities grid */
@media (max-width: 991px) {
    .amenities-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .amenities-grid-premium {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Floating arrows for amenities slider - Square & Crisp Shadow from screenshots */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 0;
    /* Sharp square corners */
    background-color: var(--white);
    color: #000000;
    /* Solid black arrows */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    /* Stronger premium drop-shadow */
    border: none;
    z-index: 5;
    transition: var(--transition-fast);
}

.slider-nav-btn:hover {
    background-color: #f8f9fa;
    color: #000000;
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}



/* --- LOCATION ADVANTAGES (Premium Dashboard style) --- */
.location-section-premium {
    background-color: var(--light-purple);
    padding: 65px 0;
    position: relative;
    z-index: 1;
}

/* Center Header Card */
.location-header-card {
    background-color: var(--white);
    padding: 30px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 100%;
    margin: 0 auto 35px;
    position: relative;
    z-index: 2;
    border: 1px solid var(--border-color);
}

.location-subtitle {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.location-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dark-text);
    margin: 0 0 6px 0;
}

.location-tagline {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 16px 0;
}

.location-intro-desc {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.65;
    margin: 0;
    max-width: 100%;
    text-align: center;
}

/* Dynamic Pill Tabs Row */
.location-tabs-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.location-tabs-bar .loc-tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-text);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    width: auto;
    text-align: center;
}

.location-tabs-bar .tab-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2.2px;
    flex-shrink: 0;
}

.location-tabs-bar .loc-tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(101, 51, 136, 0.25);
}

.location-tabs-bar .loc-tab-btn:hover:not(.active) {
    background-color: rgba(101, 51, 136, 0.05);
    border-color: rgba(101, 51, 136, 0.25);
    transform: translateY(-2px);
}

/* Split Dashboard Container Card */
.location-dashboard-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.dashboard-visual-col {
    position: relative;
    width: 100%;
}

.dashboard-img-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.dashboard-img-frame .tab-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, opacity 0.3s ease;
}

.location-dashboard-card:hover .tab-img {
    transform: scale(1.04);
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: capitalize;
}

.category-badge .tab-icon {
    width: 14px;
    height: 14px;
    stroke: var(--white);
    stroke-width: 2.5px;
}

.connect-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

/* Dashboard List Column CSS */
.dashboard-list-col {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.list-heading-row h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
}

.places-count {
    font-size: 0.85rem;
    color: var(--gray-text);
    font-weight: 500;
}

.location-tab-list-wrapper {
    position: relative;
    width: 100%;
}

.location-list {
    list-style: none;
    display: none;
    flex-direction: column;
    gap: 0;
}

.location-list.active {
    display: flex;
    animation: fadeIn 0.45s ease forwards;
}

.location-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(101, 51, 136, 0.1);
    transition: var(--transition-fast);
}

.location-list li:last-child {
    border-bottom: none;
}

.location-list li:hover {
    transform: translateX(6px);
}

.landmark-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.loc-list-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.landmark-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.4;
}

.landmark-duration-badge {
    background-color: rgba(101, 51, 136, 0.08);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    white-space: nowrap;
    border: 1px solid rgba(101, 51, 136, 0.08);
    transition: var(--transition-fast);
}

.location-list li:hover .landmark-duration-badge {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Responsiveness adjustments for Dashboard */
@media (max-width: 991px) {
    .location-section-premium {
        padding: 50px 0;
    }

    .location-header-card {
        padding: 24px 30px;
        margin-bottom: 30px;
    }

    .location-title {
        font-size: 2rem;
    }

    .location-dashboard-card {
        grid-template-columns: 1fr;
    }

    .dashboard-img-frame {
        min-height: 250px;
        height: 250px;
    }

    .dashboard-list-col {
        padding: 30px;
    }

    .list-heading-row {
        margin-bottom: 16px;
    }
}

@media (max-width: 576px) {
    .location-header-card {
        padding: 20px;
    }

    .location-title {
        font-size: 1.65rem;
    }

    .location-tagline {
        font-size: 1.1rem;
    }

    .location-tabs-bar .loc-tab-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .dashboard-list-col {
        padding: 20px;
    }
}

/* --- NEW PREMIUM FLOOR PLANS LAYOUT --- */
.floor-plans-section {
    padding: 30px 0;
}

@media (max-width: 768px) {
    .floor-plans-section {
        padding: 20px 0;
    }
}

.floor-plan-main-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-top: 25px;
}

@media (max-width: 991px) {
    .floor-plan-main-card {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Styling */
.floor-plan-sidebar {
    background-color: var(--white);
    border-right: 1px solid var(--border-color);
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 991px) {
    .floor-plan-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        flex-direction: row;
        overflow-x: auto;
        padding: 20px;
        white-space: nowrap;
        gap: 12px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }
    
    .floor-plan-sidebar::-webkit-scrollbar {
        height: 6px;
    }
    
    .floor-plan-sidebar::-webkit-scrollbar-thumb {
        background-color: rgba(101, 51, 136, 0.2);
        border-radius: 4px;
    }
}

.floor-sidebar-tab {
    padding: 14px 20px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-text);
    text-align: left;
    transition: var(--transition-smooth);
    background-color: transparent;
    border: 1px solid transparent;
}

@media (max-width: 991px) {
    .floor-sidebar-tab {
        text-align: center;
        padding: 10px 20px;
        flex-shrink: 0;
        scroll-snap-align: start;
        font-size: 0.85rem;
    }
}

.floor-sidebar-tab:hover {
    color: var(--primary);
    background-color: rgba(101, 51, 136, 0.04);
}

.floor-sidebar-tab.active {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

/* Right Content Column Styling */
.floor-plan-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #fafbfc;
}

@media (max-width: 576px) {
    .floor-plan-content {
        padding: 24px 16px;
        gap: 20px;
    }
}

/* Image Frame */
.floor-plan-image-frame {
    position: relative;
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.02);
}

@media (max-width: 768px) {
    .floor-plan-image-frame {
        height: 280px;
        padding: 10px;
    }
}

.active-plan-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Sidebar CTA button positioning */
.floor-plan-sidebar .floor-plan-show-more-btn {
    margin-top: 15px;
    padding: 12px 20px;
    font-size: 0.9rem;
    text-align: center;
    justify-content: center;
    border-radius: 30px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .floor-plan-sidebar .floor-plan-show-more-btn {
        margin-top: 0;
        align-self: center;
        flex-shrink: 0;
        scroll-snap-align: start;
        font-size: 0.85rem;
        padding: 10px 20px;
    }
}

/* --- CONTACT SECTION --- */
.contact-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.contact-panel-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}

.contact-panel-desc {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: left;
}

.info-blocks-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-link,
.info-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
}

.info-link:hover {
    color: var(--light-purple);
    text-decoration: underline;
}

/* White Contact Form Card */
.contact-form-panel {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    color: var(--primary);
}

.contact-form-panel .form-input,
.contact-form-panel .form-textarea {
    background: var(--light-purple);
    border: 1px solid var(--border-color);
}

.form-container {
    padding: 48px;
    position: relative;
}

@media (max-width: 576px) {
    .form-container {
        padding: 32px 20px;
    }
}

.form-container h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-intro {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.95;
}

/* --- CUSTOM RADIO BUTTONS --- */
.radio-group-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 8px;
    align-items: center;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark-text);
    font-weight: 500;
    transition: opacity var(--transition-fast);
}

.radio-option:hover {
    opacity: 0.85;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    background-color: #f3f4f6;
    border-radius: 50%;
    position: relative;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.radio-custom::after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    transform: translate(-50%, -50%);
}

.radio-option input[type="radio"]:checked~.radio-custom {
    border-color: var(--primary);
    background-color: var(--primary);
}

.radio-option input[type="radio"]:checked~.radio-custom::after {
    display: block;
}

.radio-option input[type="radio"]:checked~.radio-label {
    color: var(--dark-text);
    font-weight: 600;
}

.radio-option input[type="radio"]:focus~.radio-custom {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.25);
}

.required {
    color: #ff5252;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--dark-text);
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.form-textarea {
    height: 100px;
    resize: none;
}

.error-msg {
    font-size: 0.75rem;
    color: #dc2626;
    margin-top: 2px;
    display: none;
    font-weight: 500;
}

.form-group.invalid .form-input {
    border-color: #dc2626;
    background-color: rgba(254, 242, 242, 0.95);
}

.form-group.invalid .error-msg {
    display: block;
}

#submit-btn {
    transition: var(--transition-smooth);
}

#submit-btn:hover {
    background-color: var(--white) !important;
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
}

/* Success Card overlay inside form box */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(101, 51, 136, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.form-success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.form-success-overlay.active .success-card {
    transform: translateY(0);
}

.success-checkmark {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--white);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke: var(--white);
    fill: none;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.success-card h4 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--white);
    color: var(--gray-text);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    padding: 65px 0 50px;
    border-bottom: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.footer-logo .logo-icon {
    background-color: #653388;
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    display: block;
    width: auto;
    height: 64px;
    object-fit: contain;
}



.project-tag-footer {
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    display: block;
    color: var(--secondary);
    font-weight: 700;
    margin-top: 2px;
}

.footer-desc {
    line-height: 1.6;
    color: var(--gray-text);
    text-align: justify;
}

.rera-badge-footer {
    background-color: var(--light-purple);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: fit-content;
}

.rera-badge-footer span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    font-weight: 600;
}

.rera-badge-footer strong {
    color: var(--dark-text);
    font-size: 0.85rem;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--light-purple);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--primary);
    margin-bottom: 0;
    padding-left: 0;
}

.footer-social-links a:hover {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    padding-left: 0 !important;
}

.footer-social-links a i {
    font-size: 18px;
    line-height: 1;
}

.footer-links h4,
.footer-contact-details h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: black;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-details p {
    margin-bottom: 16px;
    line-height: 1.6;
    color: var(--gray-text);
}

.footer-contact-details strong {
    color: var(--primary);
}

.footer-contact-details a {
    color: rgb(141, 137, 137);
    font-weight: 600;
    transition: var(--transition-fast);
}

.footer-contact-details a:hover {
    color: var(--secondary);
}

.footer-bottom {
    padding: 26px 0;
    background-color: var(--light-purple);
    font-size: 0.78rem;
    color: var(--gray-text);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.footer-bottom-flex p {
    line-height: 1.6;
    max-width: 48%;
}

@media (max-width: 768px) {
    .footer-bottom-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-flex p {
        max-width: 100%;
    }
}

/* --- LIGHTBOX MODAL & PREVIEW SYSTEM --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(23, 16, 31, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    max-width: 800px;
    width: 100%;
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.2rem;
    color: var(--gray-text);
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--primary);
}

.modal-header-text {
    margin-bottom: 24px;
}

.modal-header-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text);
}

.modal-header-text p {
    font-size: 0.85rem;
    color: var(--gray-text);
    margin-top: 4px;
}

.modal-content-img {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 450px;
    overflow: hidden;
}

.modal-content-img img {
    max-height: 400px;
    object-fit: contain;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

/* --- SCROLL-TRIGGERED ANIMATIONS (Intersection Observer) --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.card-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.card-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Pre-coded slideup for Hero Content elements */
.animate-slide-up {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 1.2s ease forwards;
    opacity: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* --- LOCATION MAP PAGE --- */
.location-map-section {
    background-color: var(--white);
}

.location-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .location-map-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .location-map-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.map-video-card,
.map-google-card {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 460px;
    background-color: var(--light-purple);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

@media (max-width: 576px) {

    .map-video-card,
    .map-google-card {
        height: 320px;
    }
}

.map-video-card:hover,
.map-google-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* Browser mock style header bar */
.browser-header {
    background-color: rgba(101, 51, 136, 0.04);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.browser-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.browser-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.browser-dot.red {
    background-color: #ff5f56;
}

.browser-dot.yellow {
    background-color: #ffbd2e;
}

.browser-dot.green {
    background-color: #27c93f;
}

.browser-address {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-text);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 3px 20px;
    border-radius: 12px;
    max-width: 55%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.browser-status-badge {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.browser-status-badge.live {
    background-color: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.browser-status-badge.map {
    background-color: rgba(101, 51, 136, 0.1);
    color: var(--primary);
}

.browser-content {
    flex: 1;
    width: 100%;
    position: relative;
}

.map-video-iframe,
.map-google-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* YouTube Video Placeholder Facade */
.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
}

.video-thumbnail-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-placeholder:hover .video-thumbnail-bg {
    transform: scale(1.04);
}

/* Gradients for text readability */
.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.video-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Header */
.video-header-overlay {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    color: #fff;
}

.video-channel-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    object-fit: cover;
    background-color: var(--white);
    padding: 2px;
}

.video-title-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: calc(100% - 52px);
}

.video-title {
    font-family: Roboto, Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.video-channel {
    font-family: Roboto, Arial, sans-serif;
    font-size: 0.78rem;
    color: #e0e0e0;
    margin-top: 1px;
    line-height: 1.1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Play Button */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 68px;
    height: 48px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-placeholder:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-svg {
    width: 100%;
    height: 100%;
}

.play-bg {
    fill: #ff0000;
    transition: fill 0.2s ease;
}






.video-share-btn:hover {
    background-color: rgba(0, 0, 0, 0.75);
    transform: scale(1.08);
}

.video-watch-on-yt {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(23, 23, 23, 0.85);
    padding: 6px 12px;
    border-radius: 3px;
    font-family: Roboto, Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: #ffffff;
    transition: background-color 0.2s ease;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.video-watch-on-yt:hover {
    background-color: rgba(23, 23, 23, 1);
}

.yt-logo-svg {
    fill: #ffffff;
}

@media (max-width: 576px) {
    .video-title {
        font-size: 0.85rem;
    }

    .video-channel {
        font-size: 0.72rem;
    }

    .video-channel-logo {
        width: 32px;
        height: 32px;
    }

    .video-play-button {
        width: 60px;
        height: 42px;
    }
}

/* --- BACK TO TOP BUTTON --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(101, 51, 136, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    box-shadow: 0 6px 16px rgba(101, 51, 136, 0.45);
    transform: translateY(-3px) scale(1.05);
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .back-to-top svg {
        width: 16px;
        height: 16px;
    }
}

/* --- ENQUIRY POPUP MODAL - MOBILE RESPONSIVE --- */
@media (max-width: 600px) {
    /* Overlay: center the modal and give standard edge padding */
    .modal-overlay {
        padding: 16px;
        align-items: center;
    }

    /* Container: override the inline padding:40px and center with rounded corners */
    #enquiry-modal .modal-container {
        padding: 24px 18px 28px !important;
        border-radius: 16px !important;
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Close button */
    #enquiry-modal .modal-close {
        top: 14px;
        right: 14px;
        font-size: 1.8rem;
    }

    /* Heading */
    #enquiry-modal h3 {
        font-size: 1.15rem !important;
        margin-bottom: 6px !important;
    }

    /* Intro text */
    #enquiry-modal p {
        font-size: 0.82rem !important;
        margin-bottom: 14px !important;
        line-height: 1.5;
    }

    /* Form gap */
    #popup-lead-form {
        gap: 12px !important;
    }

    /* Input fields */
    #enquiry-modal .form-input {
        padding: 10px 13px;
        font-size: 0.88rem;
    }

    /* Radio options: column layout so they never overflow */
    .radio-group-container {
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 8px;
        align-items: flex-start;
    }

    .radio-option {
        font-size: 0.88rem;
        gap: 10px;
    }

    /* Submit button */
    #enquiry-modal .btn-full {
        padding: 13px 20px;
        font-size: 0.95rem;
        margin-top: 4px !important;
    }
}