:root {
    --gold-primary: #c9a84c;
    --gold-light: #e0ca79;
    --gold-dark: #a18331;
    --navy-bg: #080d1e;
    --navy-light: #111a33;
    --text-white: #ffffff;
    --text-light: #b0b8c8;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-white);
    background-color: var(--navy-bg);
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.gold-divider {
    height: 2px;
    width: 60px;
    background-color: var(--gold-primary);
    margin-bottom: 2rem;
}

.gold-divider.center {
    margin: 0 auto 2rem auto;
}

.body-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--gold-primary);
    color: var(--navy-bg);
}

.btn-primary:hover {
    background-color: var(--gold-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
}

.btn-outline:hover {
    background-color: rgba(201, 168, 76, 0.1);
}

.btn-small {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
}

/* 1. HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-image-container {
    width: 100%;
    margin-top: 100px;
    padding: 0 5%;
}

.hero-responsive-image {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 65vh;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 13, 30, 0.9) 0%, rgba(8, 13, 30, 0.6) 50%, rgba(8, 13, 30, 0.8) 100%);
    z-index: 1;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(8, 13, 30, 0.95);
    padding: 1rem 5%;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 48px;
    width: auto;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-mark {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: var(--gold-primary);
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.desktop-nav a:hover {
    color: var(--gold-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--navy-bg);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    max-width: 800px;
}

.subtitle {
    font-size: 0.75rem;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.subtitle .highlight {
    color: var(--gold-primary);
    font-weight: 600;
}

.main-title {
    font-size: 8rem;
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 700;
}

.main-title .highlight-text {
    color: var(--gold-primary);
}

.location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.location i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.separator-line {
    display: flex;
    align-items: center;
    width: 60%;
    margin-bottom: 2rem;
}

.separator-line::before {
    content: '';
    height: 1px;
    width: 40px;
    background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.diamond {
    width: 6px;
    height: 6px;
    background-color: var(--gold-primary);
    transform: rotate(45deg);
    margin: 0 10px;
}

.separator-line::after {
    content: '';
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
    opacity: 0.3;
}

.action-buttons {
    display: flex;
    gap: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gold-primary);
    cursor: pointer;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* 2. OVERVIEW */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 4px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    border-left: 2px solid var(--gold-primary);
    padding-left: 1rem;
}

.stat-value {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* 3. AMENITIES */
.amenities-section {
    background-color: var(--navy-light);
}

.amenities-selector {
    margin-top: 3rem;
}

.selector-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    cursor: pointer;
    padding-bottom: 0.5rem;
    position: relative;
    transition: var(--transition-smooth);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--gold-primary);
    transition: var(--transition-smooth);
}

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

.tab-btn.active::after {
    width: 100%;
}

.selector-content {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
}

.amenity-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.amenity-image.active {
    opacity: 1;
    z-index: 1;
}

.amenity-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, var(--navy-bg), transparent);
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.amenities-icons {
    grid-template-columns: repeat(6, 1fr);
}

