@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Violet Light Theme Palette */
    --bg-main: #fafafa;
    --bg-card: #ffffff;
    --clr-violet-primary: #7c3aed; /* Strong Violet */
    --clr-violet-light: #a78bfa;   /* Light Violet */
    --clr-violet-dark: #5b21b6;    /* Deep Violet */
    --clr-text-dark: #1f2937;      /* Near Black */
    --clr-text-muted: #172d58;     /* Grey */
    --clr-white: #ffffff;
    
    /* Shadows & Effects */
    --shadow-premium: 0 10px 15px -3px rgba(124, 58, 237, 0.5), 0 4px 6px -2px rgba(124, 58, 237, 0.3);
    --shadow-card-hover: 0 20px 25px -5px rgba(124, 58, 237, 0.5), 0 10px 10px -5px rgba(124, 58, 237, 0.5);
    --glow-violet: 10px 10px 15px rgba(237, 97, 58, 0.5);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: var(--bg-main);
    color: var(--clr-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .heading-font {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

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

/* Glassmorphism Sticky Nav */
.nav-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--clr-violet-primary);
    /* text-transform: uppercase; */
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--clr-text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--clr-violet-primary);
}



/* Immersive Hero with Video/Wave Effect */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    /* align-items: center; */
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url('img/goacallgirls.jpeg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2; /* Bring content above video */
}


/* Premium Glassmorphic Wave System */
.premium-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    z-index: 5;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px; /* Fix for safari gap */
    min-height: 100px;
    max-height: 150px;
}


/* Parallax Animation Disabled */
.parallax > use {
    /* animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite; */
}

.parallax > use:nth-child(1) {
    fill: rgba(124, 58, 237, 0.3); /* Translucent Violet */
}

.parallax > use:nth-child(2) {
    fill: rgba(236, 72, 153, 0.2); /* Translucent Pink */
}

.parallax > use:nth-child(3) {
    fill: rgba(255, 255, 255, 0.3);
}

.parallax > use:nth-child(4) {
    fill: var(--bg-main);
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }
    100% {
        transform: translate3d(85px,0,0);
    }
}

/* Mobile Adjustments for Waves */
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 100px;
    }
    .premium-waves {
        height: 40px;
    }
}


.hero-content {
    max-width: 100%;
    z-index: 10;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1; 
    text-shadow: 2px 2px 4px #121111;
    color: #fff;
    text-align: center;
}

.header-btn{
    display: flex;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-top: 5%;
    line-height: 1.1; 
    text-shadow: 2px 2px 4px #121111;
    color: #fff;
    text-align: center;
}
.hero-content p {
    font-size: 1.2rem;
    max-width: 40%;
    color: rgb(29, 28, 28);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px #000;
}

/* 4-Column Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 60px 0;
}

.profile-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(124, 58, 237, 0.05);
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--clr-violet-light);
}

.img-box {
    position: relative;
    height: 380px;
    overflow: hidden;
}

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

.profile-card:hover .img-box img {
    transform: scale(1.1);
}

/* Tilted Violet Tag */
.tilted-tag {
    min-width: 200px;
    position: absolute;
    top: 20px;
    left: -45px;
    text-align: center;
    background: var(--clr-violet-primary);
    color: #fff;
    padding: 6px 25px;
    font-weight: 700;
    font-size: 0.85rem;
    transform: rotate(-45deg);
    box-shadow: var(--glow-violet);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-details {
    padding: 20px;
}

.name-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.name-rating .h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.stars {
    color: #f59e0b;
    font-size: 0.8rem;
}

.info-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(88, 6, 138, 0.196);
}

.info-bar span b {
    color: var(--clr-violet-primary);
}

/* Action Buttons */
.btn-row {
    display: flex;
    gap: 10px;
}

