/* ==========================================================================
   UIX DESIGN SYSTEM - LUXURY LIGHT THEME (PURE WHITE + SLATE + ROSE ACCENTS)
   ========================================================================== */

:root {
    /* Main Light Base Palette */
    --body-bg: #f8fafc;
    --card-bg: #ffffff;
    --surface-alt: #f1f5f9;

    /* Primary & Secondary Brand Colors */
    --primary-color: #e11d48;
    /* Rose / Crimson */
    --primary-hover: #be123c;
    --primary-light: #fff1f2;

    --secondary-color: #4f46e5;
    /* Deep Indigo */
    --secondary-hover: #4338ca;
    --secondary-light: #eef2ff;

    --gold-color: #f59e0b;
    /* Amber Gold */
    --emerald-color: #10b981;
    /* Soft Emerald Green */
    --violet-color: #8b5cf6;
    /* Soft Violet */

    /* Functional UI Colors */
    --pink-color: #f43f5e;
    --light-red-color: #e11d48;
    --hover-text-color: #e11d48;
    --green-color: #10b981;
    --yellow-color: #f59e0b;
    --yellow-color-01: #d97706;

    /* Typography & Neutral Hierarchy */
    --heading-color: #0f172a;
    /* Slate 900 */
    --text-color: #334155;
    /* Slate 700 */
    --gray-text-color: #64748b;
    /* Slate 500 */
    --gray-text-color-01: #475569;
    /* Slate 600 */
    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;

    /* Standard Base Colors */
    --white-color: #ffffff;
    --black-color: #000000;
    --rawani-color-01: #e11d48;
    --rawani-color-02: #4f46e5;
    --rawani-color-03: #f43f5e;
    --rawani-color-04: #e11d48;
    --rawani-color-05: #f43f5e;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
    --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.06), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 10px 30px -4px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);

    /* Typography Scale & Radius */
    --primary-font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Layout Spacing */
    --section-extra-big-spacing: 100px;
    --section-big-spacing: 80px;
    --section-mid-spacing: 60px;
    --section-spacing: 40px;
    --header-less-spacing: 56px;
    --escort-details-col-left-width: 555px;
}

