/* =============================================
   PROFESSIONAL DESIGN SYSTEM
   Font: Playfair Display (headings) + Poppins (body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --red:       #b00d12;
    --red-dark:  #850009;
    --red-light: #f8e8e9;
    --gold:      #c9a84c;
    --dark:      #111111;
    --dark-2:    #1e1e1e;
    --dark-3:    #2c2c2c;
    --gray:      #666;
    --light:     #f9f7f4;
    --white:     #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.18);
    --radius:    10px;
    --radius-lg: 18px;

    /* legacy compat */
    --main-color: #111111;
    --bg-color:   #b00d12;
    --sec-color:  #111111;
    --a-color:    #b00d12;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    padding: 0 0 56px;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: var(--dark-3);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; transition: color .2s; }
img, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 16px; font-family: 'Playfair Display', Georgia, serif; line-height: 1.3; }
p { margin: 0 0 14px; }
ul { margin: 0; padding: 0; list-style: none; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    background: var(--dark) !important;
    border-bottom: 3px solid var(--red);
    padding: 12px 0;
}

/* Logo image in navbar */
.nav-logo {
    height: 36px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 4px rgba(255, 105, 180, 0.5));
}

@media (max-width: 575px) {
    .nav-logo {
        height: 90px;
        max-width: 105px;
    }
}

.navbar-brand {
    padding: 0;
    line-height: 1;
}

.navbar .nav-link {
    color: #ccc !important;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .4px;
    padding: 8px 14px !important;
    border-radius: 4px;
    transition: all .2s;
}

.navbar .nav-link:hover {
    color: var(--white) !important;
    background: rgba(255,255,255,0.1);
}

/* --- Hamburger button (always right-aligned) --- */
.navbar-toggler {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 6px;
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 42px;
    height: 36px;
    transition: border-color .2s;
    margin-left: auto; /* push to far right */
    order: 3;          /* always renders after brand */
}

.navbar-toggler:hover { border-color: rgba(255,255,255,0.8); }

.navbar-toggler .bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    max-width: none;
    transition: transform .35s ease, opacity .25s ease;
    transform-origin: center;
}

/* Animate to X when open */
.navbar-toggler.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggler.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-toggler.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — .show toggled by toggleNav() */
@media (max-width: 991px) {
    .navbar-collapse {
        overflow: hidden !important;
        max-height: 0 !important;
        transition: max-height .38s ease !important;
        display: block !important;
    }
    .navbar-collapse.show {
        max-height: 420px !important;
    }
    .navbar-nav {
        padding: 6px 0 4px;
        border-top: 1px solid rgba(255,255,255,0.12);
        margin-top: 10px;
        flex-direction: column;
    }
    .navbar .nav-link {
        padding: 12px 4px !important;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        font-size: 14px !important;
    }
    .navbar .nav-link:last-child { border-bottom: none; }
}

/* =============================================
   HEADER BANNER
   ============================================= */
header {
    overflow: hidden;
    line-height: 0;
}

