@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700;800;900&display=swap');

/* --- THEME ENGINE --- */
:root {
    --emerald-deep: #061612;
    --gold-primary: #d4af37;
    --gold-soft: #f4e4bc;
    --slate-accent: #1a2c28;
    --white: #ffffff;
    --border-glass: rgba(212, 175, 55, 0.15);
    --success: #50c878;
    
}

/* --- GLOBAL RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--emerald-deep);
    color: var(--gold-soft);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* --- BACKGROUND GLOW --- */
.glow-overlay {
    position: fixed;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    top: -20%;
    right: -20%;
    z-index: -1;
    pointer-events: none;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 22, 18, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.nav-content {
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1.2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

.logo .adda-text {
    color: var(--gold-primary);
    margin-left: 1px;
}

.logo .dot-in {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 1px;
}

.nav-links {
    display: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-soft);
    text-decoration: none;
    transition: 0.3s;
    opacity: 0.7;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--gold-primary);
}

.mobile-menu-btn {
    display: block;
    font-size: 1.5rem;
    color: var(--gold-primary);
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(6, 22, 18, 0.98);
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
}

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

.mobile-overlay a {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--gold-soft);
    text-decoration: none;
    letter-spacing: 3px;
}

.mobile-overlay .close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    color: var(--gold-primary);
    cursor: pointer;
    background: none;
    border: none;
}

/* --- BUTTONS --- */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-gold {
    background: var(--gold-primary);
    color: var(--emerald-deep);
    box-shadow: 0 8px 15px rgba(212, 175, 55, 0.2);
}

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

.btn:active {
    transform: scale(0.96);
}

/* --- SECTIONS --- */
.hero {
    padding: 120px 0 0px 0;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.2rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -2px;
}

