/* CSS FOR BDS X SIMONA HEIGHTS QUY NHƠN LANDING PAGE */

:root {
    --font-family: 'Noto Sans', sans-serif;
    --primary-teal: #005F73;
    --secondary-teal: #0A9396;
    --primary-navy: #0F4C81;
    --gold-accent: #D4AF37;
    --gold-hover: #B89420;
    --gold-light: #FFF9EB;
    --bg-light: #F4F7F6;
    --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;
}

.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); }
.text-white { color: #FFFFFF !important; }
.gold-text { color: var(--gold-accent); }
.text-center { text-align: center; }
.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(--primary-teal);
    background-color: rgba(0, 95, 115, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.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: #0F4C81;
    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);
}

.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-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; }

/* 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(15, 76, 129, 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,
.logo *,
.footer-logo,
.footer-logo *,
.brand-badge,
.project-name {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    border-bottom: none !important;
}

.brand-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E6C687 0%, #D4AF37 100%);
    color: #0F4C81;
    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 {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFFFFF;
}

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

.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;
}

/* 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-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    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(15, 76, 129, 0.85) 0%, rgba(0, 95, 115, 0.75) 50%, rgba(0, 0, 0, 0.8) 100%);
    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;
}

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

.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);
}

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

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

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

.lead-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.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;
}

.trust-badge {
    margin-top: 14px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #15803D;
}

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

.loc-highlight {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-teal);
    margin-bottom: 24px;
}

.loc-highlight i {
    font-size: 2rem;
    color: var(--primary-teal);
    margin-bottom: 10px;
}

.loc-highlight h3 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin-bottom: 6px;
}

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

.metric-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-white);
    padding: 18px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

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

.metric-item h4 {
    color: var(--primary-navy);
    font-size: 1.1rem;
}

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

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

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

.loc-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 76, 129, 0.9);
    color: var(--gold-accent);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
}

/* AMENITIES LUXURY GRID */
.amenities-grid-luxury {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.amenity-box {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 320px;
    box-shadow: var(--shadow-md);
}

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

.amenity-box:hover img {
    transform: scale(1.08);
}

.amenity-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 24px;
    background: linear-gradient(to top, rgba(15, 76, 129, 0.95) 0%, rgba(15, 76, 129, 0.5) 70%, transparent 100%);
    color: #FFFFFF;
}

.amenity-content i {
    font-size: 1.8rem;
    color: var(--gold-accent);
    margin-bottom: 8px;
}

.amenity-content h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.amenity-content p {
    font-size: 0.85rem;
    opacity: 0.9;
}

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

.p-tab-btn {
    padding: 12px 24px;
    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);
}

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

.plan-card-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);
}

.plan-img-box {
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

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

.p-features-list p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.p-features-list i {
    color: var(--primary-teal);
    width: 24px;
}

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

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

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

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

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

.s-g-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 76, 129, 0.7);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.s-g-item:hover .s-g-overlay {
    opacity: 1;
}

/* POLICY TEAL GRADIENT */
.bg-teal-gradient {
    background: linear-gradient(135deg, #005F73 0%, #0F4C81 100%);
}

.gold-badge,
.section-title .gold-badge,
.section-title .sub-heading.gold-badge {
    background: var(--gold-accent) !important;
    color: var(--primary-navy) !important;
    font-weight: 800 !important;
    font-size: 0.85rem !important;
    padding: 8px 24px !important;
    border-radius: 50px !important;
    display: inline-block !important;
    margin-bottom: 20px !important;
}

.policy-boxes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.p-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 40px 30px;
}

.p-box-icon {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 16px;
}

.p-box h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.p-box p {
    font-size: 0.95rem;
    opacity: 0.9;
}

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

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

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

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

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

/* CTA CUỐI TRANG */
.bg-navy-cta {
    background: linear-gradient(135deg, #0F4C81 0%, #07172C 100%);
}

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

.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);
}

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

.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 { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }

