/* 
    Burgundy Mantra Luxury Line - Design System
    Colors: Burgundy (#800020), Gold (#D4AF37), White (#FFFFFF)
*/

:root {
    --burgundy: #630d16;
    --burgundy-dark: #4a0a10;
    --gold: #c5a059;
    --gold-light: #e0ca9e;
    --white: #ffffff;
    --off-white: #fcfaf8;
    --light-bg: #faf7f5;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-dark: rgba(99, 13, 22, 0.9);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Taviraj';
    src: url('/taviraj-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

h1,
h2,
h3,
.logo {
    font-family: 'Taviraj', serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--burgundy);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--burgundy-dark);
}

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

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-primary {
    background-color: var(--burgundy);
}

.text-white {
    color: var(--white);
}

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

.primary-text {
    color: var(--burgundy);
}

.gold-text {
    color: var(--gold);
}

.shadow {
    box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 0;
    /* Premium sharp corners or very slight round? Let's go with 2px for a modern sharp look */
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--burgundy-dark);
}

.btn-gold:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.btn-primary {
    background-color: var(--burgundy);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 13, 22, 0.3);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--burgundy);
}

.w-100 {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 12px 0;
    z-index: 1000;
    border-bottom: 3px solid var(--gold);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: var(--burgundy);
    line-height: 1;
}

.brand-main {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 4px;
}

.brand-sub {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
    opacity: 0.8;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 40px;
    margin-left: 80px;
    flex: 1;
}

.nav-links a {
    text-decoration: none;
    color: #999;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a.active {
    color: var(--burgundy);
}

.nav-links a:hover {
    color: var(--burgundy);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-contact-outline {
    border: 1px solid var(--burgundy);
    color: var(--burgundy);
    padding: 10px 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-contact-outline:hover {
    background-color: var(--burgundy);
    color: var(--white);
}

.header-phone-icon {
    color: var(--burgundy);
    font-size: 20px;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 0;
    padding-bottom: 56.17%;
    /* 16:9 Aspect Ratio for Desktop (2560x1438) */
    background: url('/images/hero1.jpeg') center/100% 100% no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    position: relative;
    color: var(--white);
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero .highlight {
    color: var(--gold);
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-btns .btn {
    margin-right: 20px;
}

/* Offers Section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--burgundy);
    margin-bottom: 15px;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 auto;
}

/* Offers Grid */
.offers-section {
    background: #fdfdfd;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.offer-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transition: var(--transition);
    transform-origin: bottom;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.offer-card:hover::before {
    transform: scaleY(1);
}

.offer-zero {
    font-size: 32px;
    font-weight: 800;
    color: var(--burgundy);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.offer-card h3 {
    font-size: 14px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.offer-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
}

/* Manish Malhotra Collaboration */
.mm-collab {
    background: #fff;
    padding: 100px 0;
}

.mm-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mm-image {
    flex: 1;
    position: relative;
}

.mm-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--burgundy);
}

.mm-text {
    flex: 1;
}

.mm-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.mm-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* Experience Burgundy Tabs */
.projects-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}

.tab-item {
    padding: 15px 30px;
    border: 1px solid #ddd;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.tab-item.active,
.tab-item:hover {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.project-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.project-content.active {
    display: block;
}

.project-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.project-info-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: var(--transition);
}

.project-info-image:hover {
    transform: scale(1.02);
}

.project-info-image img {
    width: 100%;
    display: block;
}

.offer-tag {
    display: inline-block;
    background: #fbf9f6;
    color: var(--burgundy);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 3px solid var(--gold);
    margin-bottom: 20px;
}

.project-info-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.project-info-text h3 {
    font-size: 34px;
    color: var(--burgundy);
    margin-bottom: 8px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.project-location {
    font-size: 15px;
    color: var(--burgundy);
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.small-details {
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    color: #555;
    max-width: 90%;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.highlights-list li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #444;
}

.highlights-list li i {
    color: var(--burgundy);
    margin-top: 4px;
    font-size: 14px;
}

.rera-info {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
    padding: 24px;
    background: #fbf9f6;
    border-radius: 4px;
    border: 1px solid #f2ece4;
    width: 100%;
    max-width: 550px;
}

.rera-info:hover {
    border-color: var(--gold);
    background: #fff;
    transition: var(--transition);
}

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

.rera-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.rera-no {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    line-height: 1.6;
}

.rera-qr-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.rera-qr-item {
    text-align: center;
}

.rera-qr-item img {
    width: 50px;
    height: 50px;
    display: block;
    border: 1px solid #eee;
    padding: 2px;
    background: #fff;
    margin-bottom: 4px;
}

.rera-qr-item small {
    display: block;
    font-size: 9px;
    color: #999;
    font-weight: 700;
}

/* VVIP Section */
.vvip-section {
    background: var(--burgundy-dark);
    padding: 100px 0;
    color: var(--white);
}

.vvip-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border: 1px solid rgba(187, 164, 128, 0.3);
    position: relative;
    overflow: hidden;
}

.vvip-content {
    flex: 1.2;
}

.vvip-tag {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.vvip-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--white);
}

.vvip-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
}

.vvip-perks {
    list-style: none;
    margin-bottom: 40px;
}

.vvip-perks li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--gold);
}

.vvip-perks i {
    width: 20px;
}

.vvip-visual {
    flex: 1;
}

.vvip-visual img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 20px 20px 0 var(--gold);
}

