@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #DE006F;
    --primary-dark: #E74C3C;
    --accent: #FFD700;
    --bg-dark: #0b0b0b;
    --bg-card: #1a1a1a;
    --text-white: #ffffff;
    --text-muted: #ababab;
    --glass: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Global resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-white);
    background-color: var(--bg-dark) !important;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.pd-tb { padding: 40px 0; }
.section { padding: 80px 0; }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container-fluid {
    padding: 0 5%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }

p {
    margin-bottom: 20px;
    color: var(--text-white);
    text-align: justify;
}

p a, p strong {
    color: var(--primary);
    font-weight: 600;
}

/* Header & Nav */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 11, 11, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass);
}

.menu-bg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.mob-logo img {
    height: 50px;
    width: auto;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu li a {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
}

.menu li.active a, .menu li a:hover {
    background: var(--primary);
}

/* Banner */
.bannerBox1 {
    width: 100%;
    overflow: hidden;
}

.bannerBox1 img {
    width: 100%;
    display: block;
}

/* Profile Cards */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.col-xs-3 {
    width: 25%;
    padding: 15px;
}

.speaker-block {
    display: block;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--glass);
    box-shadow: var(--shadow);
}

.speaker-block:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.image-box {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.image-box img.full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.speaker-block:hover .full-img {
    transform: scale(1.1);
}

.verified {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.verified img {
    width: 12px;
}

.list-info-pop {
    padding: 20px;
    text-align: center;
}

.list-info-pop h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
}

.list-info-pop p {
    font-size: 13px;
    margin: 0;
    color: var(--text-muted);
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass);
}

th, td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--glass);
}

th {
    background-color: var(--primary);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* FAQ */
.faq-container {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--glass);
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover, .faq-question.active {
    background: var(--primary);
}

.faq-answer {
    display: none;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--primary);
}

/* Footer & Copyright */
footer {
    background: #050505;
    padding: 60px 0;
    border-top: 1px solid var(--glass);
}

.copyright {
    padding: 10px 0 15px;
    border-top: 1px solid var(--glass);
    text-align: center;
}

.copyright p { text-align: center; font-size: 14px; }

/* Sticky Bar */
.nowcalling {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.lcol, .rcol {
    flex: 1;
    text-align: center;
}

.lcol a, .rcol a {
    display: block;
    padding: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lcol { background: var(--primary-dark); }
.rcol { background: #25D366; } /* WhatsApp Green */

/* Mobile Menu Button */
.menu-icon { display: none; }
.menu-btn { display: none; }

/* Location List */
.sec-title ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.tt {
    background: var(--bg-card);
    border: 1px solid var(--glass);
    padding: 10px 20px;
    border-radius: 30px;
}

.tt a { color: var(--primary); font-weight: 600; }

/* Responsive */
@media (max-width: 991px) {
    .col-xs-3 { width: 50%; }
}

@media (max-width: 767px) {
    header .container { padding: 0 15px; }
    .menu { display: none; }
    .menu-icon { display: block; cursor: pointer; color: #fff; }
    .col-xs-3 { width: 100%; }
    .pd-tb { padding: 30px 0; }
    .section { padding: 50px 0; }
}

/* Premium Feature Sections */
.feature-section {
    padding: 0px 0;
    overflow: hidden;
    background: var(--bg-dark);
}

.feature-container {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow);
}

.feature-image, .feature-content {
    flex: 1;
    min-width: 400px;
}

.feature-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.feature-section:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 4px solid var(--primary);
}

.feature-section.reverse .feature-container {
    flex-direction: row-reverse;
}

.feature-section.reverse .feature-content {
    border-left: none;
    border-right: 4px solid var(--primary);
}

.feature-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-white);
    line-height: 1.2;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    width: fit-content;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-btn:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .feature-section {
        padding: 50px 20px;
    }
    .feature-container {
        flex-direction: column !important;
    }
    .feature-image, .feature-content {
        min-width: 100%;
    }
    .feature-image img {
        height: 400px;
    }
    .feature-content {
        padding: 40px 30px;
        border: none;
        border-top: 4px solid var(--primary);
    }
    .feature-section.reverse .feature-content {
        border-right: none;
    }
    .feature-content h2 {
        font-size: 2rem;
    }
}

/* City Selector */
.city-bar {
    background: linear-gradient(to right, rgba(222, 0, 111, 0.1), rgba(0, 0, 0, 0.5));
    border-bottom: 1px solid var(--primary);
    padding: 20px 0;
}

.city-selector-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-select {
    background: var(--bg-card);
    color: #fff;
    border: 2px solid var(--primary);
    padding: 10px 40px;
    border-radius: 50px;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    max-width: 800px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    text-align: center;
}

.city-select:hover {
    background: var(--primary);
    box-shadow: 0 0 30px rgba(222, 0, 111, 0.6);
}

.city-select option {
    background: var(--bg-card);
    color: #fff;
    font-size: 16px;
    text-align: left;
}

/* Age Verification Modal */
.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 1px solid var(--glass);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
}

.age-modal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(222, 0, 111, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.age-modal h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.age-modal p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: var(--text-muted);
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-continue {
    background: var(--primary);
    color: #fff;
}

.btn-continue:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-exit {
    background: transparent;
    color: #fff;
    border-color: var(--glass);
}

.btn-exit:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

@media (max-width: 767px) {
    .city-bar {
        padding: 15px 0;
    }
    .city-selector-bottom {
        padding: 0 15px;
    }
    .city-select {
        padding: 10px 20px;
        font-size: 16px;
        max-width: 100%;
    }
    .age-modal {
        padding: 30px 20px;
    }
    .age-modal h2 {
        font-size: 1.8rem;
    }
}