/* ===================== FONTS ===================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ===================== ROOT ===================== */
:root {
    --body-bg: #0f0f0f;
    --primary: #c47a3a;
    --primary-dark: #a35f28;
    --primary-light: #d4a574;
    --secondary: #2a2a2a;
    --card-bg: #1a1a1a;
    --text-white: #f5f5f5;
    --text-muted: #b0b0b0;
    --text-light: #d0d0d0;
    --border: #333333;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
    --shadow-hover: 0 8px 30px rgba(196, 122, 58, 0.25);
    --radius: 12px;
    --font: "Poppins", system-ui, -apple-system, sans-serif;
}

/* ===================== BASE ===================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--body-bg);
    color: var(--text-white);
    line-height: 1.65;
    overflow-x: hidden;
}
a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover { color: var(--primary-light); }
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.3;
}
p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 1rem;
}
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===================== HEADER ===================== */
header {
    background: rgba(15, 15, 15, 0.95);
    padding: 12px 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}
.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-wrap a.text-secondry {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary) !important;
}
.header-auth-wrap {
    display: flex;
    gap: 20px;
}
.header-auth-wrap a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light) !important;
    text-transform: uppercase;
}
.header-auth-wrap a:hover {
    color: var(--primary) !important;
}
.mobile-toggle-ico {
    display: none;
    cursor: pointer;
}