.gallery-section p.muted {
    font-size: 16px;
    color: #888;
    max-width: 600px;
    margin: 10px auto 30px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
}

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

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

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.luxury-card {
    background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
    position: relative;
    padding: 60px 40px;
    color: var(--white);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 13, 22, 0.95) 0%, rgba(30, 5, 8, 0.9) 100%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-subtitle {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.luxury-card h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--white);
}

.luxury-card p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 40px;
}

/* Updated Info Item */
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    font-size: 16px;
    flex-shrink: 0;
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item small {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.6;
    letter-spacing: 1px;
}

.info-item span {
    font-size: 16px;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    border-left: 2px solid var(--gold);
}

.info-item i {
    margin-right: 20px;
    color: var(--gold);
    font-size: 22px;
}

.btn-whatsapp-large {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-social a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--gold);
    color: var(--burgundy);
}

.contact-form {
    padding: 60px;
}

.form-input-group {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    border: 1px solid #bba480;
    padding: 0 20px;
    background: #fff;
    transition: var(--transition);
}

.form-input-group i {
    color: #8b7d4b;
    font-size: 20px;
    margin-right: 20px;
}

.form-input-group input,
.form-input-group textarea {
    width: 100%;
    border: none;
    padding: 20px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    outline: none;
    background: transparent;
    color: #333;
}



.form-input-group select {
    width: 100%;
    border: none;
    padding: 20px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    outline: none;
    background: transparent;
    color: #333;
    appearance: none;
    cursor: pointer;
}

.dropdown-arrow {
    position: absolute;
    right: 20px;
    font-size: 14px !important;
    pointer-events: none;
    color: #8b7d4b !important;
}

.textarea-group {
    align-items: flex-start;
}

.textarea-group i {
    margin-top: 24px;
}

.textarea-group textarea {
    height: 120px;
    resize: none;
}

.form-input-group:focus-within {
    box-shadow: 0 0 10px rgba(139, 125, 75, 0.2);
    border-color: var(--burgundy);
}

/* Footer */
/* Footer */
.main-footer {
    background: #fdfdfd;
    padding: 80px 0 0;
    color: #888;
    font-size: 14px;
}

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

