/* CSS FOR BDS X S LIGHT TOWER LANDING PAGE */

:root {
    --font-family: 'Noto Sans', sans-serif;
    --primary-navy: #0B2545;
    --secondary-navy: #134074;
    --gold-accent: #D4AF37;
    --gold-hover: #B89420;
    --gold-light: #FFF8E7;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

/* TYPOGRAPHY & UTILS */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 90px 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: var(--bg-white); }
.bg-navy { background-color: var(--primary-navy); }
.text-white { color: #FFFFFF !important; }
.text-dark { color: var(--text-dark) !important; }
.gold-text { color: var(--gold-accent); }
.text-center { text-center: center; text-align: center; }
.hidden { display: none !important; }
.mt-4 { margin-top: 1.5rem; }

.section-title {
    margin-bottom: 50px;
}

.section-title .sub-heading {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--secondary-navy);
    background-color: rgba(19, 64, 116, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title .sub-heading.gold-text {
    background-color: rgba(212, 175, 55, 0.15);
}

.section-title .sub-heading.dark-tag {
    background-color: rgba(11, 37, 69, 0.12);
    color: var(--primary-navy);
}

.section-title h2 {
    font-size: 2.25rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-gold {
    background: linear-gradient(135deg, #E6C687 0%, #D4AF37 50%, #B89420 100%);
    color: #0B2545;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #B89420 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

.btn-navy {
    background-color: var(--primary-navy);
    color: #FFFFFF;
}

.btn-navy:hover {
    background-color: var(--secondary-navy);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.btn-glow {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-full { width: 100%; }
.btn-xl { padding: 18px 36px; font-size: 1.15rem; }

/* STICKY HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(7, 23, 44, 0.92) 0%, rgba(11, 37, 69, 0.82) 100%);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(7, 23, 44, 0.98);
    border-bottom: 2px solid var(--gold-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.brand-badge {
    background: linear-gradient(135deg, #E6C687 0%, #D4AF37 100%);
    color: #0B2545;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.35);
}

.project-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    gap: 24px;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    padding: 6px 0;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-accent) !important;
    text-decoration: none !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #FFFFFF;
    cursor: pointer;
}

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

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: brightness(0.9) contrast(1.1);
    animation: bgKenBurns 22s infinite alternate ease-in-out;
    will-change: transform;
}

@keyframes bgKenBurns {
    0% {
        transform: scale(1.03) translate(0, 0);
    }
    50% {
        transform: scale(1.1) translate(-12px, -8px);
    }
    100% {
        transform: scale(1.06) translate(10px, 5px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 23, 44, 0.68) 0%, rgba(16, 42, 67, 0.58) 50%, rgba(7, 23, 44, 0.78) 100%);
    backdrop-filter: blur(2px);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

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

/* HERO FORM CARD */
.hero-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
}

.form-header h3 {
    color: var(--primary-navy);
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.lead-form .form-group {
    margin-bottom: 16px;
}

.lead-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.lead-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #CBD5E1;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.95rem;
    transition: var(--transition);
}

.lead-form input:focus {
    outline: none;
    border-color: var(--secondary-navy);
    box-shadow: 0 0 0 3px rgba(19, 64, 116, 0.15);
}

.trust-badge {
    margin-top: 14px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #15803D;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* LOCATION SECTION */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.location-map-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 420px;
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-map-card:hover .map-img {
    transform: scale(1.04);
}

.map-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(11, 37, 69, 0.9);
    backdrop-filter: blur(10px);
    color: var(--gold-accent);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid var(--gold-accent);
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-white);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid #E2E8F0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateX(8px);
    border-color: var(--gold-accent);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-light);
    color: var(--gold-hover);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.feature-info h4 {
    color: var(--primary-navy);
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.feature-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* DISTANCE ROW */
.distance-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.distance-item {
    position: relative;
    background: var(--bg-white);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-bottom: 4px solid var(--gold-accent);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.distance-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #E6C687 0%, #D4AF37 50%, #B38F29 100%);
    transition: width 0.4s ease;
    z-index: 2;
}

.distance-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 45px rgba(16, 42, 67, 0.16), 0 0 25px rgba(212, 175, 55, 0.35);
    border-color: rgba(212, 175, 55, 0.8) !important;
}

.distance-item:hover::before {
    width: 100%;
}

.dist-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 4px;
    transition: all 0.35s ease;
}

.distance-item:hover .dist-num {
    color: var(--gold-accent);
    transform: scale(1.1);
    text-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.dist-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.dist-label i {
    color: var(--gold-accent);
    margin-right: 4px;
    transition: all 0.35s ease;
}

.distance-item:hover .dist-label i {
    transform: scale(1.3) rotate(12deg);
    display: inline-block;
    color: var(--gold-hover);
}

/* INVESTMENT POTENTIAL */
.investment-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.inv-card {
    position: relative;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    border: 1px solid #E2E8F0;
    transition: var(--transition);
}

.inv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
    border-color: var(--gold-accent);
}

.inv-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.75rem;
    font-weight: 800;
    color: rgba(11, 37, 69, 0.1);
}

.inv-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-navy);
    color: var(--gold-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.inv-card h3 {
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.inv-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* MASONRY GALLERY */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    height: 250px;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    transition: var(--transition);
}

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

/* VIDEO SECTION */
.bg-navy { background-color: var(--primary-navy); }
.video-container {
    max-width: 900px;
    margin: 0 auto;
    height: 500px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gold-accent);
    color: var(--primary-navy);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #FFFFFF;
}

.video-frame {
    width: 100%;
    height: 100%;
}

/* AMENITIES GRID */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.amenity-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #E2E8F0;
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-6px);
    background: var(--bg-white);
    border-color: var(--gold-accent);
    box-shadow: var(--shadow-md);
}