/* FLOATING & STICKY */
.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 */
.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); }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: #FFF; font-size: 2.5rem; cursor: pointer; }
#lightboxCaption { color: #FFF; margin-top: 15px; font-weight: 600; }

/* FADE ANIMATION */
.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 */
.metric-item,
.amenity-box,
.p-box,
.policy-box {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.metric-item::before,
.amenity-box::before,
.p-box::before,
.policy-box::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;
}

.metric-item:hover,
.amenity-box:hover,
.p-box:hover,
.policy-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(15, 76, 129, 0.14), 0 0 25px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.5) !important;
}

.metric-item:hover::before,
.amenity-box:hover::before,
.p-box:hover::before,
.policy-box:hover::before {
    width: 100%;
}

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

/* PROFESSIONAL IMAGE HOVER ZOOM ANIMATIONS */
.simona-gallery div,
.map-card,
.portfolio-img-wrapper {
    overflow: hidden;
    position: relative;
}

.simona-gallery img,
.map-card img,
.portfolio-img-wrapper 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;
}

.simona-gallery div:hover img,
.map-card:hover img,
.portfolio-img-wrapper:hover img {
    transform: scale(1.12) rotate(0.6deg);
    filter: brightness(1.08) contrast(1.05);
}

/* STYLE 2 FINAL CTA: SWISS SPLIT-SCREEN LAYOUT */
.cta-style2-split {
    background: linear-gradient(135deg, #0A192F 0%, #0F4C81 50%, #0A192F 100%);
    position: relative;
    overflow: hidden;
}

.cta-split-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    background: rgba(15, 76, 129, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 50px 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.cta-split-left h2 {
    font-size: 2.2rem;
    color: #FFFFFF;
    margin: 16px 0 12px;
}

.cta-lead-desc {
    font-size: 1.05rem;
    color: #D9E2EC;
    margin-bottom: 24px;
}

.split-benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.split-benefits-list li {
    font-size: 1rem;
    color: #FFFFFF;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.split-benefits-list i {
    color: var(--gold-accent);
    font-size: 1.2rem;
}

.split-hotline-box {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-accent);
    padding: 16px 20px;
    border-radius: 16px;
    display: inline-block;
}

.split-hotline-box span {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #E6C687;
    margin-bottom: 4px;
}

.split-phone-link {
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFFFFF;
    text-decoration: none !important;
}

.split-form-card {
    background: #FFFFFF;
    color: #0F4C81;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.split-form-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #0F4C81;
}

.split-form-card p {
    font-size: 0.9rem;
    color: #627D98;
    margin-bottom: 20px;
}

.split-quick-btns {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.split-quick-btns .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.85rem;
}

/* 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: #0F4C81;
    margin-bottom: 12px;
    font-weight: 800;
}

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

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; }
    .location-layout { grid-template-columns: 1fr; }
    .amenities-grid-luxury { grid-template-columns: repeat(2, 1fr); }
    .simona-gallery { grid-template-columns: repeat(2, 1fr); }
    .policy-boxes-container { grid-template-columns: 1fr; }
    .plan-card-display { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .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;
    }
    .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; }
    .amenities-grid-luxury { 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; }

    /* STYLE 2 SWISS SPLIT MOBILE FIX */
    .cta-style2-split {
        padding: 40px 0 110px !important;
    }
    .cta-split-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 30px 16px !important;
        border-radius: 20px !important;
    }
    .cta-split-left h2 {
        font-size: 1.55rem !important;
        line-height: 1.3 !important;
    }
    .cta-lead-desc {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }
    .split-benefits-list li {
        font-size: 0.92rem !important;
        margin-bottom: 10px !important;
    }
    .split-form-card {
        padding: 24px 16px !important;
        border-radius: 18px !important;
        width: 100% !important;
    }
    .split-form-card h3 {
        font-size: 1.3rem !important;
    }
    .split-quick-btns {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .split-phone-link {
        font-size: 1.4rem !important;
    }
}