/* ===================== MOBILE SIDEBAR ===================== */
.mobile-sidebar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 1100;
    padding: 60px 24px 30px;
    transform: translateX(-100%);
    transition: transform 0.3s;
    border-right: 1px solid var(--border);
}
.mobile-sidebar-wrap-show {
    transform: translateX(0);
}
.mobile-sidebar-wrap .close-ico {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.sidebar-data .btn1 {
    display: block;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: #222;
    border-radius: 8px;
    color: var(--text-white);
    font-weight: 500;
    border: 1px solid transparent;
}
.sidebar-data .btn1:hover {
    background: #2a2a2a;
    border-color: var(--primary);
    color: var(--primary);
}

/* ===================== BREADCRUMB ===================== */
.section-breadcrumb {
    background: #1a1a1a;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.bandcamp-box a {
    color: var(--text-muted);
    font-size: 14px;
}
.bandcamp-box a:hover {
    color: var(--primary);
}

/* ===================== PROFILE CARDS ===================== */
.card-section {
    padding: 40px 0 50px;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card-col {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}
.card-col:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}
.img-wrap {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.card-col:hover .img-wrap img {
    transform: scale(1.05);
}
.varified-card {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: #111;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 20px;
}

/* Name + Buttons */
.heading-review {
    padding: 14px 16px 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.heading-review .hover-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-white);
}
.heading-review .review {
    display: flex;
    gap: 8px;
}
.heading-review .review a {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #fff !important;
    text-align: center;
}

/* Call & WhatsApp buttons – matching the copper theme */
.heading-review .review a.callnow {
    background: linear-gradient(90deg, #c47a3a, #a35f28);
}
.heading-review .review a.whatapp {
    background: linear-gradient(90deg, #25d366, #1ebe57);
}

/* Age + Stars + Location */
.contact-number-wrap {
    padding: 8px 16px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.contact-number-wrap small {
    font-size: 13px;
    color: var(--text-muted);
}
.customer-reivew {
    display: flex;
    align-items: center;
    gap: 3px;
}
.girl-rating {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.girl-rating svg {
    width: 16px;
    height: 16px;
    fill: #f5a623;
}
.card-col > span {
    display: block;
    padding: 0 16px 10px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

/* ===================== DETAILS ===================== */
.details-card-box,
.details-note-box {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.details-card-box h1 {
    font-size: 26px;
    margin-bottom: 14px;
    color: var(--primary);
}
.details-note-section h2 {
    color: var(--primary);
    font-size: 22px;
    margin: 28px 0 14px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    background: #151515;
    border-radius: 12px;
    overflow: hidden;
}
th, td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
th {
    background: linear-gradient(90deg, #2a2a2a, #1f1f1f);
    color: var(--primary);
    font-weight: 600;
}
td {
    color: var(--text-light);
}

/* ===================== FAQ ===================== */
.faq-container {
    max-width: 860px;
    margin: 28px auto;
}
.question {
    background: #1a1a1a;
    color: var(--text-white);
    padding: 15px 18px;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 500;
    border: 1px solid var(--border);
}
.question:hover {
    border-color: var(--primary);
    background: #222;
}
.answer {
    display: none;
    padding: 14px 18px;
    color: var(--text-light);
    background: #151515;
    border-radius: 0 0 10px 10px;
    margin-top: -8px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-top: none;
}
.answer.show {
    display: block;
}

/* ===================== TAGS ===================== */
.white-sec {
    background: #1a1a1a !important;
    padding: 36px 0 !important;
    border-top: 1px solid var(--border);
}
.white-sec h3 {
    color: var(--primary) !important;
    font-size: 20px;
    margin-bottom: 18px;
}
.label {
    display: inline-block;
    margin: 5px 4px;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
}
.label a {
    color: #fff !important;
}
.label-default { background: linear-gradient(135deg, #c47a3a, #a35f28); }
.label-primary { background: linear-gradient(135deg, #d4a574, #c47a3a); }
.label-success { background: linear-gradient(135deg, #25d366, #1ebe57); }
.label-info    { background: linear-gradient(135deg, #4db6ac, #26a69a); }
.label-warning { background: linear-gradient(135deg, #ffa726, #ffb74d); }
.label-danger  { background: linear-gradient(135deg, #ef5350, #e57373); }

/* ===================== FIXED BOTTOM ===================== */
.fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: none;
}
.ctmobile, .ctwhatsapp {
    display: block;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    color: #fff !important;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
}
.ctmobile {
    background: linear-gradient(90deg, #c47a3a, #a35f28);
}
.ctwhatsapp {
    background: linear-gradient(90deg, #25d366, #1ebe57);
}

/* ===================== FLOATING WHATSAPP ===================== */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 88px;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    z-index: 998;
    transition: transform 0.2s;
}
.whatsapp-float:hover {
    transform: scale(1.08);
}

/* ===================== ADULT POPUP ===================== */
#adultPopup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
#adultPopup > div {
    background: #1a1a1a;
    border: 1px solid var(--primary);
    border-radius: 14px;
    padding: 28px;
    max-width: 380px;
    width: 90%;
    text-align: center;
}
#adultPopup h2 {
    color: var(--primary);
    margin-bottom: 10px;
}
#adultPopup button {
    padding: 11px 20px;
    margin: 8px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}
#yesBtn {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: #111;
}
#noBtn {
    background: #e53935;
    color: #fff;
}

/* ===================== UTILITIES ===================== */
.d-align {
    display: flex;
    align-items: center;
}
.d-align-justify {
    display: flex;
    align-items: center;
    justify-content: center;
}
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.fw-700 { font-weight: 700; }
.section-mt { margin-top: 28px; }
.section-mt-2 { margin-top: 18px; }
.section-pt { padding-top: 28px; }
.space-bottom-small { margin-bottom: 12px; }
.heading-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .header-auth-wrap {
        display: none;
    }
    .mobile-toggle-ico {
        display: block;
    }
    .img-wrap {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .card-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 8px;
    }
    .img-wrap {
        height: 360px;
    }
    .heading-review {
        flex-direction: column;
        align-items: flex-start;
    }
    .heading-review .review {
        width: 100%;
    }
    .heading-review .review a {
        flex: 1;
        text-align: center;
        padding: 11px 0;
        font-size: 13px;
    }
    .details-card-box h1 {
        font-size: 21px;
    }
    .details-note-section h2 {
        font-size: 18px;
    }
    .fixed-bottom {
        display: flex;
    }
    .whatsapp-float {
        bottom: 78px;
        right: 14px;
        width: 50px;
        height: 50px;
    }
    table {
        font-size: 13px;
    }
    th, td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .img-wrap {
        height: 320px;
    }
}