/* ==========================================================================
   GLOBAL RESET & UTILITIES
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--primary-font);
    font-weight: 400;
    background-color: var(--body-bg);
    color: var(--text-color);
    line-height: 1.65;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary-color);
    color: #ffffff;
}

a {
    color: var(--primary-color);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

a:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    font-weight: 700;
    color: var(--heading-color);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.75;
}

/* Layout Utilities */
.container {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1320px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.row>* {
    padding-right: 12px;
    padding-left: 12px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.d-align {
    display: flex !important;
    align-items: center !important;
}

.d-align-justify {
    display: flex;
    align-items: center;
    justify-content: center;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.w-100 {
    width: 100% !important;
}

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

.text-uppercase {
    text-transform: uppercase;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ==========================================================================
   BUTTON SYSTEM
   ========================================================================== */

.primary-btn {
    font-family: var(--primary-font);
    border-radius: var(--radius-sm);
    min-width: 120px;
    min-height: 44px;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #ffffff !important;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.25);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.35);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    min-height: 56px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

header.fixed {
    box-shadow: var(--shadow-md);
}

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

.header-wrap a.text-secondry {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
    text-decoration: none !important;
}

.header-wrap a.text-secondry:hover {
    color: var(--primary-color);
}

.header-auth-wrap {
    display: flex;
    align-items: center;
    gap: 3px;
}

.header-auth-wrap .hreader-btn {
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color) !important;
    text-transform: capitalize;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.header-auth-wrap .hreader-btn:hover,
.header-auth-wrap .hreader-btn.active {
    color: var(--primary-color) !important;
    background-color: var(--primary-light);
}

/* Mobile Toggle Icon */
.mobile-toggle-ico {
    display: none;
    padding: 7px 9px;
    background-color: #f1f5f9;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-toggle-ico:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-color);
}

.mobile-toggle-ico svg rect {
    fill: var(--heading-color) !important;
}

/* MOBILE DRAWER MENU */
.mobile-sidebar-wrap {
    width: 280px;
    max-width: 80vw;
    height: 100vh;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
}

.mobile-sidebar-wrap-show {
    transform: translateX(0);
}

.close-ico {
    align-self: flex-end;
    padding: 8px;
    background-color: #f1f5f9;
    border-radius: 50%;
    cursor: pointer;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.close-ico:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-color);
}

.close-ico svg rect {
    fill: var(--heading-color) !important;
}

.sidebar-data ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    list-style: none;
}

.sidebar-data ul a {
    text-decoration: none !important;
}

.sidebar-data ul a .btn1 {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background-color: #f8fafc;
    color: var(--heading-color);
    font-weight: 600;
    font-size: 13px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.sidebar-data ul a:hover .btn1,
.sidebar-data ul a.active .btn1 {
    background-color: var(--primary-color);
    color: #ffffff !important;
    border-color: var(--primary-color);
}

/* ==========================================================================
   HERO BANNER & SEARCH SECTION
   ========================================================================== */

/* ==========================================================================
   HERO BANNER & BENTO COLLAGE SECTION (UIX LUXURY DESIGN)
   ========================================================================== */

.banner-area {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 60%, #fff1f2 100%);
    padding: 44px 0 50px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.banner-area::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.07) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.hero-pre-badge {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--heading-color);
    letter-spacing: 0.2px;
}

.banner-content .hed {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--heading-color) !important;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.banner-content .hed .highlight-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #be123c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline-main {
    font-size: 15px;
    color: var(--gray-text-color-01);
    font-weight: 500;
}

.hero-chips-wrap .hero-chip {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--heading-color);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: all 0.2s ease;
}

.hero-chips-wrap .hero-chip:hover {
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

/* SEARCH FORM IN HERO */
.serach-form-area {
    background: #ffffff;
    padding: 6px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.9);
    max-width: 580px;
}

.serach-form-area .form-control {
    height: 48px !important;
    border: none !important;
    background: transparent !important;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--heading-color) !important;
    padding-left: 14px;
}

.serach-form-area .form-control:focus {
    box-shadow: none !important;
}

.serach-form-area .btn-info {
    background-color: var(--primary-color);
    height: 48px;
    border-radius: 10px !important;
    border: none;
    font-weight: 700;
    transition: all 0.25s ease;
}

.serach-form-area .btn-info:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
}

/* HERO CTA BUTTONS */
.btn-hero-call,
.btn-hero-whatsapp {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.btn-hero-call {
    background-color: var(--primary-color);
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(225, 29, 72, 0.3);
}

.btn-hero-call:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(225, 29, 72, 0.45);
}

.btn-hero-whatsapp {
    background-color: var(--emerald-color);
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.3);
}

.btn-hero-whatsapp:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.45);
}

/* TRUST METRICS BAR */
.hero-trust-bar .trust-item {
    text-align: left;
}

.hero-trust-bar .trust-val {
    font-size: 18px;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1.1;
}

.hero-trust-bar .trust-lbl {
    font-size: 12px;
    color: var(--gray-text-color);
    font-weight: 500;
    margin-top: 2px;
}

/* BENTO GRID COLLAGE (RIGHT SIDE) */
.hero-bento-collage {
    position: relative;
    height: 420px;
    width: 100%;
}

.bento-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
    border: 3px solid #ffffff;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #ffffff;
}

.bento-card:hover {
    transform: translateY(-6px) scale(1.02);
    z-index: 10 !important;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.22);
}

.bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-card.card-main {
    width: 230px;
    height: 310px;
    top: 0;
    left: 0;
    z-index: 3;
    animation: heroFloat 6s ease-in-out infinite;
}

.bento-card.card-sub-1 {
    width: 180px;
    height: 220px;
    top: 20px;
    right: 20px;
    z-index: 2;
    animation: heroFloat 7s ease-in-out infinite 1s;
}

.bento-card.card-sub-2 {
    width: 170px;
    height: 200px;
    bottom: 10px;
    left: 90px;
    z-index: 4;
    animation: heroFloat 6.5s ease-in-out infinite 0.5s;
}