.footer-box h4 {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-icon {
    color: #8b7d4b;
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
}

.footer-box p {
    line-height: 1.8;
    margin-bottom: 10px;
    max-width: 350px;
}

.map-link {
    color: #333;
    text-decoration: underline;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

.footer-middle {
    display: flex;
    justify-content: flex-end;
    gap: 80px;
    padding: 60px 0;
    border-top: 1px solid #f0f0f0;
}

.about-mantra {
    max-width: 500px;
    text-align: right;
}

.about-mantra h4,
.follow-us h4 {
    color: #333;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #444;
    font-size: 18px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--burgundy);
}

.footer-bottom {
    background: var(--burgundy);
    padding: 30px 0;
    position: relative;
    margin-top: 40px;
}

.footer-disclaimer {
    color: var(--white);
    text-align: center;
    margin-bottom: 25px;
    opacity: 0.8;
}

.footer-disclaimer p {
    font-size: 11px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    opacity: 1;
}

.award-badge {
    position: absolute;
    left: 40px;
    bottom: 20px;
    background: #9b8b6a;
    color: var(--white);
    padding: 25px 15px;
    text-align: center;
    border-radius: 12px;
    width: 140px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.award-title {
    display: block;
    font-size: 16px;
    margin-bottom: 15px;
}

.award-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.award-year {
    display: block;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-middle {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .about-mantra {
        margin: 0 auto;
        text-align: center;
    }

    .award-badge {
        position: static;
        margin: 0 auto 30px;
        width: 100%;
        max-width: 200px;
    }

    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Scroll Progress */


/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--burgundy);
    color: var(--white);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 998;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

#back-to-top:hover {
    background: var(--burgundy-dark);
    transform: translateY(-5px);
}

/* Sticky Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 999;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.sticky-item {
    flex: 1;
    padding: 12px;
    text-align: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-item i {
    margin-right: 8px;
}

.sticky-item.call {
    background: var(--burgundy);
}

.sticky-item.whatsapp {
    background: var(--burgundy);
}

.sticky-item.enquire {
    background: var(--burgundy);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.popup-content {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    border: 1px solid var(--gold);
    box-shadow: var(--shadow-lg);
    max-height: 90vh;
    overflow-y: auto;
}

.popup-inner h2 {
    color: var(--burgundy);
    margin-bottom: 10px;
}

.popup-inner p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.popup-form .form-input-group {
    margin-bottom: 15px;
    padding: 0 15px;
}

.popup-form .form-input-group input,
.popup-form .form-input-group select {
    padding: 12px 0;
    font-size: 14px;
}

.popup-form .form-input-group i {
    font-size: 16px;
    margin-right: 15px;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    z-index: 10;
}

.popup-tag {
    background: var(--burgundy);
    color: var(--white);
    padding: 4px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

/* Mobile Responsive */
/* Mobile Responsive */
@media (max-width: 991px) {
    .highlights-container {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    /* Improved Mobile Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 100px 40px 40px;
        transition: cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
        z-index: 1001;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.15);
        display: flex !important;
        margin-left: 0;
    }

    .nav-links::before {
        content: 'BURGUNDY';
        display: block;
        position: absolute;
        top: 40px;
        left: 40px;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 24px;
        color: var(--burgundy);
        letter-spacing: 2px;
        border-bottom: 2px solid var(--gold);
        padding-bottom: 10px;
        width: calc(100% - 80px);
    }

    .btn-contact-outline {
        display: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 0;
        padding: 20px 0;
        font-size: 16px;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--text-dark);
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links a::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 12px;
        color: var(--gold);
        opacity: 0.5;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a.active {
        color: var(--burgundy);
    }

    .menu-toggle {
        display: block;
        z-index: 1002;
        color: var(--burgundy);
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero {
        padding-top: 60px;
        background-size: 100% 100%;
        background-position: top center;
    }

    .sticky-bar {
        display: flex;
    }

    .mm-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .mm-text h2 {
        font-size: 32px;
    }

    .project-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-info-text {
        align-items: center;
        text-align: center;
    }

    .project-info-text h3 {
        font-size: 28px;
    }

    .small-details {
        max-width: 100%;
    }

    .highlights-list li {
        justify-content: center;
        text-align: center;
    }

    .rera-info {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        max-width: 100%;
    }

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

    .rera-qr-grid {
        justify-content: center;
    }

    .vvip-wrapper {
        flex-direction: column;
        padding: 30px 20px;
        gap: 40px;
        text-align: center;
    }

    .vvip-perks li {
        justify-content: center;
    }

    .vvip-content h2 {
        font-size: 28px;
    }

    /* Redesigned Mobile Contact Section */
    .contact-wrapper {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .contact-info,
    .luxury-card {
        text-align: center;
        padding: 40px 20px;
    }

    .luxury-card h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .info-item {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .info-item div {
        align-items: center;
    }

    .social-links {
        justify-content: center;
        display: flex;
    }

    .contact-form {
        padding: 40px 20px;
        border-top: 1px solid #eee;
    }

    /* Footer Fix for Sticky Bar */
    .main-footer {
        padding-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .residences-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-box p {
        margin: 0 auto 10px;
    }

    .brand-main {
        font-size: 22px;
    }

    .brand-sub {
        font-size: 8px;
    }

    .contact-info {
        padding: 40px 20px;
    }

    .contact-form {
        padding: 40px 20px;
    }

    /* Mobile Hero Override */
    .hero {
        padding-bottom: 142.22%;
        /* Portrait Aspect Ratio for Mobile (1800x2560) */
        background-image: url('/images/hero2.jpeg');
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .tab-item {
        padding: 10px 15px;
        font-size: 11px;
    }

    .btn {
        width: 100%;
        padding: 14px 20px;
    }
}