.icon-box {
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: var(--navy-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.icon-box:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.icon-box i {
    font-size: 2.5rem;
    color: var(--gold-primary);
}

.icon-box span {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* 4. RESIDENCES */
.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.residence-card {
    background-color: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 4px;
    position: relative;
    transition: var(--transition-smooth);
}

.residence-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
}

.highlight-card {
    border-color: rgba(201, 168, 76, 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold-primary);
    color: var(--navy-bg);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.card-header .price {
    color: var(--gold-primary);
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.features-list i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

/* 5. GALLERY */
.gallery-section {
    background-color: var(--navy-bg);
}

.gallery-carousel, .plan-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 3rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(14, 18, 30, 0.7);
    color: var(--gold-primary);
    border: 1px solid var(--gold-secondary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-nav:hover {
    background: var(--gold-primary);
    color: var(--navy-bg);
}

.carousel-nav i {
    font-size: 1.5rem;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.plan-slide {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
    background-color: #fff;
    cursor: pointer;
}



.gallery-slide.active, .plan-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: all;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(8, 13, 30, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 3rem;
    opacity: 1;
    z-index: 2;
}

.plan-item .gallery-overlay {
    display: none !important;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* 6. LOCATION */
.distance-list {
    list-style: none;
}

.distance-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dist-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.5rem;
}

.dist-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.dist-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.map-container {
    height: 500px;
    border-radius: 4px;
    overflow: hidden;
    /* Invert filter to make standard google map dark */
    filter: invert(90%) hue-rotate(180deg) brightness(80%) contrast(120%);
}

.mobile-map {
    display: none;
}

/* 7. CONTACT */
.contact-section {
    background-color: var(--navy-light);
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-top: 2px;
}

.enquiry-form {
    background-color: var(--navy-bg);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--text-white);
    font-family: var(--font-body);
}

select option {
    background: #ffffff;
    color: #000000;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.form-success {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    text-align: center;
    border-radius: 2px;
}

/* 8. FOOTER */
.footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 4rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-desc {
    color: var(--text-light);
    margin-top: 1.5rem;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-light);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-rera p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.rera-link {
    color: var(--gold-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.rera-link:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.created-by {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.02em;
}

.realtor-guide-link {
    color: #c9a84c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.realtor-guide-link:hover {
    color: #f0c866;
    text-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
    text-decoration: underline;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a:hover {
    color: var(--gold-primary);
}

/* Responsive */
@media (max-width: 992px) {
    .split-layout, .split-layout.reverse {
        flex-direction: column;
        gap: 3rem;
    }
    
    .mobile-map {
        display: block;
        height: 250px;
        margin: 2rem 0;
        border-radius: 4px;
        overflow: hidden;
        filter: invert(90%) hue-rotate(180deg) brightness(80%) contrast(120%);
    }
    
    .location-section .split-image.map-container {
        display: none;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-carousel {
        height: 450px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .carousel-nav {
        display: none !important;
    }

    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .container {
        padding: 0 1rem;
        max-width: 100vw;
        overflow: hidden;
    }

    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-section {
        background-color: var(--navy-bg);
    }

    .hero-image-container {
        padding: 0 1.5rem;
        margin-top: 80px;
    }

    .hero-responsive-image {
        max-height: 50vh;
    }
    
    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: rgba(8, 13, 30, 0.98);
        border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    }
    
    .desktop-nav, .header-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .main-title {
        font-size: 3rem; /* Tighter font size */
    }

    .body-text {
        font-size: 1rem;
    }
    
    .hero-content {
        justify-content: flex-start;
        padding-top: 2rem; 
    }

    .action-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .action-buttons .btn {
        width: 100%;
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .icon-grid {
        grid-template-columns: 1fr; /* Stack icons entirely */
    }
    
    .selector-tabs {
        display: none; /* Hide the tabs on mobile so only the image name is visible */
    }
    
    .amenity-image {
        background-size: contain; /* Prevents zooming/cropping on mobile */
    }
    
    .selector-content, .gallery-carousel, .map-container {
        height: 250px; /* Much smaller height for small phones */
        border-radius: 4px;
    }
    
    .plan-carousel {
        height: 250px;
        margin-top: 1.5rem;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    .gallery-overlay span {
        font-size: 1.25rem;
    }
    
    .contact-item {
        font-size: 0.95rem;
        flex-wrap: wrap;
    }
    
    .enquiry-form {
        padding: 1.25rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding-bottom: 2rem;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 28px;
    }
    
    .modal-content {
        padding: 1.5rem;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-title {
        font-size: 1.5rem;
    }
}

/* 3D Animations & Scroll Reveals */
.reveal-3d {
    opacity: 0;
    transform: perspective(1000px) rotateX(15deg) translateY(50px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
}

.reveal-3d.active {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) translateY(0);
}

.js-tilt-glare {
    border-radius: inherit;
}

/* Modal and Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.85rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1.4;
    text-align: left;
}

.legal-link {
    color: var(--gold-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition-smooth);
}

.legal-link:hover {
    color: var(--gold-light);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 13, 30, 0.9);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--navy-light);
    padding: 3rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid rgba(201, 168, 76, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--gold-primary);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--gold-primary);
}

.modal-desc {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* Locked state styles */

.plan-item .lock-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(8, 13, 30, 0.5);
    color: var(--gold-primary);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none; /* Let clicks pass to the container */
}

.plan-item.locked {
    background-color: transparent !important;
}

.plan-item.locked .lock-overlay {
    opacity: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

.plan-item.locked:hover .lock-overlay {
    background: rgba(8, 13, 30, 0.7);
}

.plan-item.locked .lock-overlay span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 13, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border: 2px solid var(--gold-primary);
    border-radius: 8px;
    background: #fff;
    padding: 1rem;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--gold-primary);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}