.bento-card.card-sub-3 {
    width: 175px;
    height: 210px;
    bottom: 25px;
    right: 0;
    z-index: 3;
    animation: heroFloat 8s ease-in-out infinite 1.5s;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* BENTO BADGES */
.bento-badge {
    position: absolute;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11.5px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--heading-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
}

.badge-top-right { top: 12px; right: 12px; }
.badge-bottom-left { bottom: 12px; left: 12px; }

.bento-badge.badge-green {
    background: rgba(16, 185, 129, 0.92);
    color: #ffffff;
}

.bento-badge.badge-dark {
    background: rgba(15, 23, 42, 0.88);
    color: #ffffff;
}

.bento-badge.badge-vip {
    background: rgba(245, 158, 11, 0.92);
    color: #ffffff;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    margin-right: 6px;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   BREADCRUMB & PAGE HEADER SECTIONS
   ========================================================================== */

.section-breadcrumb {
    margin: 24px 0 16px 0;
}

.bandcamp-box {
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
}

.bandcamp-box a {
    color: var(--primary-color) !important;
    font-weight: 600;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.bandcamp-box a:hover {
    color: var(--primary-hover) !important;
}

.bandcamp-box svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.bandcamp-box b,
.bandcamp-box .breadcrumb-slash {
    color: var(--gray-text-color) !important;
    font-weight: 500;
    margin: 0 4px;
}

.section-totalpost {
    margin: 20px 0 24px 0;
}

.section-totalpost h1,
.section-totalpost h2,
.section-totalpost h4.heading-title {
    color: var(--heading-color) !important;
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 8px;
}

.section-totalpost div {
    font-size: 14px !important;
    color: var(--gray-text-color-01) !important;
    margin-top: 6px !important;
}

.section-totalpost div a {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* ==========================================================================
   ESCORT PROFILE CARDS & CAROUSELS
   ========================================================================== */

.card-col {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 14px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.card-col:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.img-wrap {
    width: 100%;
    height: 420px;
    min-height: 420px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-sm);
    background-color: #f1f5f9;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-col:hover .img-wrap img {
    transform: scale(1.04);
}

.girl-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(245, 158, 11, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 12px;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.varified-card {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 700;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2;
}

.verified-bg {
    background-color: rgba(16, 185, 129, 0.9);
    color: #ffffff !important;
}

.new-bg {
    background-color: rgba(139, 92, 246, 0.9);
    color: #ffffff !important;
}

.back-again-bg {
    background-color: rgba(245, 158, 11, 0.9);
    color: #ffffff !important;
}

.card-col a {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin-top: 10px;
    display: block;
    line-height: 1.4;
}

.card-col a:hover {
    color: var(--primary-color);
}

.card-col span {
    color: var(--white-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
}

.card-col p {
    font-size: 13.5px;
    color: var(--gray-text-color);
    margin-top: 6px;
    line-height: 1.6;
}

.contact-number-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.hourse-left {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 13px;
    color: var(--heading-color);
}

.customer-reivew {
    display: flex;
    align-items: center;
    gap: 2px;
}

.customer-reivew .girl-rating {
    position: static !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.customer-reivew .girl-rating svg {
    width: 15px;
    height: 15px;
    fill: var(--gold-color) !important;
}

/* CALL & WHATSAPP ACTION BUTTONS */
.heading-review {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    width: 100%;
}

.heading-review .hover-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading-color);
}

.heading-review .review {
    display: flex;
    gap: 8px;
    align-items: center;
}

.heading-review .review a.callnow,
.heading-review .review a.whatapp {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none !important;
}

.heading-review .review a.callnow {
    background-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.2);
}

.heading-review .review a.whatapp {
    background-color: var(--emerald-color);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.heading-review .review a.callnow:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(225, 29, 72, 0.35);
}

.heading-review .review a.whatapp:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

/* ==========================================================================
   FILTER OPTIONS
   ========================================================================== */

#filtersbt,
.filter_option {
    padding: 8px 18px;
    cursor: pointer;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    font-size: 13.5px;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin: 4px;
    transition: all 0.2s ease;
    color: var(--heading-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#filtersbt:hover,
.filter_option:hover {
    background-color: var(--primary-color);
    color: #ffffff !important;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.2);
}

/* ==========================================================================
   CONTENT CARDS & DETAIL SECTIONS
   ========================================================================== */

.details-card-box,
.details-note-box {
    background-color: #ffffff;
    padding: 24px;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.details-card-box:hover,
.details-note-box:hover {
    box-shadow: var(--shadow-md);
}

.details-card-box h2,
.details-card-box h3,
.details-card-box h4,
.details-note-section h2,
.details-note-section h3 {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 12px;
}

/* FAQ ACCORDION */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.question {
    font-weight: 700;
    cursor: pointer;
    color: var(--heading-color);
    background-color: #ffffff;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
}

.question:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-color);
}

.answer {
    display: none;
    margin-top: 6px;
    color: var(--text-color);
    padding: 16px 20px;
    background-color: #ffffff;
    border-left: 4px solid var(--secondary-color);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.answer.show {
    display: block;
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 8px;
}

.pagination a {
    color: var(--heading-color);
    background-color: #ffffff;
    padding: 9px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.pagination a.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
}

.pagination a:hover:not(.active) {
    background-color: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.link-badge {
    border-radius: var(--radius-full) !important;
    font-weight: 700;
}

/* ==========================================================================
   TABLE & BADGE SYSTEM
   ========================================================================== */

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 16px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color) !important;
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
}

th {
    background-color: #f8fafc !important;
    color: var(--heading-color) !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    padding: 12px 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-bottom: 2px solid var(--border-color) !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}

td {
    padding: 12px 16px !important;
    color: var(--text-color) !important;
    font-size: 14px !important;
    border-bottom: 1px solid var(--border-color) !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}

tr:last-child td {
    border-bottom: none !important;
}

tr:hover td {
    background-color: #f1f5f9;
}

/* ==========================================================================
   SERVICE LOCATIONS BADGE CHIPS - LUXURY LIGHT THEME
   ========================================================================== */

section.bg-dark.section-pt {
    background-color: var(--body-bg) !important;
    padding-top: 32px !important;
    padding-bottom: 32px !important;
    border-top: 1px solid var(--border-color);
}

.details-note-box .banner-subtitle {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: var(--heading-color) !important;
    margin-bottom: 20px !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.details-note-box .banner-subtitle::before {
    content: "📍";
    font-size: 18px;
}

.link-badge {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 8px 18px !important;
    border-radius: 50px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    margin: 5px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04) !important;
}

/* Color 1: Rose Tint */
.badge-color-1 {
    background-color: var(--primary-light) !important;
    color: var(--primary-color) !important;
    border: 1px solid #fecdd3 !important;
}
.badge-color-1:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(225, 29, 72, 0.3) !important;
}

/* Color 2: Emerald Tint */
.badge-color-2 {
    background-color: #ecfdf5 !important;
    color: #059669 !important;
    border: 1px solid #a7f3d0 !important;
}
.badge-color-2:hover {
    background-color: #10b981 !important;
    color: #ffffff !important;
    border-color: #10b981 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3) !important;
}

/* Color 3: Indigo Tint */
.badge-color-3 {
    background-color: var(--secondary-light) !important;
    color: var(--secondary-color) !important;
    border: 1px solid #c7d2fe !important;
}
.badge-color-3:hover {
    background-color: var(--secondary-color) !important;
    color: #ffffff !important;
    border-color: var(--secondary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3) !important;
}

/* Color 4: Violet Tint */
.badge-color-4 {
    background-color: #f5f3ff !important;
    color: #7c3aed !important;
    border: 1px solid #ddd6fe !important;
}
.badge-color-4:hover {
    background-color: #8b5cf6 !important;
    color: #ffffff !important;
    border-color: #8b5cf6 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3) !important;
}

/* ==========================================================================
   FLOATING MOBILE BOTTOM NAVIGATION BAR
   ========================================================================== */

.mobile-floating-bar {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    width: calc(100% - 32px);
    max-width: 380px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
    border-radius: 40px;
    padding: 8px 16px;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.mobile-floating-bar .floating-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-floating-bar .floating-btn:active {
    transform: scale(0.92);
}

.mobile-floating-bar .float-call {
    background-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.35);
}

.mobile-floating-bar .float-call i {
    font-size: 19px;
    color: #ffffff !important;
}

.mobile-floating-bar .float-whatsapp {
    background-color: var(--emerald-color);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.mobile-floating-bar .float-whatsapp i {
    font-size: 22px;
    color: #ffffff !important;
}

.mobile-floating-bar .floating-brand {
    font-size: 13px;
    font-weight: 700;
    color: var(--heading-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ==========================================================================
   18+ AGE VERIFICATION MODAL POPUP
   ========================================================================== */

.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 9999999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.age-modal-overlay.age-modal-hide {
    opacity: 0;
    pointer-events: none;
}

.age-modal-card {
    background: #ffffff;
    width: 100%;
    max-width: 440px;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(226, 232, 240, 0.8);
    animation: ageModalPop 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes ageModalPop {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.age-modal-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(225, 29, 72, 0.1);
    color: var(--primary-color);
    font-weight: 800;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.age-modal-title {
    color: var(--heading-color) !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
}

.age-modal-desc {
    color: var(--gray-text-color-01) !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 24px !important;
}

.age-modal-desc strong {
    color: var(--heading-color) !important;
}

.age-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.age-btn {
    width: 100%;
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.age-btn-accept {
    background-color: var(--primary-color);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
}

.age-btn-accept:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(225, 29, 72, 0.45);
}

.age-btn-decline {
    background-color: #f1f5f9;
    color: #64748b !important;
    border: 1px solid #cbd5e1;
}

.age-btn-decline:hover {
    background-color: #e2e8f0;
    color: #334155 !important;
}

.age-modal-footer {
    font-size: 11.5px;
    color: #94a3b8;
    margin-top: 16px;
    line-height: 1.4;
}

/* ==========================================================================
   MAIN SITE FOOTER (LUXURY LIGHT THEME MATCHING WEBSITE PALETTE)
   ========================================================================== */

.site-main-footer {
    background-color: #ffffff;
    color: var(--text-color);
    font-family: inherit;
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--border-color);
}

.footer-top-strip {
    background-color: var(--primary-light);
    border-bottom: 1px solid rgba(225, 29, 72, 0.12);
}

.footer-top-link {
    color: var(--heading-color) !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.footer-top-link:hover {
    color: var(--primary-color) !important;
}

.text-rose {
    color: var(--primary-color) !important;
}

.text-emerald {
    color: var(--emerald-color) !important;
}

.footer-strip-divider {
    color: var(--border-hover);
    font-size: 16px;
}

.footer-body-content {
    padding-top: 48px;
    padding-bottom: 48px;
    background-color: #ffffff;
}

.footer-col-title {
    color: var(--heading-color) !important;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: -0.01em;
}

.footer-about-text {
    color: var(--gray-text-color-01) !important;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-links li {
    margin-bottom: 10px;
}

.footer-menu-links li a {
    color: var(--text-color) !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-menu-links li a:hover {
    color: var(--primary-color) !important;
    transform: translateX(4px);
}

.footer-contact-info .contact-item {
    margin-bottom: 12px;
    font-size: 14.5px;
    color: var(--heading-color);
}

.footer-contact-info .contact-link {
    color: var(--heading-color) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.footer-contact-info .contact-link:hover {
    color: var(--primary-color) !important;
}

.footer-legal-links {
    font-size: 12.5px;
    color: var(--gray-text-color);
    line-height: 1.5;
}

.footer-legal-links a {
    color: var(--gray-text-color-01) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--primary-color) !important;
}

.footer-bottom-copyright {
    background-color: var(--surface-alt);
    border-top: 1px solid var(--border-color);
}

.footer-bottom-copyright .copyright-txt {
    color: var(--gray-text-color) !important;
    font-size: 13px;
    font-weight: 600;
}

/* ==========================================================================
   TAGS CLOUD COMPONENT - MODERN CHIP/BADGE DESIGN
   ========================================================================== */

.white-sec.pb-4,
.tags-section-wrap {
    padding: 36px 0 !important;
    background-color: var(--body-bg) !important;
    border-top: 1px solid var(--border-color);
}

.white-sec .container,
.tags-section-wrap .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
}

.white-sec h3,
.tags-section-wrap h3 {
    width: 100%;
    font-size: 22px;
    font-weight: 800;
    color: var(--heading-color) !important;
    margin-bottom: 20px !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.white-sec h3 i,
.tags-section-wrap h3 i {
    color: var(--primary-color) !important;
}

/* Individual Tag Chip Styling */
.white-sec .label,
.tags-section-wrap .label {
    display: inline-flex !important;
    align-items: center;
    margin: 3px !important;
    padding: 0 !important;
    border-radius: 50px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.white-sec .label a,
.tags-section-wrap .label a {
    display: inline-block;
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

/* Label Variants - Matching Project Brand Palette */
.white-sec .label-default,
.tags-section-wrap .label-default {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
}
.white-sec .label-default a,
.tags-section-wrap .label-default a {
    color: #334155 !important;
}
.white-sec .label-default:hover,
.tags-section-wrap .label-default:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
}
.white-sec .label-default:hover a,
.tags-section-wrap .label-default:hover a {
    color: #ffffff !important;
}

.white-sec .label-primary,
.tags-section-wrap .label-primary {
    background-color: var(--primary-light) !important;
    border: 1px solid #fecdd3 !important;
}
.white-sec .label-primary a,
.tags-section-wrap .label-primary a {
    color: var(--primary-color) !important;
}
.white-sec .label-primary:hover,
.tags-section-wrap .label-primary:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
}
.white-sec .label-primary:hover a,
.tags-section-wrap .label-primary:hover a {
    color: #ffffff !important;
}

.white-sec .label-info,
.tags-section-wrap .label-info {
    background-color: var(--secondary-light) !important;
    border: 1px solid #c7d2fe !important;
}
.white-sec .label-info a,
.tags-section-wrap .label-info a {
    color: var(--secondary-color) !important;
}
.white-sec .label-info:hover,
.tags-section-wrap .label-info:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}
.white-sec .label-info:hover a,
.tags-section-wrap .label-info:hover a {
    color: #ffffff !important;
}

.white-sec .label-success,
.tags-section-wrap .label-success {
    background-color: #ecfdf5 !important;
    border: 1px solid #a7f3d0 !important;
}
.white-sec .label-success a,
.tags-section-wrap .label-success a {
    color: #059669 !important;
}
.white-sec .label-success:hover,
.tags-section-wrap .label-success:hover {
    background-color: #10b981 !important;
    border-color: #10b981 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}
.white-sec .label-success:hover a,
.tags-section-wrap .label-success:hover a {
    color: #ffffff !important;
}

.white-sec .label-warning,
.tags-section-wrap .label-warning {
    background-color: #fffbeb !important;
    border: 1px solid #fde68a !important;
}
.white-sec .label-warning a,
.tags-section-wrap .label-warning a {
    color: #d97706 !important;
}
.white-sec .label-warning:hover,
.tags-section-wrap .label-warning:hover {
    background-color: #f59e0b !important;
    border-color: #f59e0b !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}
.white-sec .label-warning:hover a,
.tags-section-wrap .label-warning:hover a {
    color: #ffffff !important;
}

.white-sec .label-danger,
.tags-section-wrap .label-danger {
    background-color: #fef2f2 !important;
    border: 1px solid #fecdd3 !important;
}
.white-sec .label-danger a,
.tags-section-wrap .label-danger a {
    color: #e11d48 !important;
}
.white-sec .label-danger:hover,
.tags-section-wrap .label-danger:hover {
    background-color: #be123c !important;
    border-color: #be123c !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(190, 18, 60, 0.25);
}
.white-sec .label-danger:hover a,
.tags-section-wrap .label-danger:hover a {
    color: #ffffff !important;
}