.amenity-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 16px;
    background: var(--gold-light);
    color: var(--gold-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.amenity-card h4 {
    color: var(--primary-navy);
    font-size: 1rem;
    margin-bottom: 6px;
}

.amenity-card p {
    font-size: 0.825rem;
    color: var(--text-muted);
}

/* FLOORPLAN SECTION */
.floorplan-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 26px;
    border-radius: 50px;
    border: 1px solid #CBD5E1;
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary-navy);
    color: var(--gold-accent);
    border-color: var(--primary-navy);
}

.floorplan-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.floorplan-img-wrapper {
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floorplan-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.floorplan-info h3 {
    font-size: 1.75rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.plan-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.spec-item {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.spec-label { color: var(--text-muted); width: 100px; display: inline-block; }
.status-available { color: #16A34A; font-weight: 700; }

.plan-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* POLICY HIGHLIGHT */
.bg-gold-gradient {
    background: linear-gradient(135deg, #FFF9EB 0%, #FEF3D6 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.policy-highlight-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold-accent);
    max-width: 1000px;
    margin: 0 auto;
}

.policy-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-accent);
    color: var(--primary-navy);
    font-weight: 800;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.discount-rate {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.discount-rate span {
    color: #DC2626;
    font-size: 3rem;
    font-weight: 800;
}

.policy-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.policy-item {
    text-align: center;
    padding: 20px 10px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.policy-item i {
    font-size: 2rem;
    color: var(--gold-hover);
    margin-bottom: 12px;
}

.policy-item h4 {
    color: var(--primary-navy);
    font-size: 1rem;
    margin-bottom: 6px;
}

.policy-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* TIMELINE REASONS */
.timeline-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.timeline-step {
    background: var(--bg-light);
    padding: 24px 16px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary-navy);
    transition: var(--transition);
}

.timeline-step:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-left-color: var(--gold-accent);
    transform: translateY(-4px);
}

.step-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-accent);
    margin-bottom: 10px;
}

.step-content h4 {
    color: var(--primary-navy);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #E2E8F0;
}

.stars {
    color: #F59E0B;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h5 {
    color: var(--primary-navy);
    font-size: 0.95rem;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ ACCORDION */
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border: 1px solid #E2E8F0;
    overflow: hidden;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 1.05rem;
    color: var(--primary-navy);
    font-weight: 600;
}

.faq-header i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 24px 20px;
    display: none;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-top: 1px solid #F1F5F9;
    padding-top: 14px;
}

.faq-item.active .faq-body {
    display: block;
}

/* FINAL CTA */
.bg-navy-cta {
    background: linear-gradient(135deg, #0B2545 0%, #134074 100%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.badge-gold {
    display: inline-block;
    background: var(--gold-accent);
    color: var(--primary-navy);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.cta-box h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 35px;
}

.final-form .form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.final-form input {
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-family: var(--font-family);
    font-size: 0.95rem;
}

.final-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hotline-block {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hotline-block p {
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.hotline-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-accent);
    display: inline-block;
    margin-bottom: 20px;
}

.social-quick-buttons {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
}

.social-quick-buttons a,
.social-quick-buttons .btn {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    padding: 12px 6px !important;
    font-size: 0.85rem !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    border-bottom: none !important;
    letter-spacing: -0.2px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.social-quick-buttons a:hover,
.social-quick-buttons .btn:hover {
    text-decoration: none !important;
    border-bottom: none !important;
}

.btn-call { background: #E11D48; color: #FFF; }
.btn-zalo { background: #0068FF; color: #FFF; }
.btn-messenger { background: #0084FF; color: #FFF; }

/* FOOTER */
.site-footer {
    background: #07172C;
    color: #94A3B8;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

/* FLOATING ACTIONS & STICKY MOBILE */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    padding: 10px 16px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    gap: 12px;
}

.sticky-mobile-cta .btn {
    flex: 1;
    padding: 12px;
    font-size: 0.9rem;
}

.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.float-btn {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.3rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatWobble 3.5s infinite ease-in-out;
}

.float-phone {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    animation-delay: 0s;
}

.float-zalo {
    background: linear-gradient(135deg, #0084FF 0%, #0068FF 100%);
    font-size: 0.85rem;
    font-weight: 800;
    animation-delay: 0.6s;
}

.float-messenger {
    background: linear-gradient(135deg, #00B2FE 0%, #006AFF 100%);
    animation-delay: 1.2s;
}

/* Pulsing aura behind floating buttons */
.float-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    animation: floatRipple 2.2s infinite ease-out;
}

.float-phone::before { background: rgba(220, 38, 38, 0.6); animation-delay: 0s; }
.float-zalo::before { background: rgba(0, 104, 255, 0.6); animation-delay: 0.7s; }
.float-messenger::before { background: rgba(0, 132, 255, 0.6); animation-delay: 1.4s; }

.float-btn:hover {
    transform: scale(1.2) rotate(8deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

@keyframes floatWobble {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    15% { transform: translateY(-5px) rotate(-10deg); }
    30% { transform: translateY(0) rotate(10deg); }
    45% { transform: translateY(-3px) rotate(-5deg); }
    60% { transform: translateY(0) rotate(0deg); }
}

@keyframes floatRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.65);
        opacity: 0;
    }
}

/* MODAL LEAD POPUP */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.modal-card {
    position: relative;
    background: #FFFFFF;
    max-width: 480px;
    width: 100%;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-badge {
    display: inline-block;
    background: var(--gold-light);
    color: var(--gold-hover);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.modal-card h3 {
    color: var(--primary-navy);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.modal-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.modal-trust {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 14px;
}

/* LIGHTBOX MODAL */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2500;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.lightbox-overlay img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #FFFFFF;
    font-size: 2.5rem;
    cursor: pointer;
}

#lightboxCaption {
    color: #FFFFFF;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ANIMATION CLASSES */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ULTRA-PREMIUM INTERACTIVE CARD ANIMATIONS */
.feature-card,
.inv-card,
.amenity-card,
.policy-item,
.testimonial-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card::before,
.inv-card::before,
.amenity-card::before,
.policy-item::before,
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #E6C687 0%, #D4AF37 50%, #B38F29 100%);
    transition: width 0.4s ease;
    z-index: 2;
}

.feature-card:hover,
.inv-card:hover,
.amenity-card:hover,
.policy-item:hover,
.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(16, 42, 67, 0.14), 0 0 25px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.5) !important;
}

.feature-card:hover::before,
.inv-card:hover::before,
.amenity-card:hover::before,
.policy-item:hover::before,
.testimonial-card:hover::before {
    width: 100%;
}

.feature-card:hover .feature-icon,
.inv-card:hover .inv-icon,
.amenity-card:hover .amenity-icon,
.policy-item:hover .policy-icon {
    transform: scale(1.15) rotate(6deg);
    background: linear-gradient(135deg, #D4AF37 0%, #B38F29 100%) !important;
    color: #102A43 !important;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.35s ease;
}

.feature-card:hover .feature-num {
    color: var(--gold-accent) !important;
    opacity: 0.9 !important;
    transform: scale(1.15);
    transition: all 0.35s ease;
}

/* PROFESSIONAL IMAGE HOVER ZOOM ANIMATIONS */
.gallery-item,
.location-map-card,
.floorplan-img-wrapper,
.video-container {
    overflow: hidden;
    position: relative;
}

.gallery-item img,
.location-map-card img,
.floorplan-img-wrapper img,
.video-container img,
.map-img {
    transition: transform 0.65s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.65s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, filter;
}

.gallery-item:hover img,
.location-map-card:hover img,
.floorplan-img-wrapper:hover img,
.video-container:hover img {
    transform: scale(1.12) rotate(0.6deg);
    filter: brightness(1.08) contrast(1.05);
}

/* STYLE 1 FINAL CTA: GLASSMORPHISM OVER SKYLINE */
.cta-section-style1 {
    position: relative;
    background: linear-gradient(135deg, #07172C 0%, #102A43 50%, #050E1A 100%);
    overflow: hidden;
}

.cta-card-glass {
    position: relative;
    background: rgba(16, 42, 67, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 40px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.15);
    max-width: 900px;
    margin: 0 auto;
}

.cta-glass-header h2 {
    font-size: 2.2rem;
    color: #FFFFFF;
    margin: 16px 0 10px;
}

.cta-glass-header p {
    font-size: 1.05rem;
    color: #D9E2EC;
    margin-bottom: 30px;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: var(--gold-accent);
    font-size: 1rem;
}

.input-with-icon input {
    width: 100%;
    padding: 14px 16px 14px 45px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(7, 23, 44, 0.8);
    color: #FFFFFF;
    font-family: var(--font-family);
    font-size: 0.95rem;
}

.btn-full-submit {
    width: 100%;
    margin-top: 10px;
}

.hotline-glass-footer {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.hotline-number-glow {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-accent);
    display: inline-block;
    margin: 10px 0 20px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    text-decoration: none !important;
}

/* CUSTOM MESSENGER NOTICE MODAL (ZERO FLICKER) */
.messenger-notice-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 23, 44, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.messenger-notice-overlay.active {
    opacity: 1;
    visibility: visible;
}

.messenger-notice-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 35px 30px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 30px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.messenger-notice-overlay.active .messenger-notice-card {
    transform: scale(1);
}

.messenger-notice-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #829AB1;
    cursor: pointer;
    line-height: 1;
}

.messenger-notice-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #0084FF 0%, #00C6FF 100%);
    color: #FFFFFF;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 132, 255, 0.35);
}

.messenger-notice-card h3 {
    font-size: 1.35rem;
    color: #102A43;
    margin-bottom: 12px;
    font-weight: 700;
}

.messenger-notice-card p {
    font-size: 0.95rem;
    color: #486581;
    line-height: 1.6;
    margin-bottom: 22px;
}

.btn-notice-ok {
    width: 100%;
    padding: 12px 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
}

/* CUSTOM THANK YOU NOTICE MODAL (ZERO FLICKER) */
.thankyou-notice-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 23, 44, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.thankyou-notice-overlay.active {
    opacity: 1;
    visibility: visible;
}

.thankyou-notice-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.4);
    border: 2px solid var(--gold-accent);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.thankyou-notice-overlay.active .thankyou-notice-card {
    transform: scale(1);
}

.thankyou-notice-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #829AB1;
    cursor: pointer;
    line-height: 1;
}

.thankyou-notice-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    font-size: 2.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.35);
}

.thankyou-notice-card h3 {
    font-size: 1.4rem;
    color: #102A43;
    margin-bottom: 12px;
    font-weight: 800;
}

.thankyou-notice-card p {
    font-size: 0.98rem;
    color: #486581;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .location-grid { grid-template-columns: 1fr; }
    .distance-row { grid-template-columns: repeat(2, 1fr); }
    .investment-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .policy-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline-row { grid-template-columns: repeat(3, 1fr); }
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
    .floorplan-display { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .site-header { height: 70px; }
    .header-container { height: 70px; }
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #07172C;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(212, 175, 55, 0.3);
        transition: 0.3s ease;
        padding: 40px 30px;
        box-shadow: var(--shadow-lg);
    }
    .main-nav.active { left: 0; }
    .main-nav ul { flex-direction: column; gap: 20px; text-align: center; }
    .main-nav a {
        font-size: 1.2rem;
        color: #FFFFFF;
        display: block;
        padding: 12px 0;
        text-decoration: none;
    }
    .main-nav a:hover { color: var(--gold-accent); }
    .mobile-toggle { display: block; color: #FFFFFF; }
    .btn-header-cta { display: none; }
    .hero-title { font-size: 2rem; }
    .investment-cards-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .policy-grid { grid-template-columns: 1fr; }
    .timeline-row { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .final-form .form-row { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; gap: 30px; }
    .sticky-mobile-cta { display: flex; }
    .floating-contact { bottom: 75px; }
    .gallery-item.large { grid-column: span 1; }
    .video-container { height: 300px; }

    /* STYLE 1 GLASSMORPHISM MOBILE FIX */
    .cta-section-style1 {
        padding: 50px 0 110px !important;
    }
    .cta-card-style1 {
        padding: 30px 16px !important;
        border-radius: 24px !important;
    }
    .cta-glass-header h2 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }
    .form-grid-3 {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .btn-submit-style1 {
        width: 100% !important;
        font-size: 1rem !important;
        padding: 15px !important;
    }
    .cta-hotline-number {
        font-size: 1.6rem !important;
    }
}