.btn-v {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-violet {
    background: var(--clr-violet-primary);
    color: #fff;
}

.btn-violet:hover {
    background: var(--clr-violet-dark);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.btn-wa {
    background: #22c55e;
    color: #fff;
}

.btn-wa:hover {
    background: #16a34a;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

/* Huge Content Block */
.huge-content {
    background: linear-gradient(135deg, var(--clr-violet-dark) 0%, #4c1d95 100%);
    color: #fff;
    padding: 30px 20px;
    margin: 10px 0;
    border-radius: 10px;
    /* text-align: center; */
    box-shadow: 0 25px 50px -12px rgba(91, 33, 182, 0.25);
}

.huge-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 800;
}
.huge-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.huge-content p {
    font-size: 1.3rem;
    max-width: 100%;
    margin-bottom: 20px; 
    opacity: 0.9;
    word-spacing: 2.5px;
    line-height: 30px;
}

.cta-btn {
    display: inline-block;
    background: #fff;
    color: var(--clr-violet-dark);
    padding: 18px 45px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


/* Redesigned Footer Styles */
footer {
    background-color: #0f172a;
    color: #fff;
    padding: 60px 0 30px;
    text-align: center;
    margin-top: 50px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-nav {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--clr-violet-light);
}

.footer-contact p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile adjustments for redesigned footer */
@media (max-width: 768px) {
    .footer-nav {
        display: flex;
        flex-direction: column;
        gap: 15px;
        line-height: 1.2;
    }
    .footer-nav a {
        margin: 0;
    }
}

/* Mobile Responsive */
/* Professional Table Styling */
.table-container {
    margin: 40px 0;
    overflow-x: auto;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    color: var(--clr-text-dark);
    text-align: left;
    min-width: 600px;
}

.premium-table th {
    background: var(--clr-violet-primary);
    color: #fff;
    padding: 20px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.premium-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 500;
}

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

.premium-table tr:hover {
    background: rgba(124, 58, 237, 0.05);
}

.table-wa-link {
    color: #22c55e;
    text-decoration: none;
    font-weight: 700;
}

.table-rate {
    color: var(--clr-violet-primary);
    font-weight: 700;
}

@media (max-width: 600px) {
    .profile-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 600px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .huge-content h2 {
        font-size: 2.2rem;
        line-height: 46px;
    }
    .huge-content h3 {
        line-height: 46px;
    }
}
/* 18+ Age Verification Popup Styling */


/* 18+ Age Verification Popup Styling - Premium Light Edition */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, rgba(245, 243, 255, 0.95) 100%);
    backdrop-filter: blur(25px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.age-overlay.active {
    visibility: visible;
    opacity: 1;
}

.age-modal {
    background: rgba(255, 255, 255, 0.6);
    width: 100%;
    max-width: 550px;
    padding: 60px 40px;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.5);
    text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.1);
    backdrop-filter: blur(20px);
    transform: scale(0.8) translateY(30px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.age-overlay.active .age-modal {
    transform: scale(1) translateY(0);
}

.age-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
    border: 3px solid #fff;
    font-family: 'Outfit', sans-serif;
}

.age-logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--clr-violet-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.age-modal h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--clr-violet-dark);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.age-modal p {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    margin-bottom: 45px;
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.age-btn-row {
    display: flex;
    gap: 20px;
}

.age-btn {
    flex: 1;
    padding: 18px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-enter {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #fff;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.btn-enter:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.4);
}

.btn-exit {
    background: #f3f4f6;
    color: var(--clr-text-muted);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-exit:hover {
    background: #e5e7eb;
}

@media (max-width: 600px) {
    .age-modal {
        padding: 40px 25px;
        border-radius: 30px;
    }
    .age-logo {
        font-size: 1.8rem;
    }
    .age-modal h2 {
        font-size: 1.8rem;
    }
    .age-btn-row {
        flex-direction: column;
        gap: 12px;
    }
    .age-btn {
        padding: 15px;
        font-size: 1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: var(--clr-violet-dark);
    margin-bottom: 15px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-main);
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: var(--transition);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--clr-text-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--clr-violet-primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--clr-text-muted);
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--clr-violet-primary);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 5px;
}

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

/* Tags Section Styles */
.tags-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #fff, #f5f3ff);
}

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

.tags-container h2 {
    font-size: 2rem;
    color: var(--clr-violet-dark);
    margin-bottom: 30px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 100%;
    margin: 0 auto;
}

.tag-pill {
    padding: 10px 22px;
    background: #fff;
    color: var(--clr-violet-primary);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.tag-pill:hover {
    background: var(--clr-violet-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(124, 58, 237, 0.2);
    border-color: var(--clr-violet-primary);
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2rem;
    }
    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .tag-pill {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    .footer-grid{
        display: block;
    }
    .hero-content p{
        max-width: fit-content;
    }
    .header-btn{
    display: none;
}

}

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

.whatsapp-float {
    background-color: #25d366;
    animation: pulse-wa 2s infinite;
}

.call-float {
    background-color: var(--clr-violet-primary);
    bottom: 115px; /* Positioned above WhatsApp */
}

.whatsapp-float:hover, .call-float:hover {
    transform: scale(1.1) translateY(-5px);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Adjustments for Floating Buttons */
@media (max-width: 768px) {
    .whatsapp-float, .call-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    .call-float {
        bottom: 85px;
    }
    .hero{
        align-items: center;
    }
}