.hero b {
    color: var(--gold-primary);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.hero p {
    color: var(--gold-soft);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.section-title {
    border-left: 5px solid var(--gold-primary);
    padding-left: 1.5rem;
    margin: 4rem 0 2rem;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}

.section-tag {
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--gold-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

/* --- MARKETPLACE GRID --- */
.turf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.turf-card {
    background: var(--slate-accent);
    border: 1px solid var(--border-glass);
    border-radius: 35px;
    overflow: hidden;
    transition: 0.4s ease;
}

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

.img-box {
    height: 240px;
    position: relative;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.status-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(80, 200, 120, 0.15);
    color: var(--success);
    padding: 7px 15px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 900;
    border: 1px solid var(--success);
    backdrop-filter: blur(10px);
}

.turf-body {
    padding: 2rem;
}

/* --- BENTO GRID --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.bento-card {
    background: var(--slate-accent);
    border: 1px solid var(--border-glass);
    border-radius: 40px;
    padding: 3rem;
    grid-column: span 12;
    transition: 0.3s;
}

.bento-card i {
    color: var(--gold-primary);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    display: block;
}

.bento-card h3 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
}

/* --- ACCORDION FAQ --- */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.faq-item {
    background: var(--slate-accent);
    border: 1px solid var(--border-glass);
    border-radius: 25px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item.active {
    border-color: var(--gold-primary);
}

.faq-question {
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
}

.faq-icon {
    color: var(--gold-primary);
    transition: 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.1);
}

.faq-answer-content {
    padding: 0 2rem 2rem 2rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

 /* Pricing Container */
    .pricing-wrapper {
        max-width: 1240px;
        margin: 0 auto;
    }

    /* Section Title */
    .section-title {
        border-left: 5px solid #d4af37;
        padding-left: 1.5rem;
        margin-bottom: 4rem;
    }

    .section-tag {
        font-size: 0.7rem;
        font-weight: 900;
        color: #d4af37;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 10px;
    }

    .section-title h2 {
        font-size: 2.2rem;
        font-weight: 800;
        color: #ffffff;
    }

    .section-title b { color: #d4af37; }

    /* Grid System */
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
        align-items: center;
    }

    /* Price Card Styling */
    .price-card {
        background: #1a2c28;
        border: 1px solid rgba(212, 175, 55, 0.15);
        border-radius: 45px;
        padding: 4rem 2.5rem;
        text-align: center;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
    }

    /* Featured Elite Card */
    .price-card.featured {
        border: 2px solid #d4af37;
        background: linear-gradient(145deg, #0a1f1a, #061612);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .popular-tag {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: #d4af37;
        color: #061612;
        padding: 6px 20px;
        border-radius: 50px;
        font-size: 0.65rem;
        font-weight: 900;
        letter-spacing: 1px;
    }

    .price-header h3 {
        font-size: 1.8rem;
        color: #ffffff;
        margin-bottom: 10px;
    }

    .price-header p {
        font-size: 0.9rem;
        opacity: 0.6;
        margin-bottom: 2rem;
    }

    .cost {
        font-size: 4rem;
        font-weight: 900;
        color: #d4af37;
        margin-bottom: 2rem;
        display: flex;
        justify-content: center;
        align-items: baseline;
    }

    .duration {
        font-size: 1rem;
        opacity: 0.5;
        font-weight: 400;
    }

    /* Feature List */
    .price-features {
        list-style: none;
        margin-bottom: 3rem;
        text-align: left;
    }

    .price-features li {
        margin-bottom: 15px;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 12px;
        color: #f4e4bc;
    }

    .price-features i.fa-check { color: #50c878; }
    .price-features i.fa-times { color: #ff4d4d; opacity: 0.5; }

    /* Interactive Buttons */
    .price-card .btn {
        width: 100%;
        padding: 1rem;
        border-radius: 15px;
        font-weight: 800;
        text-transform: uppercase;
        font-size: 0.8rem;
        transition: 0.3s;
    }

    .btn-gold { background: #d4af37; color: #061612; border: none; }
    .btn-outline { background: transparent; border: 1px solid #d4af37; color: #d4af37; }

    .price-card:hover {
        transform: translateY(-10px);
    }

    /* Mobile Responsive Logic */
    @media (max-width: 768px) {
        .pricing-grid {
            gap: 1.5rem;
        }
        
        .price-card {
            padding: 3rem 1.5rem;
        }

        .cost {
            font-size: 3rem;
        }
    }

    .active-text{
        color: var(--gold-primary) !important;
    }

/* --- CONCIERGE --- */
.concierge-box {
    background: linear-gradient(145deg, var(--slate-accent), #061612);
    border: 1px solid var(--border-glass);
    border-radius: 40px;
    padding: 5rem 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}


/* --- FOOTER --- */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-glass);
    background: #040d0b;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
    /* Vertical gap 40px, Horizontal gap 20px */
}

/* Default Desktop View: 4 Columns */
.footer-col {
    flex: 1 1 200px;
}

/* Mobile View Logic */
@media (max-width: 767px) {

    /* Row 1: Brand Column (Full Width) */
    .footer-col-brand {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer-col-brand .logo {
        justify-content: center;
    }

    .footer-col-brand p {
        margin: 20px auto;
    }

    .footer-col-brand div {
        justify-content: center;
    }

    /* Row 2: Links and Support (Two Columns in one row) */
    .footer-col-links,
    .footer-col-support {
        flex: 1 1 calc(50% - 10px);
        /* 50% width minus half the gap */
    }

    /* Row 3: Trust Badge (Full Width) */
    .footer-col-badge {
        flex: 1 1 100%;
    }
}

/* Styling for content inside columns */
.footer-col h4 {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.footer-col li {
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--gold-soft);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--gold-primary);
    opacity: 1;
}

.badge-box {
    border: 1px solid var(--gold-primary);
    padding: 20px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.05);
    text-align: center;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .bento-8 {
        grid-column: span 8;
    }

    .bento-4 {
        grid-column: span 4;
    }

    
}

/* --- COMON PAGE HEADER --- */
.page-header-hero { padding: 120px 0 20px; text-align: center; }
.page-header-hero h1 { font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 900; color: var(--white); margin-bottom: 1rem; }
.page-header-hero b { color: var(--gold-primary); }
.page-hero p { opacity: 0.6; max-width: 100%; margin: 1.5rem auto 0; font-size: 1.1rem; }

/* Section Container Styling */
.stat-section-container {
    /* padding: 4rem 0; */
    max-width: 1240px;
    margin: 0 auto;
}


/* Stat Grid Logic */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* Individual Stat Box Styling */
.stat-box {
    background: #1a2c28;
    /* Slate Accent */
    border: 1px solid rgba(212, 175, 55, 0.15);
    /* Border Glass */
    padding: 3rem 1.5rem;
    border-radius: 30px;
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-box:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #d4af37;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    opacity: 0.6;
}

/* Mobile Responsive Adjustments */
@media (max-width: 600px) {
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 grid on small mobiles */
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }
}