header img.responsive {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* =============================================
   SECTIONS
   ============================================= */
section { padding: 0; }

main .container {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* =============================================
   SECTION HEADINGS — clean left-accent style
   ============================================= */
main h1, main h2, main h3,
main h4, main h5, main h6 {
    position: relative;
    padding: 0 0 10px 18px;
    margin-bottom: 20px;
    border: none;
    box-shadow: none;
    border-radius: 0;
    border-left: 5px solid var(--red);
    color: var(--dark);
}

main h1::after, main h2::after, main h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin-top: 8px;
}

main h1 { font-size: 1.8rem; }
main h2 { font-size: 1.45rem; }
main h3 { font-size: 1.2rem; }

/* =============================================
   ICONS (Font Awesome 4)
   ============================================= */
@font-face {
    font-family: 'FontAwesome';
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.fa-phone:before    { content: "\f095"; }
.fa-whatsapp:before { content: "\f232"; }
.fa-mail:before     { content: "\f0e0"; }
.fa-home:before     { content: "\f015"; }
.fa-star:before      { content: "\f005"; color: #f4b942; }
.fa-half-star:before { content: "\f089"; color: #f4b942; }

/* =============================================
   BG-1 — Dark Red Sections
   ============================================= */
.bg-1 {
    background: linear-gradient(135deg, #8b0009 0%, var(--red) 100%);
}

.bg-1 h1, .bg-1 h2, .bg-1 h3,
.bg-1 h4, .bg-1 h5, .bg-1 h6 {
    color: var(--white);
    border-left: 5px solid var(--gold);
    padding-left: 18px;
    text-align: left;
    border-top: none;
    border-right: none;
    border-bottom: none;
    box-shadow: none;
    border-radius: 0;
}

.bg-1 h1::after, .bg-1 h2::after, .bg-1 h3::after {
    background: rgba(255,255,255,0.4);
}

.bg-1 .text-center { text-align: center !important; }
.bg-1 .text-center h1, .bg-1 .text-center h2, .bg-1 .text-center h3,
h1.text-center, h2.text-center, h3.text-center {
    border-left: none;
    padding-left: 0;
    text-align: center;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 10px;
}

.bg-1 p {
    color: rgba(255,255,255,0.9);
    text-align: justify;
}

.bg-1 a { color: var(--gold); }
.bg-1 a:hover { color: var(--white); }

/* =============================================
   BG-2 — Light Gold Sections
   ============================================= */
.bg-2 {
    background: linear-gradient(135deg, #fdf6dc 0%, #fbeeb2 100%);
}

.bg-2 h2, .bg-2 h3 {
    color: var(--dark);
}

/* =============================================
   BODY TEXT SECTIONS
   ============================================= */
.textarea p { text-align: justify; }

.textarea a {
    color: var(--red);
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.textarea a:hover {
    color: var(--red-dark);
    border-bottom-color: var(--red);
}

.inner-data-wrap { margin: 28px 0; }

/* =============================================
   ESCORT CARDS
   ============================================= */
.escort {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    padding-bottom: 116px;
    border-radius: var(--radius);
    border: 1px solid #e8e8e8;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
    background: var(--white);
}

.escort:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

figure { position: relative; margin: 0; overflow: hidden; }

figure img { transition: transform .4s ease; }
.escort:hover figure img { transform: scale(1.04); }

.escort-detail {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 12px 18px 0;
    z-index: 10;
    background: var(--white);
}

.name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
}

.escort-cat {
    font-size: 12px;
    color: var(--white);
    background: var(--red);
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: .3px;
}

.rating {
    background: rgba(10,10,10,0.6);
    padding: 7px 0;
    text-align: center;
    position: absolute;
    left: 0; right: 0; top: -44px;
    backdrop-filter: blur(2px);
}

.escort-detail ul {
    list-style: none;
    padding: 8px 18px;
    background: var(--dark);
    margin: 0 -18px;
    max-height: 0;
    opacity: 0;
    position: relative;
    transition: max-height .4s ease, opacity .3s ease .2s;
}

.escort:hover .escort-detail ul {
    max-height: 200px;
    opacity: 1;
}

.escort-detail ul li {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 3px 0;
}

.escort-detail ul li span {
    display: inline-block;
    width: 60px;
    color: var(--gold);
    font-weight: 600;
}

/* =============================================
   CATEGORY CARDS
   ============================================= */
.catry {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
    border: none;
}

.catry:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.catry figure img { transition: transform .4s ease; }
.catry:hover figure img { transform: scale(1.06); }

.cat-name {
    text-align: center;
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 11px 0;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* =============================================
   SIDE IMAGES
   ============================================= */
.side-img {
    border-radius: var(--radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

/* =============================================
   PRICE TABLE
   ============================================= */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    font-size: 14px;
}

.price-table thead th,
.theading {
    background: var(--dark);
    color: var(--gold) !important;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.price-table td {
    padding: 11px 16px;
    color: var(--dark-3);
    border-bottom: 1px solid #f0f0f0;
    font-weight: 400;
}

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

.price-table tbody tr:nth-child(even) { background: #fafafa; }

.price-table tbody tr:hover { background: var(--red-light); }

.price-table td:first-child { font-weight: 600; color: var(--dark); }

/* =============================================
   ACCORDION / FAQ
   ============================================= */
.accordion {
    background: var(--white);
    border: 1px solid #e5e5e5;
    padding: 16px 20px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    border-radius: var(--radius);
    margin-bottom: 6px;
    display: block;
    transition: all .2s;
}

.accordion:hover {
    background: var(--red-light);
    border-color: var(--red);
    color: var(--red-dark);
}

.accordion.active {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    border-radius: var(--radius) var(--radius) 0 0;
    margin-bottom: 0;
}

.accordion::after {
    content: '+';
    float: right;
    font-size: 20px;
    font-weight: 300;
    margin-left: 10px;
    line-height: 1;
}

.accordion.active::after { content: '−'; }

.panel {
    padding: 0 20px;
    background: #fefefe;
    border: 1px solid #e5e5e5;
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    margin-bottom: 8px;
}

.panel p {
    color: var(--dark-3);
    padding: 14px 0;
    margin: 0;
    font-size: 14px;
}

/* =============================================
   AREA / LOCATION BUTTONS
   ============================================= */
.area-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
}

.area-list li {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.area-list a.btn,
.area-list a {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: var(--white) !important;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 25px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px;
    transition: all .22s;
    white-space: nowrap;
}

.area-list a.btn:hover,
.area-list a:hover {
    background: var(--white);
    color: var(--red) !important;
    border-color: var(--white);
    transform: translateY(-1px);
}

/* bg-2 section (light yellow bg) — darker buttons */
.bg-2 .area-list a.btn,
.bg-2 .area-list a {
    background: var(--dark);
    color: var(--white) !important;
    border-color: var(--dark);
}

.bg-2 .area-list a.btn:hover,
.bg-2 .area-list a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white) !important;
}

/* =============================================
   FACILITIES LIST
   ============================================= */
.bg-1 p {
    margin-bottom: 8px;
}

/* =============================================
   BARS & CLUBS SECTION
   ============================================= */
.bg-1 strong {
    color: var(--gold);
}

/* =============================================
   ROW UTILITY
   ============================================= */
.row { margin-left: 0; margin-right: 0; }

/* =============================================
   SECTION TITLE (center variant)
   ============================================= */
.text-center { text-align: center !important; }

h2.text-center, h3.text-center {
    border-left: none;
    padding-left: 0;
    border-bottom: 3px solid var(--red);
    padding-bottom: 10px;
    display: inline-block;
}

h2.text-center::after, h3.text-center::after {
    display: none;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: var(--dark-2);
    color: #aaa;
}

footer h5 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-box {
    padding: 40px 25px 20px;
}

.footer-bar {
    padding: 14px;
    text-align: center;
    font-size: 13px;
    color: #777;
    border-top: 1px solid rgba(255,255,255,0.08);
}

footer ul { padding: 0; }

footer li {
    margin: 7px 0;
    border-left: 2px solid transparent;
    padding-left: 0;
    transition: border-color .2s, padding-left .2s;
}

footer li:hover {
    border-left-color: var(--red);
    padding-left: 6px;
}

footer li a {
    color: #bbb;
    font-size: 13px;
    transition: color .2s;
}

footer li a:hover { color: var(--white); }

footer a { color: var(--gold); }
footer a:hover { color: var(--white); }

/* =============================================
   FIXED BOTTOM CTA BAR
   ============================================= */
.nowcalling {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.3);
}

.lcol, .rcol { flex: 1; }

.lcol { background: #c0392b; }
.rcol { background: #27ae60; }

.lcol a, .rcol a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 0;
    text-align: center;
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: filter .2s;
}

.lcol a:hover, .rcol a:hover {
    filter: brightness(1.1);
    color: var(--white);
}

/* =============================================
   TESTIMONIAL / TSML
   ============================================= */
.tsml {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 16px;
    margin-bottom: 14px;
}

.tsml p, .tsml span { color: var(--white); margin-bottom: 0; }
.tsml-row { display: flex; flex-wrap: wrap; align-items: center; }
.tsml-box { display: grid; gap: 20px; }
.tsml hr { margin: 10px 0; opacity: .3; }
.tsml span { font-size: 1.4rem; }
.tsml img { width: 20%; border-radius: 50%; }
.tsml-text { width: 80%; padding-left: 14px; }

.ts-1 { background: var(--red); }
.ts-2 { background: #0d6efd; }
.ts-3 { background: #198754; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 575px) {
    main h1 { font-size: 1.35rem; }
    main h2 { font-size: 1.15rem; }
    main h3 { font-size: 1rem; }

    .area-list a.btn,
    .area-list a { font-size: 12px; padding: 6px 12px; }

    .price-table th, .price-table td { font-size: 12px; padding: 9px 10px; }

    .name { font-size: 16px; }

    header img.responsive { max-height: 220px; }
}

@media (min-width: 768px) {
    .escort-detail ul li span { width: 90px; }
    .tsml-box { grid-template-columns: repeat(3,1fr); }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse { justify-content: flex-end; }
    main h1 { font-size: 2rem; }
    main h2 { font-size: 1.55rem; }
}

@media (min-width: 1200px) {
    .escort-detail ul li span { width: 150px; }
}
