/* style.css */
:root {
    --bg-dark: #09090b;
    --bg-card: #18181b;
    --bg-card-hover: #27272a;
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --accent: #d4af37; /* Gold */
    --accent-hover: #f1c40f;
    --border: rgba(255, 255, 255, 0.1);
    --font-family: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

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

.section-padding {
    padding: 80px 0;
}

.dark-bg {
    background-color: #050505;
}

.mt-20 {
    margin-top: 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.gradient-text {
    background: linear-gradient(to right, #d4af37, #fdfbfb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    margin-bottom: 50px;
}

.max-w-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent);
    color: #000;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    display: inline-block;
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--accent);
    color: #000;
}

/* Header Split */
.split-header {
    display: flex;
    height: 100vh;
    min-height: 600px;
}

.header-half {
    flex: 1;
    position: relative;
}

.header-image {
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(9,9,11,1));
}

.header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
    background-color: var(--bg-dark);
}

.header-inner {
    max-width: 500px;
}

.table-container{
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.header-inner h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.header-inner .subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px;
    gap: 10px;
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 15px;
    color: var(--text-secondary);
}

.search-input-wrapper input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    padding: 10px;
    width: 100%;
    outline: none;
}

/* Video Section */
.video-section {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.bg-video {
    width: auto;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-overlay:hover {
    background: rgba(0,0,0,0.3);
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--accent);
    color: #000;
}

/* Features Section (Premium) */
.features-section {
    background: url('img/escorts-whatsapp-number.webp') center/cover fixed;
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5, 5, 5, 0.85); /* Dark overlay */
    backdrop-filter: blur(8px);
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card-premium {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 40px;
    border-radius: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
    background: rgba(24, 24, 27, 0.8);
}

.feature-card-premium .icon-box {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent);
}

.feature-card-premium .content-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.feature-card-premium .content-box p {
    color: #b0b0b0;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Profile Section (6 Profiles, 2 per row) */
.grid-2-rows {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.profile-list-card {
    display: flex;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.profile-list-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.profile-list-img {
    flex: 0 0 200px;
    background-size: cover;
    background-position: center;
}

.profile-list-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.profile-list-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status.online { background-color: #2ecc71; }
.status.offline { background-color: #e74c3c; }

.profile-list-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Simple Profiles (Image & Name Only) */
.grid-4-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.simple-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.simple-card .card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.simple-card:hover .card-img {
    transform: scale(1.05);
}

.simple-card .card-name {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
}

.simple-card h4 {
    font-size: 1.4rem;
    margin: 0;
}

/* Table Section */
.table-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.glass-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.glass-table th, .glass-table td {
    padding: 18px 25px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.glass-table th {
    background: rgba(255,255,255,0.03);
    font-weight: 600;
    color: var(--accent);
}

.glass-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.glass-table tr:last-child td {
    border-bottom: none;
}

/* Process Section */
.process-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent);
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.process-step h4 {
    font-size: 1.1rem;
    font-weight: 500;
}

.process-connector {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 15px;
    position: relative;
    top: -20px;
}

/* Footer */
.footer {
    background: #020202;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--accent);
    font-weight: 300;
}

.footer-desc {
    margin-bottom: 25px;
    max-width: 350px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--text-primary);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: #000;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links li, .footer-contact li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-secondary);
}

.footer-contact i {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.wa-btn {
    background-color: #25D366; /* WhatsApp Green */
}

.wa-btn:hover {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.phone-btn {
    background-color: var(--accent); /* Theme Gold */
    color: #000;
}

.phone-btn:hover {
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* 18+ Age Verification Popup */
.age-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-popup-content {
    background-color: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5), 0 0 20px rgba(212, 175, 55, 0.2);
}

.age-popup-icon {
    font-size: 50px;
    color: var(--accent);
    margin-bottom: 20px;
}

.age-popup-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.age-popup-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.age-popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.age-popup-buttons button {
    flex: 1;
    padding: 15px;
    font-size: 1.05rem;
}

.age-disclaimer {
    font-size: 0.8rem !important;
    color: #666 !important;
    margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .split-header {
        flex-direction: column;
    }
    .header-half {
        flex: none;
        height: 85vh;
    }
    .split-header{
        height: auto!important;
    }
    .overlay {
        bottom: -1px;
        background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(9,9,11,0.6) 60%, rgba(9,9,11,1) 100%);
    }
    .header-content {
        padding: 50px 30px;
    }
    .grid-4, .grid-4-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .table-grid {
        grid-template-columns: 1fr;
    }
    .bg-video{
        width: 100%;
    }
}

@media (max-width: 768px) {
    .grid-2-rows {
        grid-template-columns: 1fr;
    }
    .grid-features {
        grid-template-columns: 1fr;
    }
    .feature-card-premium {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .profile-list-card {
        flex-direction: column;
    }
    .profile-list-img {
        flex: none;
        height: 250px;
    }
    .process-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .process-connector {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .section-padding{
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .header-inner h1 {
        font-size: 2.5rem;
    }
    .grid-4, .grid-4-cards {
        grid-template-columns: 1fr;
    }
    .age-popup-buttons {
        flex-direction: column;
    }
    .age-popup-content {
        padding: 30px 20px;
    }
}
