/* ============================================
   RentaDolls Mumbai - Modern Elegant Theme
   Inspired by Premium Service Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');
:root {
    /* Color Palette - Porto Theme HS (pink) */
    --primary: #C04C68;
    --primary-dark: #A23A55;
    --primary-light: #D87189;
    --accent: #C04C68;
    --accent-hover: #A23A55;
    /* Background Colors */
    --bg-cream: #FBE4E8;
    --bg-light: #FFF5F7;
    --bg-card: #FFFFFF;
    --bg-dark-green: #2A2A2A;
    /* Text Colors */
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #6B6B6B;
    --text-muted: #9A9A9A;
    --text-white: #FFFFFF;
    /* UI Colors */
    --border-light: #E8E8E8;
    --border-medium: #D0D0D0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    /* Spacing */
    --header-height: 80px;
    --section-padding: 80px;
    --container-max: 1280px;
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 100px;
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
}


/* ============================================
   Reset & Base
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}


/* ============================================
   Header (Cmouse style)
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FBE4E8;
    transition: var(--transition);
    pointer-events: none;
}

.site-header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(251, 228, 232, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(139, 69, 88, 0.1);
}

.header-bar {
    pointer-events: auto;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}


/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    padding: 8px 18px 8px 10px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(15, 36, 24, 0.08);
}

.site-header.scrolled .logo {
    background: transparent;
    box-shadow: none;
    padding-left: 0;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: #8B4558;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #8B4558;
    letter-spacing: -0.3px;
}


/* Right cluster */

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}


/* Sign In Pill (Orange) */

.signin-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #8B4558;
    color: #fff;
    padding: 8px 8px 8px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 6px 16px rgba(139, 69, 88, 0.3);
}

.signin-pill:hover {
    background: #C77D8F;
    transform: translateY(-1px);
}

.signin-pill .signin-arrow {
    width: 28px;
    height: 28px;
    background: #fff;
    color: #8B4558;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transform: rotate(-35deg);
}


/* Main Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    position: relative;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 600;
    color: #5C1F33;
    transition: var(--transition-fast);
}

.nav-link+.nav-link::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: rgba(92, 31, 51, 0.45);
}

.nav-link:hover {
    color: #2D1F26;
}

.nav-link.active {
    color: #2D1F26;
    font-weight: 600;
}


/* Mobile Toggle */

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}


/* ============================================
   Hero - Porto Theme HS Style (pink final theme)
   ============================================ */

:root {
    --pt-pink-soft: #FBE4E8;
    --pt-pink-darker: #F4C8D0;
    --pt-rose: #C04C68;
    --pt-rose-dark: #A23A55;
    --pt-text: #2A2A2A;
    --pt-muted: #6B6B6B;
}

.pt-stage {
    position: relative;
    background: var(--pt-pink-soft);
    padding-top: 64px;
}


/* ===== Pink Header ===== */

.pt-header {
    background: var(--pt-pink-soft);
    padding: 18px 0;
    position: relative;
    z-index: 30;
}

.pt-header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.pt-brand {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--pt-text);
    letter-spacing: 0.3px;
    margin-right: 24px;
}

.pt-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
}

.pt-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--pt-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.pt-nav-link i {
    font-size: 9px;
    opacity: 0.7;
}

.pt-nav-link:hover {
    color: var(--pt-rose);
}

.pt-header-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.pt-icon-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pt-text);
    background: transparent;
    border-radius: 50%;
    font-size: 16px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.pt-icon-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--pt-rose);
}


/* ===== Hero ===== */

.pt-hero {
    position: relative;
    min-height: 560px;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 0 120px;
}


/* dark overlay so the white text stays readable over the photo
   (darker on the left where the heading sits, fading to the right) */

.pt-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(20, 6, 12, 0.78) 0%, rgba(20, 6, 12, 0.55) 45%, rgba(20, 6, 12, 0.20) 100%);
    pointer-events: none;
}

.pt-hero-content {
    position: relative;
    z-index: 4;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    color: #fff;
}

.pt-hero-title {
    font-family: 'Inter', 'Playfair Display', sans-serif;
    font-size: clamp(30px, 3.6vw, 48px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
    line-height: 1.18;
    margin-bottom: 18px;
    max-width: 620px;
    /* keep long headings from running into the photo */
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.pt-hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 32px;
    max-width: 440px;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.pt-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--pt-rose);
    padding: 14px 36px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pt-hero-cta:hover {
    background: var(--pt-rose);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(192, 76, 104, 0.35);
}


/* Arch-framed portrait on the right */

.pt-hero-arch {
    position: absolute;
    top: 50%;
    right: 18%;
    transform: translateY(-50%);
    width: 280px;
    height: 380px;
    border-radius: 140px 140px 18px 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.pt-hero-arch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Wave divider at the bottom of hero (scalloped multi-crest) */

.pt-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 110px;
    z-index: 5;
    display: block;
}


/* Desktop wave - show on larger screens */

.pt-wave-desktop {
    display: block;
}


/* Mobile wave - hide on larger screens */

.pt-wave-mobile {
    display: none;
    height: 60px;
}

@media (max-width: 768px) {
    .pt-wave-desktop {
        display: none;
    }
    .pt-wave-mobile {
        display: block;
    }
}


/* Generic wave desktop/mobile classes */

.wave-desktop {
    display: block;
}

.wave-mobile {
    display: none;
}

@media (max-width: 768px) {
    .wave-desktop {
        display: none;
    }
    .wave-mobile {
        display: block;
        height: 60px;
    }
    .pt-wave-mobile {
        height: 60px;
    }
}


/* ============================================
   Elegant Design Section (pink, corner images)
   ============================================ */

.pt-elegant {
    position: relative;
    background: var(--pt-pink-soft);
    padding: 90px 24px 110px;
    overflow: hidden;
}

.pt-corner-tr,
.pt-corner-bl {
    position: absolute;
    z-index: 1;
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.pt-corner-tr {
    top: -40px;
    right: 60px;
}

.pt-corner-bl {
    bottom: -40px;
    left: 60px;
}

.pt-elegant-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.pt-elegant-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 500;
    color: var(--pt-text);
    letter-spacing: 1px;
    line-height: 1.25;
    margin-bottom: 22px;
}

.pt-elegant-text {
    font-size: 15px;
    color: var(--pt-muted);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 32px;
}

.pt-elegant-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pt-rose);
    color: #fff;
    padding: 13px 36px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    box-shadow: 0 6px 16px rgba(192, 76, 104, 0.25);
}

.pt-elegant-cta:hover {
    background: var(--pt-rose-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(192, 76, 104, 0.35);
}

@media (max-width: 1024px) {
    .pt-corner-tr,
    .pt-corner-bl {
        width: 160px;
        height: 160px;
    }
    .pt-corner-tr {
        right: 24px;
        top: -28px;
    }
    .pt-corner-bl {
        left: 24px;
        bottom: -28px;
    }
}

@media (max-width: 768px) {
    .pt-elegant {
        padding: 200px 20px 200px;
    }
    .pt-corner-tr,
    .pt-corner-bl {
        width: 130px;
        height: 130px;
    }
    .pt-corner-tr {
        right: 16px;
        top: 24px;
    }
    .pt-corner-bl {
        left: 16px;
        bottom: 24px;
    }
    .pt-elegant-title {
        font-size: 24px;
    }
    .pt-elegant-text {
        font-size: 14px;
    }
}


/* ============================================
   Best Sellers Banner — bg image full section,
   rose box centered, waves at top + bottom
   ============================================ */

.pt-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.pt-banner-panel {
    position: relative;
    background: var(--pt-rose);
    color: #fff;
    text-align: center;
    padding: 70px 60px;
    max-width: 1200px;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pt-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 500;
    color: #fff;
    letter-spacing: 1.5px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.pt-banner-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 26px;
}

.pt-banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--pt-rose);
    padding: 12px 28px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: var(--transition);
}

.pt-banner-cta:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.pt-banner-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    display: block;
    z-index: 2;
    pointer-events: none;
}

.pt-banner-wave-top {
    top: 0;
}

.pt-banner-wave-bottom {
    bottom: 0;
}


/* ============================================
   Featured Profile Cards (pink section)
   ============================================ */

.pt-profiles {
    background: #FBE4E8;
    padding: 80px 0;
}

.pt-profiles-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.pt-profiles-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.pt-profiles-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 500;
    color: var(--pt-text);
    letter-spacing: 0.5px;
}

.pt-profiles-title span {
    color: var(--pt-rose);
    font-style: italic;
}

.pt-profiles-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pt-rose);
    color: #fff;
    padding: 11px 26px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 6px 16px rgba(192, 76, 104, 0.25);
}

.pt-profiles-view-all:hover {
    background: var(--pt-rose-dark);
    transform: translateY(-2px);
}

.pt-profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}


/* Card */

.pt-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(192, 76, 104, 0.12);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    color: var(--pt-text);
    outline: none;
    border: none;
    text-decoration: none;
}

.pt-card:focus,
.pt-card:focus-visible,
.pt-card:active {
    outline: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
}

.pt-card:hover {
    /* hover effects removed */
}


/* Image — LARGER ratio (more image, less text below) */

.pt-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f5f5f5;
}

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

.pt-card:hover .pt-card-image img {
    /* hover effects removed */
}

.pt-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 60px;
}


/* Top-left rating pill */

.pt-card-rating {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--pt-text);
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.pt-card-rating i {
    color: #FFB400;
    font-size: 11px;
}


/* Top-right badge (VIP / verified) */

.pt-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.pt-card-badge-vip {
    background: linear-gradient(135deg, #F4B83A, #E89B1A);
}

.pt-card-badge-verified {
    background: var(--pt-rose);
}


/* Body — tighter padding so text area is smaller */

.pt-card-body {
    padding: 14px 18px 10px;
}

.pt-card-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--pt-text);
    margin-bottom: 4px;
}

.pt-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--pt-muted);
    margin-bottom: 8px;
}

.pt-card-location i {
    color: var(--pt-rose);
    font-size: 11px;
}

.pt-card-text {
    font-size: 12.5px;
    color: var(--pt-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Footer — 3 icons (VVIP left, heart center, available right) */

.pt-card-footer {
    padding: 14px 22px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pt-card-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    transition: var(--transition);
}

.pt-card-icon-vvip {
    background: linear-gradient(135deg, #F4B83A, #E89B1A);
    color: #fff;
}

.pt-card-icon-heart {
    width: 54px;
    height: 54px;
    background: var(--pt-rose);
    color: #fff;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(192, 76, 104, 0.4);
}

.pt-card-icon-available {
    background: rgba(34, 197, 94, 0.12);
    position: relative;
}

.pt-card-pulse {
    width: 12px;
    height: 12px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: pt-pulse 1.8s infinite;
}

@keyframes pt-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.pt-card:hover .pt-card-icon-heart {
    /* hover effects removed */
}


/* ============================================
   Content Section (dark rose bg, stacked content blocks)
   ============================================ */

.pt-content {
    background: var(--pt-rose);
    padding: 80px 24px;
}

.pt-content-inner {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.pt-content-block {
    color: #fff;
}

.pt-content-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
    line-height: 1.25;
}

.pt-content-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 768px) {
    .pt-content {
        padding: 56px 20px;
    }
    .pt-content-inner {
        gap: 36px;
    }
    .pt-content-heading {
        font-size: 22px;
    }
    .pt-content-text {
        font-size: 14px;
        line-height: 1.7;
    }
}


/* ============================================
   Categories Section — Circle Avatars + Waves
   ============================================ */

.pt-categories {
    background: #FBE4E8;
    padding: 120px 24px 130px;
    position: relative;
    overflow: hidden;
}


/* Top + bottom waves */

.pt-cat-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    display: block;
    z-index: 2;
    pointer-events: none;
}

.pt-cat-wave-top {
    top: -1px;
}

.pt-cat-wave-bottom {
    bottom: -1px;
}

.pt-cat-wave.wave-mobile {
    display: none;
}

@media (max-width: 768px) {
    .pt-cat-wave.wave-desktop {
        display: none !important;
    }
    .pt-cat-wave.wave-mobile {
        display: block !important;
        height: 60px;
    }
}

.pt-categories-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pt-categories-header {
    text-align: center;
    margin-bottom: 60px;
}

.pt-categories-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pt-rose);
    margin-bottom: 14px;
    position: relative;
    padding: 0 28px;
}

.pt-categories-label::before,
.pt-categories-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 18px;
    height: 1px;
    background: var(--pt-rose);
}

.pt-categories-label::before {
    left: 0;
}

.pt-categories-label::after {
    right: 0;
}

.pt-categories-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 500;
    color: var(--pt-text);
    letter-spacing: 0.3px;
    margin-bottom: 16px;
    line-height: 1.15;
}

.pt-categories-title span {
    color: var(--pt-rose);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.pt-categories-title span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 8px;
    background: rgba(192, 76, 104, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.pt-categories-sub {
    font-size: 15px;
    color: var(--pt-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}


/* Circles grid — all same size, evenly spaced */

.pt-cat-circles {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 24px;
    margin: 0 auto 56px;
    max-width: 1280px;
}

.pt-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    text-decoration: none;
    color: var(--pt-text);
    outline: none;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.pt-circle:hover {
    transform: translateY(-6px);
}


/* Circular image */

.pt-circle-img {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    padding: 4px;
    box-shadow: 0 8px 22px rgba(192, 76, 104, 0.18);
    transition: box-shadow 0.4s ease;
}

.pt-circle-img::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pt-rose), var(--pt-rose-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.pt-circle:hover .pt-circle-img {
    box-shadow: 0 14px 32px rgba(192, 76, 104, 0.4);
}

.pt-circle:hover .pt-circle-img::before {
    opacity: 1;
}

.pt-circle-img img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.6s ease;
}

.pt-circle:hover .pt-circle-img img {
    transform: scale(1.06);
}

.pt-circle-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--pt-text);
    line-height: 1.2;
    transition: color 0.3s ease;
}

.pt-circle:hover .pt-circle-title {
    color: var(--pt-rose);
}

.pt-circle-count {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--pt-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* Footer view all */

.pt-categories-footer {
    text-align: center;
}

.pt-categories-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--pt-rose);
    padding: 14px 36px;
    border: 2px solid var(--pt-rose);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.pt-categories-view-all:hover {
    background: var(--pt-rose);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(192, 76, 104, 0.35);
}

@media (max-width: 1024px) {
    .pt-cat-circles {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .pt-categories {
        padding: 100px 16px 110px;
    }
    .pt-cat-circles {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
    .pt-circle-img {
        width: 96px;
        height: 96px;
    }
    .pt-circle-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .pt-categories-title {
        font-size: 28px;
    }
    .pt-cat-circles {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .pt-circle-img {
        width: 88px;
        height: 88px;
    }
}


/* ============================================
   Top Categories — Tab Cards + Rose Panel
   ============================================ */

.pt-toptab {
    background: #c04c68;
    padding: 140px 24px 150px;
    position: relative;
    overflow: hidden;
}


/* Top + bottom pink waves (same color as adjacent sections so no white shows) */

.pt-toptab-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    display: block;
    z-index: 4;
    pointer-events: none;
}

.pt-toptab-wave-top {
    top: -1px;
}

.pt-toptab-wave-bottom {
    bottom: -1px;
}

.pt-toptab-wave.wave-mobile {
    display: none;
}

@media (max-width: 768px) {
    .pt-toptab-wave.wave-desktop {
        display: none !important;
    }
    .pt-toptab-wave.wave-mobile {
        display: block !important;
        height: 60px;
    }
}


/* ============================================
   Locations Section — Memories-style image cards
   ============================================ */

.pt-locations {
    background: #FBE4E8;
    padding: 90px 24px 100px;
    position: relative;
}

.pt-locations-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.pt-locations-head {
    text-align: center;
    margin-bottom: 50px;
}

.pt-locations-eyebrow {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--pt-rose);
    margin-bottom: 12px;
    letter-spacing: 0.6px;
}

.pt-locations-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 600;
    color: var(--pt-text);
    margin-bottom: 14px;
    letter-spacing: -0.4px;
    line-height: 1.1;
}

.pt-locations-title span {
    color: var(--pt-rose);
    font-style: italic;
}

.pt-locations-sub {
    font-size: 15px;
    color: var(--pt-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}


/* Grid */

.pt-locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-bottom: 50px;
}


/* Card — black rounded frame holding image on top + text block below */

.pt-loc-card {
    background: #0a0a0a;
    border-radius: 32px;
    padding: 14px 14px 24px;
    color: #fff;
    text-decoration: none;
    outline: none;
    border: none;
    display: block;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.pt-loc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.3);
}


/* Image with its own rounded corners inside the black frame */

.pt-loc-img {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1a1a;
    margin-bottom: 22px;
}

.pt-loc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.pt-loc-card:hover .pt-loc-img img {
    transform: scale(1.06);
}


/* Dark gradient at the bottom of the image — fades to black so the image
   silhouettes into the card's black footer below, matching the reference */

.pt-loc-img::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient( to bottom, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.35) 45%, rgba(10, 10, 10, 0.85) 80%, #0a0a0a 100%);
    pointer-events: none;
    z-index: 1;
}


/* "Available" label floating at the top INSIDE the image */

.pt-loc-tag {
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--pt-rose);
    letter-spacing: 0.3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    z-index: 2;
}


/* Footer text block in the black frame below the image */

.pt-loc-foot {
    text-align: center;
    padding: 0 8px;
}

.pt-loc-name {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.pt-loc-zone {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.3px;
}


/* Footer view-all */

.pt-locations-foot {
    text-align: center;
}

.pt-locations-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pt-rose);
    color: #fff;
    padding: 14px 34px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 8px 22px rgba(192, 76, 104, 0.3);
}

.pt-locations-all:hover {
    background: var(--pt-rose-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(192, 76, 104, 0.4);
}

@media (max-width: 1024px) {
    .pt-locations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pt-locations {
        padding: 60px 16px 70px;
    }
    .pt-locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .pt-loc-name {
        font-size: 20px;
    }
    .pt-loc-zone {
        font-size: 12px;
    }
    .pt-loc-tag {
        top: 18px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pt-locations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .pt-loc-card {
        padding: 10px 10px 18px;
        border-radius: 24px;
    }
    .pt-loc-img {
        border-radius: 16px;
        margin-bottom: 14px;
    }
    .pt-loc-name {
        font-size: 18px;
    }
    .pt-loc-tag {
        font-size: 13px;
        top: 12px;
    }
}


/* Decorative floating dots in the background */

.pt-toptab-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.pt-toptab-deco-1 {
    width: 220px;
    height: 220px;
    top: -60px;
    left: -80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 70%);
}

.pt-toptab-deco-2 {
    width: 280px;
    height: 280px;
    bottom: 60px;
    right: -100px;
    background: radial-gradient(circle, rgba(255, 217, 199, 0.18) 0%, rgba(255, 217, 199, 0) 70%);
}

.pt-toptab-deco-3 {
    width: 160px;
    height: 160px;
    top: 280px;
    right: 18%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 70%);
}

.pt-toptab-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}


/* Header block */

.pt-toptab-head {
    margin-bottom: 44px;
}

.pt-toptab-eyebrow {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
    letter-spacing: 0.6px;
}

.pt-toptab-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.pt-toptab-title span {
    color: #FFD9C7;
    font-style: italic;
    position: relative;
    display: inline-block;
}

.pt-toptab-title span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 10px;
    background: rgba(255, 255, 255, 0.18);
    z-index: -1;
    border-radius: 6px;
}

.pt-toptab-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}


/* Tab cards row */

.pt-toptab-tabs {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 0;
    position: relative;
    z-index: 3;
}

.pt-toptab-tab {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.pt-toptab-tab-icon {
    position: relative;
    width: 84px;
    height: 84px;
    background: #fff;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--pt-rose);
    box-shadow: 0 10px 24px rgba(192, 76, 104, 0.14);
    transition: var(--transition);
    border: 2px solid transparent;
}

.pt-toptab-tab-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--pt-muted);
    letter-spacing: 1.8px;
    transition: color 0.3s ease;
    margin-top: 4px;
}


/* Active tab — glow, ring, bigger */

.pt-toptab-tab.active {
    transform: scale(1.18) translateY(-4px);
}

.pt-toptab-tab.active .pt-toptab-tab-icon {
    background: linear-gradient(135deg, #fff 0%, #FFF5F7 100%);
    border-color: rgba(192, 76, 104, 0.3);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.6), 0 18px 36px rgba(192, 76, 104, 0.35);
    color: var(--pt-rose-dark);
}

.pt-toptab-tab.active .pt-toptab-tab-label {
    color: var(--pt-rose-dark);
    font-weight: 800;
}

.pt-toptab-tab.active::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 14px solid var(--pt-rose);
    z-index: 5;
    filter: drop-shadow(0 4px 4px rgba(162, 58, 85, 0.25));
}

.pt-toptab-tab:hover:not(.active) .pt-toptab-tab-icon {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(192, 76, 104, 0.2);
}


/* Inner panel — much darker plum so it pops against the rose section bg */

.pt-toptab-panel-wrap {
    position: relative;
    background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, #5C1F33 0%, #3D1322 100%);
    border-radius: 32px;
    padding: 70px 60px 40px;
    margin-top: -40px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 24px 50px rgba(61, 19, 34, 0.5);
}


/* Nav arrows */

.pt-toptab-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    z-index: 4;
    transition: var(--transition);
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pt-toptab-nav:hover {
    background: #fff;
    color: var(--pt-rose);
}

.pt-toptab-nav-prev {
    left: 12px;
}

.pt-toptab-nav-next {
    right: 12px;
}


/* Panels */

.pt-toptab-panel {
    display: none;
    animation: pt-fade-in 0.35s ease;
}

.pt-toptab-panel.active {
    display: block;
}


/* Horizontal scrollable strip */

.pt-toptab-strip {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 8px 8px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pt-toptab-strip::-webkit-scrollbar {
    display: none;
}


/* Card */

.pt-toptab-card {
    flex: 0 0 200px;
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: var(--pt-text);
    outline: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pt-toptab-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.pt-toptab-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    color: var(--pt-rose);
    font-size: 17px;
    cursor: pointer;
    outline: none;
    transition: transform 0.2s ease;
}

.pt-toptab-heart:hover {
    transform: scale(1.15);
}

.pt-toptab-heart.active i,
.pt-toptab-heart:active i {
    font-weight: 900;
}

.pt-toptab-img {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #FBE4E8;
    padding: 14px;
}

.pt-toptab-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}


/* Dark footer (like the dark navy bar in the reference) */

.pt-toptab-foot {
    background: #1F2937;
    color: #fff;
    padding: 12px 14px 14px;
}

.pt-toptab-name {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pt-toptab-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.pt-toptab-price {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.pt-toptab-rating {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    color: #fff;
    font-weight: 600;
}

.pt-toptab-rating i {
    color: #F4B83A;
    font-size: 10px;
}

.pt-toptab-add {
    width: 28px;
    height: 28px;
    background: #F4B83A;
    border: none;
    border-radius: 50%;
    color: #1F2937;
    font-size: 12px;
    cursor: pointer;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.pt-toptab-add:hover {
    background: #E89B1A;
    transform: scale(1.08);
}

@media (max-width: 1024px) {
    .pt-toptab-tabs {
        gap: 22px;
    }
    .pt-toptab-tab-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .pt-toptab {
        padding: 60px 14px 70px;
    }
    .pt-toptab-tabs {
        gap: 14px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 8px;
        scrollbar-width: none;
    }
    .pt-toptab-tabs::-webkit-scrollbar {
        display: none;
    }
    .pt-toptab-tab-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
        border-radius: 16px;
    }
    .pt-toptab-tab-label {
        font-size: 10px;
        letter-spacing: 1.2px;
    }
    .pt-toptab-panel-wrap {
        padding: 50px 38px 30px;
        border-radius: 22px;
    }
    .pt-toptab-card {
        flex: 0 0 170px;
    }
    .pt-toptab-nav {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
    .pt-toptab-nav-prev {
        left: 6px;
    }
    .pt-toptab-nav-next {
        right: 6px;
    }
}

@media (max-width: 480px) {
    .pt-toptab-card {
        flex: 0 0 150px;
    }
    .pt-toptab-panel-wrap {
        padding: 44px 24px 26px;
    }
}

@media (max-width: 1024px) {
    .pt-profiles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
}

@media (max-width: 768px) {
    .pt-profiles {
        padding: 56px 0;
    }
    .pt-profiles-inner {
        padding: 0 20px;
    }
    .pt-profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .pt-card-body {
        padding: 14px 16px 12px;
    }
    .pt-card-name {
        font-size: 15px;
    }
    .pt-card-heart {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .pt-profiles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .pt-card-rating {
        font-size: 11px;
        padding: 5px 10px;
    }
    .pt-card-badge {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}

.pt-banner-inner {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 80px 40px;
    max-width: 640px;
}

.pt-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 500;
    color: #fff;
    letter-spacing: 1.5px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.pt-banner-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 26px;
    letter-spacing: 0.3px;
}

.pt-banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--pt-rose);
    padding: 12px 28px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pt-banner-cta:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .pt-banner-panel {
        margin: 0 8%;
    }
}

@media (max-width: 768px) {
    .pt-banner {
        padding: 32px 0;
    }
    .pt-banner-panel {
        margin: 0 4%;
        min-height: 280px;
    }
    .pt-banner-inner {
        padding: 60px 24px;
    }
    .pt-banner-title {
        font-size: 20px;
        letter-spacing: 1px;
    }
}

.service-card {
    background: transparent;
    border-radius: 18px;
    padding: 14px 10px;
    text-align: center;
    transition: var(--transition);
    color: #fff;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--accent);
    font-size: 28px;
}

.service-name {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.2px;
}


/* ============================================
   Section Common Styles
   ============================================ */

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.escorts-section,
.categories-section,
.locations-section,
.why-section {
    padding: var(--section-padding) 0;
}

.categories-section {
    background: var(--bg-light);
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-header.center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    font-weight: 500;
}

.section-title span {
    color: var(--primary);
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    padding: 10px 20px;
    border: 1px solid var(--primary);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.view-all-btn:hover {
    background: var(--primary);
    color: var(--text-white);
}

.view-all-btn i {
    font-size: 12px;
    transition: var(--transition-fast);
}

.view-all-btn:hover i {
    transform: translateX(4px);
}


/* ============================================
   Escort Cards Grid
   ============================================ */

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

.escort-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.escort-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.escort-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 48px;
}

.escort-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.escort-badge.vip {
    background: var(--accent);
    color: var(--text-dark);
}

.escort-badge.verified {
    background: var(--primary);
    color: var(--text-white);
}

.escort-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 90, 61, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.escort-card:hover .escort-overlay {
    opacity: 1;
}

.escort-overlay span {
    background: var(--text-white);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    transform: translateY(10px);
    transition: var(--transition);
}

.escort-card:hover .escort-overlay span {
    transform: translateY(0);
}

.escort-info {
    padding: 16px;
}

.escort-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.escort-info p {
    font-size: 13px;
    color: var(--text-light);
}


/* ============================================
   Categories Grid
   ============================================ */

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

.category-card-new {
    position: relative;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cat-card-image {
    position: absolute;
    inset: 0;
}

.cat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card-new:hover .cat-card-image img {
    transform: scale(1.08);
}

.cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.cat-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
}

.cat-card-icon {
    font-size: 20px;
    color: var(--accent);
}

.cat-card-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    flex: 1;
}

.cat-card-arrow {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.category-card-new:hover .cat-card-arrow {
    background: var(--accent);
    color: var(--text-dark);
}


/* ============================================
   Locations Grid
   ============================================ */

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.location-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.location-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.loc-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(45, 90, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
}

.location-card:hover .loc-card-icon {
    background: var(--primary);
    color: var(--text-white);
}

.location-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.location-card span {
    font-size: 13px;
    color: var(--text-light);
}


/* ============================================
   Why Choose Us Section
   ============================================ */

.why-section {
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.why-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.why-icon {
    width: 64px;
    height: 64px;
    background: rgba(45, 90, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 24px;
}

.why-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}


/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    background: var(--primary);
    padding: 80px 40px;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn.primary {
    background: var(--text-white);
    color: var(--primary);
}

.cta-btn.primary:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.cta-btn.whatsapp {
    background: #25D366;
    color: var(--text-white);
}

.cta-btn.whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
}


/* ============================================
   Footer
   ============================================ */

.site-footer {
    background: var(--text-dark);
    padding: 60px 40px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
    max-width: var(--container-max);
    margin: 0 auto 40px;
}

.footer-section {
    min-width: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    background: var(--primary);
}

.footer-logo .logo-text {
    color: var(--text-white);
}

.footer-about {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.footer-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: var(--accent);
    font-size: 14px;
}

.footer-contact .working-hours {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

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

.footer-bottom-links .divider {
    color: rgba(255, 255, 255, 0.2);
}


/* ============================================
   WhatsApp Float Button
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 23px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* ============================================
   Mobile Menu Overlay
   ============================================ */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-light);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-menu-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-close-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 20px;
}

.mobile-menu-links {
    flex: 1;
    padding: 20px 0;
}

.mobile-link {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
}

.mobile-cta-btn.whatsapp {
    background: #25D366;
    color: white;
}

.mobile-cta-btn.call {
    background: var(--primary);
    color: white;
}


/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1200px) {
    .escorts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .lifestyle-right {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .pt-header-inner {
        padding: 0 24px;
        gap: 20px;
    }
    .pt-nav {
        gap: 20px;
    }
    .pt-nav-link {
        font-size: 12px;
        letter-spacing: 0.6px;
    }
    .pt-hero-arch {
        right: 8%;
        width: 240px;
        height: 320px;
    }
    .pt-hero-content {
        padding: 0 48px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
     :root {
        --header-height: 70px;
        --section-padding: 60px;
    }
    .header-bar {
        padding: 0 16px;
    }
    .pt-header-inner {
        padding: 0 20px;
        gap: 14px;
    }
    .pt-nav {
        display: none;
    }
    .pt-brand {
        font-size: 18px;
        margin-right: 0;
    }
    .pt-hero {
        min-height: 420px;
        padding: 50px 0 90px;
    }
    .pt-hero-content {
        padding: 0 24px;
        text-align: center;
    }
    .pt-hero-title {
        font-size: 30px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .pt-hero-sub {
        font-size: 14px;
        margin-left: auto;
        margin-right: auto;
    }
    .pt-hero-arch {
        display: none;
    }
    .section-container {
        padding: 0 20px;
    }
    .escorts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .escort-image {
        height: 220px;
    }
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-section {
        padding: 60px 20px;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    .site-footer {
        padding: 40px 20px 20px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pt-hero-title {
        font-size: 28px;
        letter-spacing: 0.5px;
    }
    .escorts-grid {
        grid-template-columns: 1fr 1fr;
    }
    .escort-image {
        height: 180px;
    }
    .escort-info {
        padding: 12px;
    }
    .escort-info h3 {
        font-size: 14px;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .category-card-new {
        height: 160px;
    }
    .locations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .location-card {
        padding: 16px;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 28px;
    }
    .whatsapp-float {
        width: 46px;
        height: 46px;
        font-size: 20px;
        bottom: 16px;
        right: 16px;
    }
}


/* ============================================
   Page Header (for categories, locations, etc.)
   ============================================ */

.page-header {
    background: linear-gradient(135deg, #8B4558 0%, #C77D8F 100%);
    padding: 100px 24px 60px;
    text-align: center;
    margin-top: 80px;
}

.page-header .container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto;
}


/* ============================================
   Category Card Styles
   ============================================ */

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

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

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.category-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.category-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}


/* ============================================
   Profile Card Styles
   ============================================ */

.profile-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.profile-card .card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.profile-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #F4B83A, #E89B1A);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

.profile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.profile-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}


/* ============================================
   Footer Links for Sidebar
   ============================================ */

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

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

.footer-links li a {
    display: block;
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #8B4558;
}

.footer-links li a .is-pulled-right {
    float: right;
    color: #999;
}


/* Location Card (for locations listing page) */

.location-card .location-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 69, 88, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #8B4558;
    font-size: 24px;
    transition: all 0.3s ease;
}

.location-card:hover .location-icon {
    background: #8B4558;
    color: #fff;
}

.location-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.location-count {
    font-size: 13px;
    color: #888;
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 16px 40px;
        margin-top: 70px;
    }
    .category-card {
        height: 220px;
    }
    .profile-card .card-image {
        height: 220px;
    }
    .category-name,
    .profile-name {
        font-size: 16px;
    }
}


/* ============================================
   Call Girls Page — Elegant Hero
   ============================================ */

.cg-hero {
    position: relative;
    background: linear-gradient(135deg, #C04C68 0%, #A23A55 100%);
    padding: 120px 24px 90px;
    overflow: hidden;
    text-align: center;
}

.cg-hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.cg-hero-blob-1 {
    width: 320px;
    height: 320px;
    top: -100px;
    left: -80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
}

.cg-hero-blob-2 {
    width: 360px;
    height: 360px;
    bottom: -120px;
    right: -100px;
    background: radial-gradient(circle, rgba(255, 217, 199, 0.14) 0%, rgba(255, 217, 199, 0) 70%);
}

.cg-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.cg-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 22px;
}

.cg-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.cg-breadcrumb a:hover {
    color: #fff;
}

.cg-breadcrumb i {
    font-size: 9px;
    opacity: 0.6;
}

.cg-breadcrumb span {
    color: #fff;
    font-weight: 600;
}

.cg-hero-eyebrow {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    color: #FFD9C7;
    margin-bottom: 14px;
    letter-spacing: 0.6px;
}

.cg-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.cg-hero-title span {
    font-style: italic;
    color: #FFD9C7;
}

.cg-hero-sub {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin: 0 auto 40px;
}


/* Stats row */

.cg-hero-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.cg-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cg-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.cg-stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}


/* Wave divider at the bottom of the hero */

.cg-hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 60px;
    display: block;
    z-index: 3;
}

@media (max-width: 768px) {
    .cg-hero {
        padding: 90px 18px 70px;
    }
    .cg-hero-stats {
        gap: 32px;
    }
    .cg-hero-sub {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cg-hero-stats {
        gap: 24px;
    }
    .cg-stat-num {
        font-size: 26px;
    }
    .cg-stat-label {
        font-size: 10px;
        letter-spacing: 1px;
    }
}


/* ============================================
   Category Page — body layout + sidebar
   ============================================ */

.cat-body {
    background: #FBE4E8;
    padding: 50px 24px 90px;
}

.cat-body-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.cat-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 36px;
    align-items: start;
}


/* Profile cards grid reuses .pt-profiles-grid but force 3 cols here */

.cat-main .pt-profiles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* Sidebar */

.cat-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cat-side-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(192, 76, 104, 0.1);
}

.cat-side-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--pt-text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(192, 76, 104, 0.12);
}

.cat-side-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cat-side-list li {
    margin: 0;
}

.cat-side-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 14px;
    color: var(--pt-text);
    transition: var(--transition-fast);
}

.cat-side-list a i {
    font-size: 10px;
    color: var(--pt-rose);
    opacity: 0.5;
    transition: var(--transition-fast);
}

.cat-side-list a:hover {
    background: #FBE4E8;
    color: var(--pt-rose);
}

.cat-side-list a:hover i {
    transform: translateX(3px);
    opacity: 1;
}

.cat-side-list a.active {
    background: var(--pt-rose);
    color: #fff;
    font-weight: 600;
}

.cat-side-list a.active i {
    color: #fff;
    opacity: 1;
}


/* Sidebar CTA card */

.cat-side-cta {
    background: linear-gradient(135deg, var(--pt-rose), var(--pt-rose-dark));
    border-radius: 18px;
    padding: 26px 22px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 26px rgba(192, 76, 104, 0.25);
}

.cat-side-cta i {
    font-size: 30px;
    margin-bottom: 12px;
    color: #FFD9C7;
}

.cat-side-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.cat-side-cta p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 18px;
}

.cat-side-cta-btn {
    display: inline-block;
    background: #fff;
    color: var(--pt-rose);
    padding: 11px 28px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.cat-side-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}


/* Empty state */

.cat-empty {
    text-align: center;
    padding: 70px 20px;
    color: var(--pt-muted);
}

.cat-empty i {
    color: rgba(192, 76, 104, 0.3);
    margin-bottom: 18px;
}

.cat-empty h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--pt-text);
    margin-bottom: 8px;
}

.cat-empty p {
    margin-bottom: 22px;
}

.cat-empty-btn {
    display: inline-block;
    background: var(--pt-rose);
    color: #fff;
    padding: 13px 30px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.cat-empty-btn:hover {
    background: var(--pt-rose-dark);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .cat-main .pt-profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .cat-layout {
        grid-template-columns: 1fr;
    }
    .cat-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .cat-side-card,
    .cat-side-cta {
        flex: 1;
        min-width: 260px;
    }
}

@media (max-width: 600px) {
    .cat-main .pt-profiles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .cat-sidebar {
        flex-direction: column;
    }
}


/* ============================================
   Categories Listing Page — overflow-image cards
   ============================================ */

.cats-body {
    background: #FBE4E8;
    padding: 70px 24px 90px;
}

.cats-body-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 26px;
    /* big row gap so overflowing images don't collide */
    padding-top: 40px;
}


/* Card body — solid color, image pops out of the top-left */

.cat-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 22px;
    padding: 100px 22px 24px;
    /* top space clears the overflowing image */
    min-height: 160px;
    text-decoration: none;
    outline: none;
    overflow: visible;
    color: #fff;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}


/* Tone backgrounds */

.cat-tile-rose {
    background: linear-gradient(135deg, #C04C68, #A23A55);
    box-shadow: 0 14px 30px rgba(192, 76, 104, 0.3);
}

.cat-tile-blush {
    background: linear-gradient(135deg, #E68FA3, #D87189);
    box-shadow: 0 14px 30px rgba(216, 113, 137, 0.3);
}

.cat-tile-plum {
    background: linear-gradient(135deg, #8C3E5C, #6E2D44);
    box-shadow: 0 14px 30px rgba(110, 45, 68, 0.3);
}

.cat-tile-gold {
    background: linear-gradient(135deg, #F4B83A, #E89B1A);
    box-shadow: 0 14px 30px rgba(233, 155, 26, 0.3);
}

.cat-tile:hover {
    /* hover disabled */
}


/* Image that overflows out the top-left of the card */

.cat-tile-photo {
    position: absolute;
    top: -40px;
    left: 16px;
    width: 130px;
    height: 130px;
    border-radius: 18px;
    overflow: hidden;
    z-index: 3;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.cat-tile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-tile:hover .cat-tile-photo {
    /* hover disabled */
}


/* Price/count badge top-right */

.cat-tile-price {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    background: #fff;
    color: var(--pt-text);
    font-size: 13px;
    font-weight: 800;
    padding: 7px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cat-tile-gold .cat-tile-price {
    color: #8a5a0a;
}


/* Title */

.cat-tile-name {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0;
}


/* Description */

.cat-tile-desc {
    font-size: 12.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    max-width: 88%;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Action button bottom-right */

.cat-tile-go {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 15px;
    transition: var(--transition);
}


/* hover effects removed */

@media (max-width: 1024px) {
    .cats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    /* 2 compact cards per row — image pops out top-left, text stacked below */
    .cats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px 12px;
        padding-top: 36px;
    }
    .cat-tile {
        padding: 70px 14px 16px;
        min-height: 0;
    }
    .cat-tile-photo {
        top: -30px;
        left: 12px;
        width: 84px;
        height: 84px;
        border-radius: 14px;
    }
    .cat-tile-price {
        top: 12px;
        right: 12px;
        font-size: 10px;
        padding: 5px 10px;
    }
    .cat-tile-name {
        font-size: 15px;
        margin-bottom: 6px;
    }
    .cat-tile-desc {
        font-size: 11.5px;
        max-width: 100%;
        margin-bottom: 0;
        -webkit-line-clamp: 3;
    }
    /* hide the floating action button on the compact mobile card */
    .cat-tile-go {
        display: none;
    }
}

@media (max-width: 360px) {
    .cats-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   Locations Listing Page — diagonal-cut cards
   ============================================ */

.locs-body {
    background: #FBE4E8;
    padding: 60px 24px 90px;
}

.locs-body-inner {
    max-width: 1240px;
    margin: 0 auto;
}

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


/* Card link wrapper (no clip itself) */

.loc-dc {
    position: relative;
    display: block;
    text-decoration: none;
    outline: none;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.loc-dc:hover {
    transform: translateY(-6px);
}


/* The blob — wavy organic shape clips image + panel together.
   Everything outside the path is transparent (pink page shows through). */

.loc-dc-shape {
    position: relative;
    aspect-ratio: 1/1.12;
    overflow: hidden;
    background: #1a1a1a;
    /* Blob with rounded top/bottom and the LEFT + RIGHT sides pinched inward
       at the centre (control points pull x toward the middle at y=54). */
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 112' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M50 2 C72 2 90 6 94 20 C97 32 86 44 86 56 C86 68 97 80 94 92 C90 106 72 110 50 110 C28 110 10 106 6 92 C3 80 14 68 14 56 C14 44 3 32 6 20 C10 6 28 2 50 2 Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 112' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M50 2 C72 2 90 6 94 20 C97 32 86 44 86 56 C86 68 97 80 94 92 C90 106 72 110 50 110 C28 110 10 106 6 92 C3 80 14 68 14 56 C14 44 3 32 6 20 C10 6 28 2 50 2 Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.loc-dc-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.loc-dc:hover .loc-dc-bg {
    transform: scale(1.07);
}

.loc-dc-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 38px;
}


/* count chip top-right (kept inside the blob) */

.loc-dc-count {
    position: absolute;
    top: 32px;
    right: 30px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.loc-dc-count i {
    font-size: 9px;
}


/* Bottom colored panel overlaid inside the blob */

.loc-dc-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 46px 30px 30px;
    /* extra side padding so text clears the pinched edges */
    color: #fff;
    text-align: center;
    /* centered text */
}

.loc-dc-rose .loc-dc-panel {
    background: linear-gradient(to top, #A23A55 0%, rgba(162, 58, 85, 0.85) 55%, rgba(162, 58, 85, 0) 100%);
}

.loc-dc-blush .loc-dc-panel {
    background: linear-gradient(to top, #D87189 0%, rgba(216, 113, 137, 0.85) 55%, rgba(216, 113, 137, 0) 100%);
}

.loc-dc-plum .loc-dc-panel {
    background: linear-gradient(to top, #6E2D44 0%, rgba(110, 45, 68, 0.88) 55%, rgba(110, 45, 68, 0) 100%);
}

.loc-dc-gold .loc-dc-panel {
    background: linear-gradient(to top, #b9740f 0%, rgba(185, 116, 15, 0.85) 55%, rgba(185, 116, 15, 0) 100%);
}

.loc-dc-name {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.loc-dc-zone {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
}

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

@media (max-width: 768px) {
    .locs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .loc-dc-name {
        font-size: 16px;
    }
}

@media (max-width: 380px) {
    .locs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .loc-dc-name {
        font-size: 14px;
    }
}


/* ============================================
   Rates Page
   ============================================ */

.rates-body {
    background: #FBE4E8;
    padding: 60px 24px 90px;
}

.rates-inner {
    max-width: 1180px;
    margin: 0 auto;
}


/* pricing grid */

.rates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
    margin-bottom: 60px;
}

.rate-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    padding: 38px 28px 32px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(192, 76, 104, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.rate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(192, 76, 104, 0.2);
}


/* featured (Premium) — elevated + dark rose */

.rate-featured {
    background: linear-gradient(160deg, #C04C68 0%, #A23A55 100%);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 24px 50px rgba(162, 58, 85, 0.35);
    z-index: 2;
}

.rate-featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.rate-ribbon {
    position: absolute;
    top: 18px;
    right: -34px;
    transform: rotate(45deg);
    background: #F4B83A;
    color: #5C1F33;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 6px 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.rate-ribbon i {
    font-size: 10px;
}

.rate-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: #FBE4E8;
    color: var(--pt-rose);
}

.rate-featured .rate-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.rate-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--pt-text);
    margin-bottom: 4px;
}

.rate-featured .rate-name {
    color: #fff;
}

.rate-tag {
    font-size: 13px;
    color: var(--pt-muted);
    margin-bottom: 18px;
}

.rate-featured .rate-tag {
    color: rgba(255, 255, 255, 0.8);
}

.rate-price {
    font-family: 'Inter', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: var(--pt-rose);
    line-height: 1;
    margin-bottom: 24px;
}

.rate-price small {
    font-size: 24px;
}

.rate-price .rate-from {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pt-muted);
    margin-bottom: 4px;
}

.rate-featured .rate-price {
    color: #fff;
}

.rate-featured .rate-from {
    color: rgba(255, 255, 255, 0.7);
}

.rate-features {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
    text-align: left;
    flex: 1;
}

.rate-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--pt-text);
    padding: 8px 0;
    border-bottom: 1px solid rgba(192, 76, 104, 0.08);
}

.rate-features li i {
    color: #22C55E;
    font-size: 12px;
}

.rate-features li.muted {
    color: #bbb;
}

.rate-features li.muted i {
    color: #d8d8d8;
}

.rate-featured .rate-features li {
    color: rgba(255, 255, 255, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.rate-featured .rate-features li i {
    color: #5CFF9D;
}

.rate-btn {
    display: block;
    background: var(--pt-rose);
    color: #fff;
    padding: 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 8px 18px rgba(192, 76, 104, 0.25);
}

.rate-btn:hover {
    background: var(--pt-rose-dark);
    transform: translateY(-2px);
}

.rate-btn-light {
    background: #fff;
    color: var(--pt-rose);
}

.rate-btn-light:hover {
    background: #fff5f7;
    color: var(--pt-rose-dark);
}


/* Add-ons */

.rates-addons {
    text-align: center;
    margin-bottom: 60px;
}

.rates-addons-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 500;
    color: var(--pt-text);
    margin-bottom: 30px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.addon {
    background: #fff;
    border-radius: 16px;
    padding: 22px 12px;
    box-shadow: 0 6px 16px rgba(192, 76, 104, 0.08);
    transition: var(--transition);
}

.addon:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(192, 76, 104, 0.18);
}

.addon i {
    font-size: 26px;
    color: var(--pt-rose);
    display: block;
    margin-bottom: 10px;
}

.addon span {
    font-size: 13px;
    font-weight: 600;
    color: var(--pt-text);
}


/* Trust band */

.rates-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    background: #fff;
    border-radius: 22px;
    padding: 36px 28px;
    margin-bottom: 36px;
    box-shadow: 0 12px 30px rgba(192, 76, 104, 0.1);
}

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

.trust-item i {
    font-size: 30px;
    color: var(--pt-rose);
    margin-bottom: 10px;
}

.trust-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--pt-text);
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 12.5px;
    color: var(--pt-muted);
    line-height: 1.5;
}


/* Note */

.rates-note {
    text-align: center;
    font-size: 13px;
    color: var(--pt-muted);
    max-width: 680px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.rates-note i {
    color: var(--pt-rose);
    margin-right: 6px;
}


/* Final CTA */

.rates-cta {
    background: linear-gradient(135deg, #5C1F33, #3D1322);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    color: #fff;
}

.rates-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

.rates-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 26px;
}

.rates-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.rates-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: var(--pt-rose);
    padding: 15px 34px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.rates-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.rates-cta-wa {
    background: #25D366;
    color: #fff;
}

@media (max-width: 1024px) {
    .rates-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }
    .rate-featured {
        transform: none;
    }
    .rate-featured:hover {
        transform: translateY(-6px);
    }
    .addons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .rates-trust {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rates-trust {
        grid-template-columns: 1fr 1fr;
    }
}


/* ============================================
   Contact Page
   ============================================ */

.contact-quickbar-wrap {
    background: #FBE4E8;
    padding: 0 24px;
}

.contact-quickbar {
    max-width: 1100px;
    margin: -40px auto 0;
    /* pull up over the wave */
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.qb-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 10px 26px rgba(192, 76, 104, 0.12);
    color: var(--pt-text);
    transition: var(--transition);
}

.qb-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(192, 76, 104, 0.2);
}

.qb-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FBE4E8;
    color: var(--pt-rose);
    font-size: 18px;
}

.qb-wa .qb-icon {
    background: #25D366;
    color: #fff;
}

.qb-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    min-width: 0;
}

.qb-text strong {
    font-size: 14px;
}

.qb-text span {
    font-size: 12px;
    color: var(--pt-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* main body */

.contact-body {
    background: #FBE4E8;
    padding: 50px 24px 90px;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(192, 76, 104, 0.14);
}


/* info panel */

.contact-info-panel {
    position: relative;
    background: linear-gradient(150deg, #C04C68 0%, #5C1F33 100%);
    color: #fff;
    padding: 44px 36px;
    overflow: hidden;
}

.cip-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.cip-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
}

.cip-list {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    position: relative;
    z-index: 2;
}

.cip-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 20px;
}

.cip-list li a {
    color: rgba(255, 255, 255, 0.92);
}

.cip-list li a:hover {
    color: #fff;
    text-decoration: underline;
}

.cip-ic {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 15px;
}

.cip-socials {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.cip-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 15px;
    transition: var(--transition);
}

.cip-socials a:hover {
    background: #fff;
    color: var(--pt-rose);
}

.cip-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cip-deco-1 {
    width: 180px;
    height: 180px;
    bottom: -70px;
    right: -50px;
    background: rgba(255, 255, 255, 0.07);
}

.cip-deco-2 {
    width: 110px;
    height: 110px;
    top: 30px;
    right: -40px;
    background: rgba(255, 255, 255, 0.05);
}


/* form card */

.contact-form-card {
    padding: 44px 40px;
}

.cfc-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--pt-text);
    margin-bottom: 24px;
}

.contact-form-card .label {
    font-size: 13px;
    color: var(--pt-text);
}

.contact-form-card .input,
.contact-form-card .textarea {
    border-radius: 10px;
    border-color: #eddde2;
    box-shadow: none;
}

.contact-form-card .input:focus,
.contact-form-card .textarea:focus {
    border-color: var(--pt-rose);
    box-shadow: 0 0 0 3px rgba(192, 76, 104, 0.12);
}

.contact-form-card .icon.is-left {
    color: var(--pt-rose) !important;
}

.contact-submit {
    width: 100%;
    background: var(--pt-rose);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 15px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(192, 76, 104, 0.3);
}

.contact-submit:hover {
    background: var(--pt-rose-dark);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .contact-quickbar {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .contact-form-card,
    .contact-info-panel {
        padding: 30px 22px;
    }
}


/* ============================================
   Footer (rose theme)
   ============================================ */

.pt-footer {
    position: relative;
    background: #2A0F1A;
    /* deep plum-rose */
    color: rgba(255, 255, 255, 0.75);
    padding-top: 60px;
    /* top area where the wave overlays */
}

.pt-footer-wave {
    position: absolute;
    top: -49px;
    /* lift the wave up so it overlaps the section above */
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
    display: block;
}

.pt-footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 30px 32px 50px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 40px;
}


/* brand */

.pt-foot-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.pt-foot-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C04C68, #A23A55);
    color: #fff;
    font-size: 16px;
}

.pt-foot-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
    margin-bottom: 22px;
}

.pt-foot-social {
    display: flex;
    gap: 10px;
}

.pt-foot-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
}

.pt-foot-social a:hover {
    background: var(--pt-rose);
    transform: translateY(-3px);
}


/* link columns */

.pt-foot-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.pt-foot-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--pt-rose);
    border-radius: 2px;
}

.pt-foot-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pt-foot-col li {
    margin-bottom: 11px;
}

.pt-foot-col a,
.pt-foot-col span {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.25s ease, padding 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pt-foot-col a:hover {
    color: #fff;
    padding-left: 4px;
}

.pt-foot-col a i,
.pt-foot-col span i {
    color: var(--pt-rose);
    font-size: 12px;
    width: 14px;
}

.pt-foot-cta {
    display: inline-block;
    margin-top: 16px;
    background: var(--pt-rose);
    color: #fff !important;
    padding: 11px 24px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.pt-foot-cta:hover {
    background: var(--pt-rose-dark);
    transform: translateY(-2px);
    padding-left: 24px !important;
}


/* bottom bar */

.pt-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 32px;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.pt-footer-bottom p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.pt-foot-disclaimer {
    color: rgba(255, 255, 255, 0.4) !important;
}

@media (max-width: 900px) {
    .pt-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .pt-foot-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 540px) {
    .pt-footer-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .pt-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* ============================================
   Location Detail Page
   ============================================ */

.loc-hero {
    position: relative;
    background: #2A0F1A;
    background-size: cover;
    background-position: center;
    padding: 90px 24px 70px;
    overflow: hidden;
}

.loc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(42, 15, 26, 0.92) 0%, rgba(162, 58, 85, 0.7) 60%, rgba(192, 76, 104, 0.55) 100%);
    z-index: 1;
}

.loc-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    color: #fff;
}

.loc-hero-crumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 22px;
}

.loc-hero-crumb a {
    color: rgba(255, 255, 255, 0.7);
}

.loc-hero-crumb a:hover {
    color: #fff;
}

.loc-hero-crumb i {
    font-size: 9px;
    opacity: 0.6;
}

.loc-hero-crumb span {
    color: #fff;
    font-weight: 600;
}

.loc-hero-zone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(6px);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.loc-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 14px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.loc-hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.loc-hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.loc-hero-stats span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.loc-hero-stats strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
}

.loc-hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 55px;
    z-index: 2;
    display: block;
}


/* body */

.loc-body {
    background: #FBE4E8;
    padding: 50px 24px 90px;
}

.loc-body-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.loc-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 36px;
    align-items: start;
}

.loc-main-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.loc-main-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--pt-text);
}

.loc-main-count {
    font-size: 13px;
    font-weight: 700;
    color: var(--pt-rose);
    background: rgba(192, 76, 104, 0.1);
    padding: 6px 14px;
    border-radius: 999px;
}

.loc-main .pt-profiles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* =========================================================
   Location SEO content block — magazine-style layout
   ========================================================= */

.loc-about {
    margin-top: 48px;
    background: #fff;
    border-radius: 22px;
    padding: 44px 48px 48px;
    box-shadow: 0 10px 30px rgba(192, 76, 104, 0.08);
    position: relative;
    overflow: hidden;
}

.loc-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--pt-rose) 0%, var(--pt-pink-darker) 50%, var(--pt-rose) 100%);
}

.loc-about-text {
    font-size: 15.5px;
    color: #4a3942;
    line-height: 1.9;
}

/* Big serif H2 with side-rule */
.loc-about-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--pt-text);
    line-height: 1.25;
    margin: 44px 0 18px;
    position: relative;
    padding-left: 22px;
}

.loc-about-text h2:first-child {
    margin-top: 0;
}

.loc-about-text h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 5px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--pt-rose) 0%, var(--pt-pink-darker) 100%);
}

.loc-about-text h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--pt-pink-darker);
    border-radius: 2px;
    margin: 14px 0 0;
}

/* Smaller H3 (if any) */
.loc-about-text h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--pt-text);
    margin: 28px 0 12px;
    position: relative;
    padding-left: 16px;
}

.loc-about-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    border-radius: 3px;
    background: var(--pt-rose);
}

.loc-about-text p {
    margin-bottom: 16px;
}

.loc-about-text p:last-child {
    margin-bottom: 0;
}

.loc-about-text strong {
    color: var(--pt-rose-dark);
    font-weight: 700;
}

.loc-about-text .kw {
    color: var(--pt-rose);
    font-weight: 700;
}

/* Inline internal links inside SEO content blocks
   — same rose/bold treatment as .kw so internal linking is visibly distinct */
.loc-about-text a {
    color: var(--pt-rose);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dotted var(--pt-pink-darker);
    transition: color .2s ease, border-color .2s ease;
}

.loc-about-text a:hover,
.loc-about-text a:focus {
    color: var(--pt-rose-dark);
    border-bottom-color: var(--pt-rose-dark);
    border-bottom-style: solid;
}

/* Pricing UL — turn it into a card-table */
.loc-about-text ul {
    list-style: none;
    margin: 22px 0 26px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.loc-about-text ul li {
    background: linear-gradient(180deg, #FFF8FA 0%, #FBE4E8 100%);
    border: 1px solid rgba(192, 76, 104, 0.18);
    border-radius: 16px;
    padding: 22px 20px 20px;
    text-align: center;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}

.loc-about-text ul li:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(192, 76, 104, 0.15);
}

.loc-about-text ul li::before {
    content: '\f3d1';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
    background: #fff;
    color: var(--pt-rose);
    font-size: 16px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(192, 76, 104, 0.18);
}

.loc-about-text ul li strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    color: var(--pt-rose-dark);
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.1;
}

/* FAQ block — paragraph that has <strong> immediately followed by <br>
   (uses :has() so it only fires on actual Q/A paragraphs, not inline-bold paragraphs) */
.loc-about-text p:has(> strong:first-child + br) {
    background: #FFF8FA;
    border-left: 3px solid var(--pt-pink-darker);
    border-radius: 10px;
    padding: 16px 18px 16px 22px;
    margin-bottom: 12px;
}

.loc-about-text p:has(> strong:first-child + br) > strong:first-child {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    color: var(--pt-rose-dark);
    font-weight: 700;
    margin-bottom: 8px;
    padding-left: 30px;
    position: relative;
}

.loc-about-text p:has(> strong:first-child + br) > strong:first-child::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    background: var(--pt-rose);
    color: #fff;
    border-radius: 50%;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .loc-about {
        padding: 28px 22px 32px;
        margin-top: 32px;
    }
    .loc-about-text {
        font-size: 14.5px;
    }
    .loc-about-text h2 {
        font-size: 24px;
        padding-left: 18px;
    }
    .loc-about-text h3 {
        font-size: 18px;
    }
    .loc-about-text ul {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .loc-about-text ul li {
        padding: 18px 16px;
    }
    .loc-about-text ul li strong {
        font-size: 22px;
    }
}


/* sidebar */

.loc-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.loc-side-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(192, 76, 104, 0.1);
}

.loc-side-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--pt-text);
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(192, 76, 104, 0.12);
}

.loc-side-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 360px;
    overflow-y: auto;
}

.loc-side-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13.5px;
    color: var(--pt-text);
    transition: var(--transition-fast);
}

.loc-side-list a span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.loc-side-list a span i {
    color: var(--pt-rose);
    font-size: 11px;
}

.loc-side-list a>i {
    font-size: 10px;
    opacity: 0.4;
}

.loc-side-list a:hover {
    background: #FBE4E8;
    color: var(--pt-rose);
}

.loc-side-list a.active {
    background: var(--pt-rose);
    color: #fff;
    font-weight: 600;
}

.loc-side-list a.active span i,
.loc-side-list a.active>i {
    color: #fff;
}

.loc-side-cta {
    background: linear-gradient(135deg, var(--pt-rose), var(--pt-rose-dark));
    border-radius: 18px;
    padding: 26px 22px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 26px rgba(192, 76, 104, 0.25);
}

.loc-side-cta i {
    font-size: 30px;
    margin-bottom: 12px;
    color: #FFD9C7;
}

.loc-side-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}

.loc-side-cta p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 18px;
}

.loc-side-cta-btn {
    display: inline-block;
    background: #fff;
    color: var(--pt-rose);
    padding: 11px 28px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.loc-side-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .loc-main .pt-profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .loc-layout {
        grid-template-columns: 1fr;
    }
    .loc-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .loc-side-card,
    .loc-side-cta {
        flex: 1;
        min-width: 260px;
    }
}

@media (max-width: 600px) {
    .loc-main .pt-profiles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .loc-sidebar {
        flex-direction: column;
    }
    .loc-hero-stats {
        gap: 22px;
    }
}


/* =========================================================
   PROFILE DETAIL v2 — Immersive "pf2" design
   ========================================================= */


/* Breadcrumb — sits inside the hero banner, above the content */

.pf2-crumb {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .88rem;
}

.pf2-crumb a {
    color: rgba(255, 255, 255, .78);
    font-weight: 600;
    transition: color .2s;
    white-space: nowrap;
}

.pf2-crumb a:hover {
    color: #fff;
}

.pf2-crumb a i {
    margin-right: 5px;
}

.pf2-crumb .sep {
    color: rgba(255, 255, 255, .4);
    font-size: .7rem;
}

.pf2-crumb span {
    color: #F3C9D3;
    font-weight: 700;
    white-space: nowrap;
}


/* Immersive banner — top padding clears the fixed 64px header + room for the breadcrumb */

.pf2-banner {
    position: relative;
    overflow: hidden;
    background: #2A0F1A;
    padding: 88px 24px 88px;
}

.pf2-banner-bg {
    position: absolute;
    inset: -40px;
    background-size: cover;
    background-position: center 25%;
    filter: blur(26px) saturate(1.2);
    transform: scale(1.15);
    opacity: .35;
}

.pf2-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(42, 15, 26, .5) 0%, rgba(42, 15, 26, .82) 100%);
}

.pf2-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-end;
}


/* overlapping photo */

.pf2-photo {
    position: relative;
    flex: 0 0 300px;
    width: 300px;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: -64px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .7), 0 0 0 6px rgba(255, 255, 255, .9);
    background: #5C1F33;
}

.pf2-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform .5s ease;
}

.pf2-photo:hover img {
    transform: scale(1.05);
}

.pf2-photo-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
}

.pf2-zoom {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background .2s, transform .2s;
}

.pf2-zoom:hover {
    background: #C04C68;
    transform: scale(1.1);
}

.pf2-online {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
}

.pf2-online .pf-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, .7);
    animation: pf-pulse 1.8s infinite;
}

@keyframes pf-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, .7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(52, 211, 153, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
}


/* identity */

.pf2-identity {
    flex: 1;
    padding-bottom: 8px;
    color: #fff;
}

.pf2-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.pf2-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .76rem;
    font-weight: 700;
    padding: 6px 13px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.pf2-badge-verified {
    background: rgba(52, 211, 153, .22);
    color: #6ee7b7;
    border: 1px solid rgba(52, 211, 153, .35);
}

.pf2-badge-new {
    background: rgba(251, 146, 60, .22);
    color: #fdba74;
    border: 1px solid rgba(251, 146, 60, .35);
}

.pf2-badge-vip {
    background: rgba(251, 191, 36, .18);
    color: #fcd34d;
    border: 1px solid rgba(251, 191, 36, .35);
}

.pf2-name {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 10px;
    letter-spacing: -.5px;
    color: #fff;
}

.pf2-name span {
    font-weight: 400;
    color: #F3C9D3;
}

.pf2-loc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #F3C9D3;
    font-size: 1.05rem;
    margin-bottom: 12px;
    transition: color .2s;
}

.pf2-loc:hover {
    color: #fff;
}

.pf2-tagline {
    color: rgba(255, 255, 255, .82);
    font-size: 1rem;
    max-width: 560px;
    margin-bottom: 22px;
    line-height: 1.6;
}


/* trust ribbon */

.pf2-ribbon {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(6px);
    max-width: 540px;
}

.pf2-ribbon-item {
    flex: 1;
    min-width: 90px;
    padding: 16px 14px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.pf2-ribbon-item:last-child {
    border-right: none;
}

.pf2-ribbon-item strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}

.pf2-ribbon-item strong .fa-star {
    color: #fcd34d;
    font-size: 1rem;
}

.pf2-ribbon-item span {
    font-size: .74rem;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
    letter-spacing: .5px;
}


/* body */

.pf2-body {
    background: #FBE4E8;
    padding: 96px 24px 0px;
}

.pf2-body-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

.pf2-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pf2-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 32px;
    box-shadow: 0 14px 40px -22px rgba(92, 31, 51, .4);
}

.pf2-h {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #5C1F33;
    margin-bottom: 18px;
}

.pf2-h i {
    color: #C04C68;
}

.pf2-about {
    color: #5b4750;
    line-height: 1.8;
    font-size: 1rem;
}


/* stats grid */

.pf2-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}

.pf2-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 16px;
    border-radius: 14px;
    background: #FBE4E8;
    border: 1px solid #F3C9D3;
    position: relative;
}

.pf2-stat-ic {
    position: absolute;
    top: 14px;
    right: 14px;
    color: #C04C68;
    opacity: .55;
}

.pf2-stat-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #b07686;
    font-weight: 700;
}

.pf2-stat-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: #5C1F33;
}


/* chips */

.pf2-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pf2-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 50px;
}

.pf2-chip i {
    font-size: .78rem;
}

.pf2-chip-soft {
    background: #FBE4E8;
    color: #5C1F33;
    border: 1px solid #F3C9D3;
}

.pf2-chip-soft i {
    color: #C04C68;
}


/* gallery */

.pf2-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.pf2-gthumb {
    position: relative;
    border: none;
    padding: 0;
    aspect-ratio: 3/4;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: #FBE4E8;
}

.pf2-gthumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.pf2-gthumb:hover img {
    transform: scale(1.08);
}

.pf2-gthumb-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 15, 26, .35);
    color: #fff;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity .25s;
}

.pf2-gthumb:hover .pf2-gthumb-zoom {
    opacity: 1;
}


/* sticky booking card */

.pf2-booking {
    position: sticky;
    top: 90px;
}

.pf2-book-card {
    background: #fff;
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 20px 50px -20px rgba(92, 31, 51, .5);
    border: 1px solid #F3C9D3;
}

.pf2-book-price {
    text-align: center;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px dashed #F3C9D3;
}

.pf2-book-from {
    display: block;
    font-size: .8rem;
    color: #b07686;
    text-transform: uppercase;
    letter-spacing: .6px;
    font-weight: 700;
}

.pf2-book-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: #C04C68;
}

.pf2-book-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid #FBE4E8;
    font-size: .92rem;
}

.pf2-book-row span {
    color: #8a6b75;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.pf2-book-row span i {
    color: #C04C68;
    width: 16px;
    text-align: center;
}

.pf2-book-row strong {
    color: #5C1F33;
}

.pf2-book-row .pf2-ok {
    color: #16a34a;
}

.pf2-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 16px;
    transition: transform .2s, box-shadow .2s;
}

.pf2-book-btn:hover {
    transform: translateY(-2px);
}

.pf2-book-call {
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    color: #fff;
    box-shadow: 0 10px 24px -10px rgba(192, 76, 104, .8);
}

.pf2-book-wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 10px 24px -10px rgba(37, 211, 102, .7);
}

.pf2-book-note {
    margin-top: 18px;
    font-size: .78rem;
    color: #8a6b75;
    text-align: center;
    line-height: 1.5;
}

.pf2-book-note i {
    color: #16a34a;
}


/* lightbox */

.pf-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(20, 6, 12, .92);
    padding: 30px;
}

.pf-lightbox.open {
    display: flex;
}

.pf-lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}

.pf-lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: background .2s;
}

.pf-lightbox-close:hover {
    background: #C04C68;
}


/* mobile sticky CTA bar */

.pf2-mobilebar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: #fff;
    box-shadow: 0 -8px 24px -10px rgba(92, 31, 51, .4);
    padding: 10px 14px;
    gap: 10px;
    align-items: center;
}

.pf2-mb-price {
    font-weight: 800;
    color: #C04C68;
    font-size: 1.15rem;
    white-space: nowrap;
}

.pf2-mb-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
}

.pf2-mb-call {
    background: linear-gradient(135deg, #C04C68, #5C1F33);
}

.pf2-mb-wa {
    background: #25D366;
}


/* responsive */

@media (max-width: 900px) {
    .pf2-banner {
        padding: 84px 18px 70px;
    }
    .pf2-crumb {
        margin-bottom: 20px;
        justify-content: center;
    }
    .pf2-banner-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }
    .pf2-photo {
        margin-bottom: -50px;
        flex-basis: auto;
        width: 240px;
        height: 320px;
    }
    .pf2-badges,
    .pf2-ribbon {
        justify-content: center;
    }
    .pf2-name {
        font-size: 2.2rem;
    }
    .pf2-ribbon {
        margin: 0 auto;
    }
    .pf2-body {
        padding: 80px 16px 0px;
    }
    .pf2-body-inner {
        grid-template-columns: 1fr;
    }
    .pf2-booking {
        position: static;
        order: -1;
    }
}

@media (max-width: 600px) {
    .pf2-mobilebar {
        display: flex;
    }
    .pf2-name {
        font-size: 1.9rem;
    }
    .pf2-card {
        padding: 24px 20px;
    }
    .pf-crumb-inner {
        padding: 12px 16px;
        font-size: .78rem;
    }
}


/* =========================================================
   PROFILE DETAIL v2 — Lightbox carousel + related cards
   ========================================================= */


/* lightbox stage + fade */

.pf-lb-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.pf-lightbox img {
    opacity: 0;
    transition: opacity .28s ease;
}

.pf-lightbox img.pf-lb-in {
    opacity: 1;
}


/* prev / next arrows */

.pf-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: background .2s, transform .2s;
    z-index: 3;
}

.pf-lb-nav:hover {
    background: #C04C68;
    transform: translateY(-50%) scale(1.08);
}

.pf-lb-prev {
    left: 24px;
}

.pf-lb-next {
    right: 24px;
}


/* counter */

.pf-lb-counter {
    position: absolute;
    top: 26px;
    left: 30px;
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    background: rgba(255, 255, 255, .12);
    padding: 6px 14px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    letter-spacing: 1px;
}


/* dots */

.pf-lb-dots {
    position: absolute;
    bottom: 26px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.pf-lb-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .6);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: all .2s;
}

.pf-lb-dot:hover {
    border-color: #fff;
}

.pf-lb-dot.active {
    background: #C04C68;
    border-color: #C04C68;
    transform: scale(1.2);
}


/* =========================================================
   Related / Similar escorts cards
   ========================================================= */

.pf2-related {
    background: linear-gradient(180deg, #FBE4E8 0%, #F4C8D0 100%);
    padding: 72px 24px 80px;
}

.pf2-related-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.pf2-related-head {
    text-align: center;
    margin-bottom: 44px;
}

.pf2-related-eyebrow {
    display: inline-block;
    color: #C04C68;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pf2-related-title {
    color: #5C1F33;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -.5px;
}

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

.pf2-rel-card {
    display: block;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px -22px rgba(0, 0, 0, .7);
    transition: transform .3s ease, box-shadow .3s ease;
}

.pf2-rel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -24px rgba(192, 76, 104, .7);
}

.pf2-rel-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #5C1F33;
}

.pf2-rel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.pf2-rel-card:hover .pf2-rel-img img {
    transform: scale(1.08);
}

.pf2-rel-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
}

.pf2-rel-verified {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(52, 211, 153, .9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

.pf2-rel-price {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(42, 15, 26, .78);
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    padding: 5px 12px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.pf2-rel-view {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(42, 15, 26, 0), rgba(192, 76, 104, .95));
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: 28px 14px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
}

.pf2-rel-card:hover .pf2-rel-view {
    transform: translateY(0);
    opacity: 1;
}

.pf2-rel-body {
    padding: 16px 18px 20px;
}

.pf2-rel-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #5C1F33;
    margin-bottom: 4px;
}

.pf2-rel-name span {
    font-weight: 400;
    color: #C04C68;
}

.pf2-rel-loc {
    color: #8a6b75;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pf2-rel-loc i {
    color: #C04C68;
}


/* responsive */

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

@media (max-width: 768px) {
    .pf2-rel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .pf2-related-title {
        font-size: 1.7rem;
    }
    .pf-lb-nav {
        width: 46px;
        height: 46px;
        font-size: 1.15rem;
    }
    .pf-lb-prev {
        left: 10px;
    }
    .pf-lb-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .pf2-rel-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   PROFILE DETAIL v2 — Compact Client Reviews
   ========================================================= */

.pf2-reviews {
    background: #fff;
    padding: 56px 24px;
}

.pf2-reviews-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.pf2-rev-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.pf2-rev-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #5C1F33;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pf2-rev-title i {
    color: #C04C68;
}

.pf2-rev-summary {
    background: #FBE4E8;
    color: #C04C68;
    font-weight: 700;
    font-size: .9rem;
    padding: 7px 16px;
    border-radius: 50px;
}

.pf2-rev-summary i {
    color: #f5b301;
}


/* reviews slider */

.pf2-rev-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
}

.pf2-rev-track {
    display: flex;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}

.pf2-rev-card {
    flex: 0 0 auto;
    box-sizing: border-box;
    /* 16px right gutter kept inside the card width; the pink fill clips to the
       content box so the gutter reads as a gap between cards */
    background: #FBE4E8;
    background-clip: content-box;
    border-radius: 16px;
    padding: 18px 20px;
    border-right: 16px solid transparent;
    position: relative;
}

.pf2-rev-card::before {
    /* 1px border drawn on the content box only (not over the gutter) */
    content: "";
    position: absolute;
    inset: 0 16px 0 0;
    border: 1px solid #F3C9D3;
    border-radius: 16px;
    pointer-events: none;
}


/* slider arrows */

.pf2-rev-arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #C04C68;
    box-shadow: 0 6px 18px -6px rgba(92, 31, 51, .5);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 4;
    transition: background .2s, color .2s, opacity .2s;
}

.pf2-rev-slider.has-nav .pf2-rev-arrow {
    display: flex;
}

.pf2-rev-arrow:hover:not(:disabled) {
    background: #C04C68;
    color: #fff;
}

.pf2-rev-arrow:disabled {
    opacity: .35;
    cursor: default;
}

.pf2-rev-prev {
    left: 6px;
}

.pf2-rev-next {
    right: 6px;
}


/* slider dots */

.pf2-rev-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.pf2-rev-slider.has-nav .pf2-rev-dots {
    display: flex;
}

.pf2-rev-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: #e3c4cb;
    padding: 0;
    cursor: pointer;
    transition: all .2s;
}

.pf2-rev-dot:hover {
    background: #c79aa6;
}

.pf2-rev-dot.active {
    background: #C04C68;
    width: 24px;
    border-radius: 5px;
}

.pf2-rev-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pf2-rev-avatar {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    /* per-reviewer colour is set inline; this is just a fallback */
    background: #C04C68;
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px -2px rgba(42, 15, 26, .4), inset 0 0 0 2px rgba(255, 255, 255, .25);
    user-select: none;
}

.pf2-rev-name {
    display: block;
    font-weight: 700;
    color: #5C1F33;
    font-size: .95rem;
}

.pf2-rev-stars {
    font-size: .78rem;
    color: #f5b301;
}

.pf2-rev-stars .pf2-rev-dim {
    color: #e3c4cb;
}

.pf2-rev-rtitle {
    font-weight: 700;
    color: #5C1F33;
    font-size: .95rem;
    margin-bottom: 4px;
}

.pf2-rev-text {
    color: #6b4a54;
    font-size: .92rem;
    line-height: 1.6;
}

.pf2-rev-empty {
    text-align: center;
    color: #b07686;
    background: #FBE4E8;
    border: 1px dashed #F3C9D3;
    border-radius: 16px;
    padding: 26px;
    margin-bottom: 30px;
    font-size: .95rem;
}

.pf2-rev-empty i {
    color: #C04C68;
    margin-right: 6px;
}


/* review form — compact */

.pf2-rev-form {
    background: #fff;
    border: 1px solid #F3C9D3;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 12px 36px -22px rgba(92, 31, 51, .4);
}

.pf2-rev-form-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #5C1F33;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pf2-rev-form-title i {
    color: #C04C68;
}

.pf2-rev-success {
    background: #e7f9ef;
    color: #15803d;
    border: 1px solid #bbf0d0;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: .9rem;
}

.pf2-rev-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.pf2-inp {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #F3C9D3;
    border-radius: 12px;
    background: #FBE4E8;
    color: #5C1F33;
    font-size: .95rem;
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
}

.pf2-inp:focus {
    outline: none;
    border-color: #C04C68;
    box-shadow: 0 0 0 3px rgba(192, 76, 104, .15);
    background: #fff;
}

.pf2-inp::placeholder {
    color: #b894a0;
}

.pf2-sel-wrap {
    position: relative;
}

.pf2-sel-wrap select.pf2-inp {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.pf2-sel-wrap::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #C04C68;
    font-size: .75rem;
    pointer-events: none;
}

.pf2-ta {
    margin-bottom: 14px;
    resize: vertical;
}

.pf2-rev-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: .95rem;
    padding: 13px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

.pf2-rev-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -10px rgba(192, 76, 104, .8);
}

@media (max-width: 700px) {
    .pf2-reviews {
        padding: 44px 16px;
    }
    .pf2-rev-fields {
        grid-template-columns: 1fr;
    }
    .pf2-rev-title {
        font-size: 1.35rem;
    }
    /* arrows overlap a single card on mobile, so tuck them at the edges */
    .pf2-rev-prev {
        left: -4px;
    }
    .pf2-rev-next {
        right: -4px;
    }
}


/* =========================================================
   PROFILE DETAIL v2 — Review toast popup
   ========================================================= */

.pf2-rev-err {
    color: #d33b53;
    font-size: .85rem;
    margin: 0 0 10px;
    min-height: 0;
}

.pf2-rev-err:empty {
    display: none;
}

.pf2-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 360px;
    background: #fff;
    color: #2A0F1A;
    border-left: 5px solid #16a34a;
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 18px 50px -12px rgba(42, 15, 26, .45);
    transform: translateY(140%);
    opacity: 0;
    transition: transform .45s cubic-bezier(.16, 1, .3, 1), opacity .35s ease;
    pointer-events: none;
}

.pf2-toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.pf2-toast-ic {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e7f9ef;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.pf2-toast-msg {
    font-size: .92rem;
    font-weight: 600;
    line-height: 1.45;
}

.pf2-toast.pf2-toast-err {
    border-left-color: #d33b53;
}

.pf2-toast.pf2-toast-err .pf2-toast-ic {
    background: #fdeaee;
    color: #d33b53;
}

.pf2-toast.pf2-toast-err .pf2-toast-ic i::before {
    content: "\f06a";
}


/* exclamation-circle */

@media (max-width: 600px) {
    .pf2-toast {
        left: 16px;
        right: 16px;
        bottom: 80px;
        max-width: none;
    }
}


/* =========================================================
   MUMBAI CALL GIRLS — content space + contact CTA
   ========================================================= */

.cg-content {
    background: #fff;
    padding: 64px 24px;
}

.cg-content-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cg-content .loc-about-text {
    font-size: 15.5px;
    color: #5b4750;
    line-height: 1.9;
}

.cg-content .loc-about-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    font-weight: 700;
    color: #5C1F33;
    margin: 0 0 18px;
    letter-spacing: -.3px;
}

.cg-content .loc-about-text h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #C04C68;
    margin: 30px 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cg-content .loc-about-text h3::before {
    content: "";
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background: #C04C68;
    display: inline-block;
}

.cg-content .loc-about-text p {
    margin-bottom: 16px;
}

.cg-content .loc-about-text p:last-child {
    margin-bottom: 0;
}


/* Contact CTA */

.cg-cta {
    background: linear-gradient(180deg, #FBE4E8 0%, #F4C8D0 100%);
    padding: 0 24px 72px;
}

.cg-cta-card {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(135deg, #5C1F33 0%, #C04C68 100%);
    border-radius: 26px;
    padding: 48px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 28px 60px -24px rgba(92, 31, 51, .7);
    position: relative;
    overflow: hidden;
}

.cg-cta-card::after {
    /* subtle decorative glow */
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, .15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cg-cta-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #fff;
}

.cg-cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.cg-cta-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
    max-width: 520px;
    margin: 0 auto 28px;
}

.cg-cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.cg-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: transform .2s, box-shadow .2s, background .2s;
}

.cg-cta-btn:hover {
    transform: translateY(-3px);
}

.cg-cta-call {
    background: #fff;
    color: #C04C68;
    box-shadow: 0 10px 22px -10px rgba(0, 0, 0, .4);
}

.cg-cta-wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 10px 22px -10px rgba(37, 211, 102, .7);
}

.cg-cta-contact {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
}

.cg-cta-contact:hover {
    background: rgba(255, 255, 255, .24);
}

@media (max-width: 600px) {
    .cg-content {
        padding: 48px 18px;
    }
    .cg-content .loc-about-text h2 {
        font-size: 24px;
    }
    .cg-content .loc-about-text h3 {
        font-size: 19px;
    }
    .cg-cta-card {
        padding: 38px 24px;
    }
    .cg-cta-title {
        font-size: 24px;
    }
    .cg-cta-btn {
        width: 100%;
        justify-content: center;
    }
}


/* =========================================================
   ABOUT — compact "dossier" style (abx-*)
   ========================================================= */

.abx {
    background: #FBE4E8;
    padding-bottom: 56px;
}

.abx section {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}

.abx-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #C04C68;
    margin-bottom: 8px;
}

.abx-center {
    display: block;
    text-align: center;
}

.abx-h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: #2A0F1A;
    line-height: 1.2;
    margin-bottom: 14px;
}


/* Intro card — sits over a slim rose strip */

.abx-intro {
    position: relative;
    padding-top: 90px !important;
    padding-bottom: 0;
}

.abx-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(135deg, #5C1F33, #C04C68);
    z-index: 0;
}

.abx-intro-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 18px;
    padding: 34px 38px;
    box-shadow: 0 20px 50px -24px rgba(92, 31, 51, .45);
}

.abx-crumb {
    font-size: 12.5px;
    color: #9a7d86;
    margin-bottom: 14px;
}

.abx-crumb a {
    color: #C04C68;
}

.abx-crumb span {
    margin: 0 6px;
    color: #ccb3ba;
}

.abx-crumb strong {
    color: #2A0F1A;
}

.abx-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #FBE4E8;
    color: #C04C68;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.abx-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: #2A0F1A;
    line-height: 1.15;
    letter-spacing: -.5px;
    margin-bottom: 14px;
}

.abx-intro-text {
    font-size: 16px;
    line-height: 1.7;
    color: #5b3344;
    max-width: 640px;
    margin-bottom: 20px;
}

.abx-intro-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.abx-intro-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 600;
    color: #2A0F1A;
}

.abx-intro-meta i {
    color: #16a34a;
}


/* Values row */

.abx-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px !important;
}

.abx-value {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #F3C9D3;
    border-radius: 14px;
    padding: 18px 20px;
}

.abx-value-ic {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.abx-value h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2A0F1A;
    margin-bottom: 2px;
}

.abx-value p {
    font-size: 13px;
    line-height: 1.55;
    color: #6b4a54;
}


/* Story + side stats */

.abx-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 36px;
    margin-top: 44px !important;
    align-items: start;
}

.abx-story p {
    font-size: 15px;
    line-height: 1.8;
    color: #5b3344;
    margin-bottom: 13px;
}

.abx-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.abx-stat {
    background: #fff;
    border-radius: 14px;
    padding: 18px 16px;
    text-align: center;
    border: 1px solid #F3C9D3;
}

.abx-stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 800;
    color: #C04C68;
    line-height: 1;
}

.abx-stat-label {
    display: block;
    margin-top: 6px;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 700;
    color: #8a6b75;
}


/* Why us chips */

.abx-why {
    margin-top: 48px !important;
    text-align: center;
}

.abx-why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.abx-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #F3C9D3;
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #2A0F1A;
    transition: transform .2s, background .2s, color .2s;
}

.abx-chip i {
    color: #C04C68;
}

.abx-chip:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    color: #fff;
}

.abx-chip:hover i {
    color: #fff;
}


/* Slim CTA bar */

.abx-cta {
    margin-top: 48px !important;
}

.abx-cta-bar {
    background: linear-gradient(135deg, #5C1F33, #C04C68);
    border-radius: 18px;
    padding: 26px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 18px 44px -22px rgba(92, 31, 51, .6);
}

.abx-cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.abx-cta-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
}

.abx-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.abx-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: transform .2s, background .2s, color .2s;
}

.abx-btn:hover {
    transform: translateY(-2px);
}

.abx-btn-call {
    background: #fff;
    color: #C04C68;
}

.abx-btn-wa {
    background: #25D366;
    color: #fff;
}

.abx-btn-line {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
}

.abx-btn-line:hover {
    background: #fff;
    color: #2A0F1A;
}


/* Responsive */

@media (max-width: 820px) {
    .abx-values {
        grid-template-columns: 1fr;
    }
    .abx-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .abx-side {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .abx-intro-card {
        padding: 26px 22px;
    }
    .abx-title {
        font-size: 27px;
    }
    .abx-cta-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .abx-cta-btns {
        justify-content: center;
    }
    .abx-btn {
        flex: 1;
        justify-content: center;
    }
}


/* =========================================================
   MUMBAI CALL GIRLS — compact split header + filter bar (cgx-*)
   ========================================================= */

.cgx-head {
    background: #fff;
    border-bottom: 1px solid #F3C9D3;
    /* extra top padding clears the fixed 64px header */
    padding: 88px 24px 24px;
}

.cgx-head-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cgx-crumb {
    font-size: 12.5px;
    color: #9a7d86;
    margin-bottom: 10px;
}

.cgx-crumb a {
    color: #C04C68;
}

.cgx-crumb span {
    margin: 0 6px;
    color: #ccb3ba;
}

.cgx-crumb strong {
    color: #2A0F1A;
}

.cgx-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #2A0F1A;
    line-height: 1.1;
    letter-spacing: -.5px;
    margin-bottom: 8px;
}

.cgx-sub {
    font-size: 15px;
    color: #6b4a54;
    max-width: 540px;
    line-height: 1.6;
}

.cgx-head-right {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cgx-badge {
    min-width: 76px;
    text-align: center;
    background: #FBE4E8;
    border: 1px solid #F3C9D3;
    border-radius: 12px;
    padding: 12px 14px;
}

.cgx-badge-num {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #C04C68;
    line-height: 1;
}

.cgx-badge-lbl {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .6px;
    font-weight: 700;
    color: #8a6b75;
}


/* Filter bar */

.cgx-filterbar {
    background: #FBE4E8;
    padding: 18px 24px 0;
}

.cgx-filterbar-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #F3C9D3;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px -16px rgba(92, 31, 51, .4);
}

.cgx-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cgx-fbtn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #F3C9D3;
    background: #fff;
    color: #5C1F33;
    font-size: 13.5px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .2s;
}

.cgx-fbtn i {
    color: #C04C68;
    font-size: 12px;
}

.cgx-fbtn:hover {
    border-color: #C04C68;
}

.cgx-fbtn.is-active {
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    color: #fff;
    border-color: transparent;
}

.cgx-fbtn.is-active i {
    color: #fff;
}

.cgx-search {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #FBE4E8;
    border: 1px solid #F3C9D3;
    border-radius: 50px;
    padding: 9px 16px;
    min-width: 240px;
    flex: 1;
    max-width: 320px;
}

.cgx-search i {
    color: #C04C68;
    font-size: 13px;
}

.cgx-search input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #2A0F1A;
}

.cgx-search input::placeholder {
    color: #b894a0;
}

.cgx-noresult {
    text-align: center;
    color: #8a6b75;
    font-size: 15px;
    padding: 40px 0;
}

@media (max-width: 760px) {
    .cgx-head-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .cgx-head-right {
        justify-content: space-between;
    }
    .cgx-badge {
        flex: 1;
        min-width: 0;
    }
    .cgx-filterbar-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .cgx-search {
        max-width: none;
    }
}


/* =========================================================
   CATEGORIES LISTING — unique card style (catx-*)
   ========================================================= */

.catx-body {
    background: #FBE4E8;
    padding: 28px 24px 12px;
}

.catx-inner {
    max-width: 1240px;
    margin: 0 auto;
}

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

.catx-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #F3C9D3;
    border-radius: 16px;
    padding: 18px 20px;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.catx-card::before {
    /* left accent stripe in the card's tone */
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--catx-accent, #C04C68);
    transition: width .25s ease;
}

.catx-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -22px rgba(92, 31, 51, .5);
    border-color: var(--catx-accent, #C04C68);
}

.catx-card:hover::before {
    width: 7px;
}

.catx-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    background: var(--catx-accent, #C04C68);
    box-shadow: 0 8px 18px -8px var(--catx-accent, #C04C68);
    transition: transform .25s ease;
}

.catx-card:hover .catx-icon {
    transform: rotate(-8deg) scale(1.06);
}

.catx-info {
    flex: 1;
    min-width: 0;
}

.catx-name {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    color: #2A0F1A;
    line-height: 1.2;
}

.catx-count {
    display: block;
    margin-top: 3px;
    font-size: 12.5px;
    font-weight: 600;
    color: #9a7d86;
}

.catx-arrow {
    flex: 0 0 auto;
    color: #c79aa6;
    font-size: .9rem;
    transition: transform .25s ease, color .25s ease;
}

.catx-card:hover .catx-arrow {
    color: var(--catx-accent, #C04C68);
    transform: translateX(4px);
}


/* tones — each sets an accent colour */

.catx-rose {
    --catx-accent: #C04C68;
}

.catx-blush {
    --catx-accent: #E07B9A;
}

.catx-plum {
    --catx-accent: #7B4D9E;
}

.catx-gold {
    --catx-accent: #D08A3E;
}

@media (max-width: 900px) {
    .catx-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .catx-grid {
        grid-template-columns: 1fr;
    }
    .catx-body {
        padding: 22px 16px 10px;
    }
}


/* =========================================================
   HOMEPAGE — dynamic sections (hp-*)
   ========================================================= */

.hp-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.hp-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #C04C68;
    margin-bottom: 8px;
}

.hp-eyebrow-light {
    color: #F3C9D3;
}

.hp-h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 700;
    color: #2A0F1A;
    line-height: 1.15;
    letter-spacing: -.5px;
}

.hp-h2 span {
    font-style: italic;
    color: #C04C68;
}

.hp-h2-light {
    color: #fff;
}

.hp-h2-light span {
    color: #F3C9D3;
}

.hp-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hp-head-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hp-viewall {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #C04C68;
    white-space: nowrap;
    transition: gap .2s;
}

.hp-viewall:hover {
    gap: 12px;
    color: #5C1F33;
}

.hp-viewall-light {
    color: #F3C9D3;
}

.hp-viewall-light:hover {
    color: #fff;
}

.hp-empty {
    text-align: center;
    color: #8a6b75;
    padding: 30px 0;
}


/* profile sections */

.hp-profiles {
    background: #FBE4E8;
    padding: 64px 0;
}

.hp-profiles-alt {
    background: #fff;
}

.hp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* card */

.hp-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 36px -22px rgba(92, 31, 51, .45);
    border: 1px solid #F3C9D3;
    transition: transform .28s ease, box-shadow .28s ease;
}

.hp-profiles-alt .hp-card {
    background: #FBE4E8;
}

.hp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px -24px rgba(192, 76, 104, .55);
}

.hp-card-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #5C1F33;
}

.hp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.hp-card:hover .hp-card-img img {
    transform: scale(1.07);
}

.hp-card-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .35);
    font-size: 2.6rem;
}

.hp-card-flag {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.hp-flag-new {
    background: rgba(251, 146, 60, .92);
    color: #fff;
}

.hp-flag-ok {
    background: rgba(52, 211, 153, .92);
    color: #fff;
}

.hp-card-price {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(42, 15, 26, .78);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 5px 11px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.hp-card-hover {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent, rgba(192, 76, 104, .95));
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 30px 14px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
}

.hp-card:hover .hp-card-hover {
    transform: translateY(0);
    opacity: 1;
}

.hp-card-body {
    padding: 14px 16px 16px;
}

.hp-card-name {
    font-size: 16px;
    font-weight: 800;
    color: #2A0F1A;
    margin-bottom: 4px;
}

.hp-card-loc {
    font-size: 13px;
    color: #8a6b75;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hp-card-loc i {
    color: #C04C68;
}


/* intro band */

.hp-intro {
    background: linear-gradient(135deg, #5C1F33, #C04C68);
    color: #fff;
    text-align: left;
    padding: 60px 24px;
}

.hp-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.hp-intro-h {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.hp-intro-h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(20px, 2.4vw, 27px);
    font-weight: 700;
    color: #F3C9D3;
    margin: 28px 0 12px;
}

.hp-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 16px;
}

.hp-intro p:last-child {
    margin-bottom: 0;
}

.hp-intro-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.hp-intro-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.hp-intro-points i {
    color: #F3C9D3;
}


/* tabs */

.hp-tabs {
    background: #fff;
    padding: 64px 0;
}

.hp-tabbtns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.hp-tabbtn {
    border: 1px solid #F3C9D3;
    background: #fff;
    color: #5C1F33;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .2s;
}

.hp-tabbtn:hover {
    border-color: #C04C68;
}

.hp-tabbtn.active {
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    color: #fff;
    border-color: transparent;
}

.hp-tabpanel {
    display: none;
}

.hp-tabpanel.active {
    display: block;
    animation: hp-fade .35s ease;
}

@keyframes hp-fade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.hp-tab-foot {
    text-align: center;
    margin-top: 28px;
}

.hp-bigbtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 50px;
    transition: transform .2s;
}

.hp-bigbtn:hover {
    transform: translateY(-3px);
}


/* popular areas — image cards */

.hp-areas {
    background: linear-gradient(180deg, #2A0F1A, #5C1F33);
    padding: 70px 0;
}

.hp-areas-sub {
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    margin-top: 8px;
    max-width: 560px;
}

.hp-loc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.hp-loc {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 16px 40px -22px rgba(0, 0, 0, .8);
    transition: transform .3s ease, box-shadow .3s ease;
}

.hp-loc:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 56px -22px rgba(192, 76, 104, .6);
}

.hp-loc-img {
    position: absolute;
    inset: 0;
    background: #5C1F33;
}

.hp-loc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.hp-loc:hover .hp-loc-img img {
    transform: scale(1.1);
}

.hp-loc-ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .35);
    font-size: 2rem;
}

.hp-loc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(42, 15, 26, .05) 0%, rgba(42, 15, 26, .35) 45%, rgba(42, 15, 26, .92) 100%);
    transition: background .3s ease;
}

.hp-loc:hover .hp-loc-overlay {
    background: linear-gradient(180deg, rgba(192, 76, 104, .15) 0%, rgba(92, 31, 51, .55) 45%, rgba(42, 15, 26, .95) 100%);
}

.hp-loc-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 16px 15px;
    z-index: 2;
}

.hp-loc-name {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.3px;
}

.hp-loc-count {
    display: inline-block;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    color: #F3C9D3;
    text-transform: uppercase;
}

.hp-loc-go {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    backdrop-filter: blur(4px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .3s ease, transform .3s ease, background .3s ease;
}

.hp-loc:hover .hp-loc-go {
    opacity: 1;
    transform: translateY(0);
    background: #C04C68;
}


/* how it works */

.hp-steps {
    background: #FBE4E8;
    padding: 64px 0;
}

.hp-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.hp-step {
    background: #fff;
    border: 1px solid #F3C9D3;
    border-radius: 18px;
    padding: 30px 24px;
    text-align: center;
    position: relative;
    transition: transform .25s, box-shadow .25s;
}

.hp-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px -24px rgba(192, 76, 104, .5);
}

.hp-step-num {
    position: absolute;
    top: 14px;
    right: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 800;
    color: #F3C9D3;
    line-height: 1;
}

.hp-step>i {
    font-size: 1.7rem;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 10px 22px -10px rgba(192, 76, 104, .8);
}

.hp-step h4 {
    font-size: 17px;
    font-weight: 700;
    color: #2A0F1A;
    margin-bottom: 6px;
}

.hp-step p {
    font-size: 13.5px;
    color: #6b4a54;
    line-height: 1.6;
}


/* reviews */

.hp-reviews {
    background: #fff;
    padding: 64px 0;
}

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

.hp-rev {
    background: #FBE4E8;
    border: 1px solid #F3C9D3;
    border-radius: 16px;
    padding: 24px;
}

.hp-rev-stars {
    color: #f5b301;
    font-size: 13px;
    margin-bottom: 12px;
}

.hp-rev-stars .hp-rev-dim {
    color: #e3c4cb;
}

.hp-rev-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: #5b3344;
    margin-bottom: 16px;
    font-style: italic;
}

.hp-rev-by {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hp-rev-av {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .25);
}

.hp-rev-name {
    display: block;
    font-weight: 700;
    color: #2A0F1A;
    font-size: 14px;
}

.hp-rev-meta {
    display: block;
    font-size: 12px;
    color: #9a7d86;
}


/* content */

.hp-content {
    background: #FBE4E8;
    padding: 60px 24px;
}

.hp-content-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.hp-content .loc-about-text {
    font-size: 15.5px;
    color: #5b3344;
    line-height: 1.9;
}

.hp-content .loc-about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #2A0F1A;
    margin-bottom: 16px;
}

.hp-content .loc-about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 700;
    color: #C04C68;
    margin: 26px 0 10px;
}

.hp-content .loc-about-text p {
    margin-bottom: 14px;
}


/* final CTA */

.hp-cta {
    background: #fff;
    padding: 0 24px 70px;
}

.hp-cta-card {
    max-width: 820px;
    margin: 0 auto;
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    border-radius: 26px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 30px 60px -24px rgba(92, 31, 51, .7);
    position: relative;
    overflow: hidden;
}

.hp-cta-card::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, .15), transparent 70%);
    border-radius: 50%;
}

.hp-cta-ic {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #F3C9D3;
}

.hp-cta-h {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3.4vw, 36px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.hp-cta-p {
    font-size: 16px;
    color: rgba(255, 255, 255, .9);
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.hp-cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.hp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: transform .2s;
}

.hp-cta-btn:hover {
    transform: translateY(-3px);
}

.hp-cta-call {
    background: #fff;
    color: #C04C68;
}

.hp-cta-wa {
    background: #25D366;
    color: #fff;
}

.hp-cta-line {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
}

.hp-cta-line:hover {
    background: #fff;
    color: #2A0F1A;
}


/* responsive */

@media (max-width: 1000px) {
    .hp-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hp-loc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hp-rev-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hp-steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .hp-profiles,
    .hp-tabs,
    .hp-steps,
    .hp-reviews {
        padding: 48px 0;
    }
    .hp-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .hp-loc-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .hp-rev-grid {
        grid-template-columns: 1fr;
    }
    .hp-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .hp-head-center {
        align-items: center;
    }
    .hp-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .hp-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}


/* =========================================================
   HOMEPAGE — signature letter strip + split feature list
   ========================================================= */


/* ---- Split numbered feature list (after More Companions) ---- */

.hp-feat2 {
    background: #fff;
    padding: 70px 24px;
}

.hp-feat2-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.hp-feat2-left .hp-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #C04C68;
    margin-bottom: 10px;
}

.hp-feat2-h {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: #2A0F1A;
    line-height: 1.12;
    letter-spacing: -.8px;
    margin-bottom: 18px;
}

.hp-feat2-h em {
    font-style: italic;
    color: #C04C68;
}

.hp-feat2-p {
    font-size: 16px;
    line-height: 1.8;
    color: #5b3344;
    margin-bottom: 26px;
}

.hp-feat2-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 50px;
    transition: gap .2s, transform .2s;
}

.hp-feat2-btn:hover {
    gap: 14px;
    transform: translateY(-2px);
}

.hp-feat2-right {
    display: flex;
    flex-direction: column;
}

.hp-feat2-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid #F3C9D3;
}

.hp-feat2-row:first-child {
    padding-top: 0;
}

.hp-feat2-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hp-feat2-num {
    flex: 0 0 auto;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #C04C68;
    line-height: 1;
}

.hp-feat2-row h4 {
    font-size: 18px;
    font-weight: 800;
    color: #2A0F1A;
    margin-bottom: 5px;
}

.hp-feat2-row p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #6b4a54;
}

@media (max-width: 860px) {
    .hp-feat2-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 560px) {
    .hp-feat2 {
        padding: 52px 18px;
    }
    .hp-feat2-btn {
        width: 100%;
        justify-content: center;
    }
}


/* =========================================================
   HOMEPAGE — content article block (auto-styled headings/paragraphs)
   ========================================================= */

.hp-article-sec {
    background: #FBE4E8;
    padding: 70px 24px;
}

.hp-article-wrap {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 22px;
    padding: 48px 52px;
    box-shadow: 0 24px 60px -30px rgba(92, 31, 51, .45);
    border: 1px solid #F3C9D3;
    position: relative;
}

.hp-article-top {
    margin-bottom: 22px;
}

.hp-article-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
}


/* --- the actual content: style ANY headings/paragraphs added here --- */

.hp-article h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 700;
    color: #2A0F1A;
    line-height: 1.15;
    letter-spacing: -.5px;
    margin: 0 0 16px;
}

.hp-article h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(19px, 2.2vw, 24px);
    font-weight: 700;
    color: #C04C68;
    line-height: 1.25;
    margin: 30px 0 10px;
    padding-left: 16px;
    position: relative;
}

.hp-article h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, #C04C68, #5C1F33);
}

.hp-article h4 {
    font-size: 17px;
    font-weight: 800;
    color: #2A0F1A;
    margin: 22px 0 8px;
}

.hp-article p {
    font-size: 16px;
    line-height: 1.9;
    color: #5b3344;
    margin: 0 0 16px;
}

.hp-article p:last-child {
    margin-bottom: 0;
}

.hp-article a {
    color: #C04C68;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hp-article a:hover {
    color: #5C1F33;
}

.hp-article strong {
    color: #2A0F1A;
    font-weight: 700;
}

.hp-article em {
    color: #8a6b75;
}

.hp-article ul,
.hp-article ol {
    margin: 0 0 18px;
    padding-left: 4px;
    list-style: none;
}

.hp-article ul li,
.hp-article ol li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #5b3344;
}

.hp-article ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #C04C68;
    font-size: 12px;
}

.hp-article ol {
    counter-reset: hpc;
}

.hp-article ol li::before {
    counter-increment: hpc;
    content: counter(hpc);
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    background: #C04C68;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-article blockquote {
    margin: 22px 0;
    padding: 16px 22px;
    background: #FBE4E8;
    border-left: 4px solid #C04C68;
    border-radius: 8px;
    font-style: italic;
    color: #5C1F33;
    font-size: 16px;
}

@media (max-width: 560px) {
    .hp-article-sec {
        padding: 52px 16px;
    }
    .hp-article-wrap {
        padding: 32px 24px;
    }
}


/* =========================================================
   LOCATIONS LISTING — image cards (lcx-*)
   ========================================================= */

.lcx-body {
    background: #FBE4E8;
    padding: 28px 24px 12px;
}

.lcx-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.lcx-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.lcx-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #F3C9D3;
    box-shadow: 0 14px 36px -24px rgba(92, 31, 51, .5);
    transition: transform .3s ease, box-shadow .3s ease;
}

.lcx-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 52px -24px rgba(192, 76, 104, .55);
}

.lcx-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #5C1F33;
}

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

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

.lcx-ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .35);
    font-size: 2rem;
}

.lcx-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(42, 15, 26, .05), rgba(42, 15, 26, .45));
    transition: background .3s ease;
}

.lcx-card:hover .lcx-overlay {
    background: linear-gradient(180deg, rgba(192, 76, 104, .15), rgba(92, 31, 51, .55));
}

.lcx-count {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(42, 15, 26, .78);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 50px;
}

.lcx-count i {
    color: #F3C9D3;
    font-size: 11px;
}

.lcx-info {
    padding: 14px 16px 16px;
}

.lcx-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 19px;
    font-weight: 700;
    color: #2A0F1A;
    line-height: 1.15;
    margin-bottom: 4px;
}

.lcx-zone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: #8a6b75;
    font-weight: 600;
}

.lcx-zone i {
    color: #C04C68;
}

.lcx-go {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #FBE4E8;
    color: #C04C68;
    font-weight: 700;
    font-size: 13.5px;
    border-top: 1px solid #F3C9D3;
    transition: background .25s ease, color .25s ease, gap .2s ease;
}

.lcx-card:hover .lcx-go {
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    color: #fff;
    gap: 12px;
}

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

@media (max-width: 700px) {
    .lcx-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .lcx-body {
        padding: 22px 16px 10px;
    }
}

@media (max-width: 420px) {
    .lcx-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   BACK TO TOP BUTTON
   ========================================================= */

.back-to-top {
    position: fixed;
    bottom: 84px;
    /* sits above the WhatsApp float button */
    right: 24px;
    width: 50px;
    /* match the WhatsApp float button */
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    /* match the WhatsApp float icon */
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(192, 76, 104, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .25s ease;
    z-index: 950;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #C04C68;
    transform: translateY(-4px);
    color: #fff;
}

@media (max-width: 600px) {
    .back-to-top {
        width: 46px;
        /* match WhatsApp float on mobile */
        height: 46px;
        font-size: 20px;
        right: 16px;
        bottom: 70px;
        /* above the 46px WhatsApp button (bottom:16) */
    }
}


/* =========================================================
   HOMEPAGE — new sections: category pills, stats counter, trust strip
   ========================================================= */


/* ---- All categories — auto-scroll marquee ---- */

.hp-mcats {
    background: linear-gradient(135deg, #5C1F33, #C04C68);
    padding: 60px 0;
    overflow: hidden;
}


/* dark section — make the header text light */

.hp-mcats .hp-h2 {
    color: #fff;
}

.hp-mcats .hp-h2 span {
    color: #F3C9D3;
}

.hp-mcats .hp-eyebrow {
    color: #F3C9D3;
}

.hp-mcats .hp-viewall {
    color: #F3C9D3;
}

.hp-mcats .hp-viewall:hover {
    color: #fff;
}

.hp-mcats-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .82);
    margin-top: 8px;
    max-width: 520px;
}

.hp-marquee {
    width: 100%;
    margin-top: 18px;
    overflow: hidden;
    /* movement is via transform on the row, not native scroll */
    cursor: grab;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hp-marquee.is-dragging {
    cursor: grabbing;
}

.hp-marquee.is-dragging .hp-mcat {
    pointer-events: none;
}


/* don't click a card while dragging */

.hp-marquee:first-of-type {
    margin-top: 30px;
}

.hp-marquee-row {
    display: flex;
    gap: 16px;
    width: max-content;
    padding: 6px 0;
    user-select: none;
    will-change: transform;
}

.hp-mcat {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    border: 1px solid #F3C9D3;
    border-radius: 16px;
    padding: 12px 22px 12px 12px;
    transition: transform .25s ease, box-shadow .25s ease, background .3s ease, border-color .3s ease;
}

.hp-mcat:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    border-color: transparent;
    box-shadow: 0 16px 32px -18px rgba(192, 76, 104, .7);
}

.hp-mcat-ic {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #FBE4E8;
    color: #C04C68;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 6px 14px -8px rgba(192, 76, 104, .6);
    transition: transform .25s ease;
}

.hp-mcat:hover .hp-mcat-ic {
    transform: rotate(-8deg) scale(1.05);
}

.hp-mcat-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.hp-mcat-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: #2A0F1A;
    white-space: nowrap;
    transition: color .3s ease;
}

.hp-mcat-count {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #b07686;
    margin-top: 2px;
    transition: color .3s ease;
}

.hp-mcat:hover .hp-mcat-name {
    color: #fff;
}

.hp-mcat:hover .hp-mcat-count {
    color: #F3C9D3;
}

.hp-mcats .hp-tab-foot {
    margin-top: 32px;
}


/* ---- Animated stats counter ---- */

.hp-stats {
    background: linear-gradient(135deg, #5C1F33, #C04C68);
    padding: 54px 24px;
}

.hp-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.hp-stat-num {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
}

.hp-stat-label {
    display: block;
    margin-top: 10px;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #F3C9D3;
}

.hp-stat {
    position: relative;
}

.hp-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, .18);
}


/* ---- Trust / safety strip ---- */

.hp-trust {
    background: #2A0F1A;
    padding: 36px 24px;
}

.hp-trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hp-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hp-trust-ic {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(192, 76, 104, .25);
    color: #F3C9D3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.hp-trust-item strong {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.hp-trust-item span {
    display: block;
    color: rgba(255, 255, 255, .6);
    font-size: 12.5px;
}


/* responsive */

@media (max-width: 760px) {
    .hp-stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px 20px;
    }
    .hp-stat:nth-child(2)::after {
        display: none;
    }
    .hp-trust-inner {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}

@media (max-width: 440px) {
    .hp-mcats {
        padding: 48px 0;
    }
    .hp-trust-inner {
        grid-template-columns: 1fr;
    }
    .hp-stat:not(:last-child)::after {
        display: none;
    }
}


/* =========================================================
   HOMEPAGE — promo banner
   ========================================================= */

.hp-promo {
    background: linear-gradient(135deg, #2A0F1A 0%, #5C1F33 60%, #C04C68 130%);
    padding: 64px 24px;
    position: relative;
    overflow: hidden;
}

.hp-promo::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 255, 255, .10), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hp-promo-inner {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 44px;
    align-items: center;
}

.hp-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .14);
    color: #F3C9D3;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 7px 15px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.hp-promo-h {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 700;
    color: #fff;
    line-height: 1.18;
    letter-spacing: -.5px;
    margin-bottom: 16px;
}

.hp-promo-p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .85);
    max-width: 520px;
    margin-bottom: 22px;
}

.hp-promo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hp-promo-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.hp-promo-features i {
    color: #6ee7b7;
}


/* booking card */

.hp-promo-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 26px 56px -26px rgba(0, 0, 0, .6);
}

.hp-promo-card-ic {
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 22px -10px rgba(192, 76, 104, .8);
}

.hp-promo-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #2A0F1A;
    margin-bottom: 6px;
}

.hp-promo-card>p {
    font-size: 14px;
    color: #6b4a54;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hp-promo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 13px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
    transition: transform .2s;
}

.hp-promo-btn:last-child {
    margin-bottom: 0;
}

.hp-promo-btn:hover {
    transform: translateY(-2px);
}

.hp-promo-wa {
    background: #25D366;
    color: #fff;
}

.hp-promo-call {
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    color: #fff;
}

@media (max-width: 820px) {
    .hp-promo-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hp-promo {
        padding: 48px 18px;
    }
    .hp-promo-features {
        gap: 12px;
    }
}


/* =========================================================
   PROFILE CARD — views count badge
   ========================================================= */


/* homepage cards */

.hp-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.hp-card-meta .hp-card-loc {
    margin: 0;
}

.hp-card-views {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 600;
    color: #C04C68;
    white-space: nowrap;
}

.hp-card-views i {
    font-size: 11px;
}


/* call girls / listing cards */

.pt-card-location .pt-card-views {
    float: right;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #C04C68;
}

.pt-card-location .pt-card-views i {
    font-size: 11px;
}


/* =========================================================
   HOMEPAGE — closing line
   ========================================================= */

.hp-closing {
    background: #FBE4E8;
    padding: 40px 24px 56px;
    text-align: center;
}

.hp-closing p {
    max-width: 760px;
    margin: 0 auto;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(18px, 2.2vw, 24px);
    font-style: italic;
    line-height: 1.6;
    color: #5C1F33;
}


/* =========================================================
   HOMEPAGE — top SEO intro (before first profile cards)
   ========================================================= */

.hp-topintro {
    background: #FBE4E8;
    padding: 56px 24px 10px;
    text-align: left;
}

.hp-topintro-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.hp-topintro-h {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 700;
    color: #2A0F1A;
    line-height: 1.2;
    letter-spacing: -.5px;
    margin-bottom: 16px;
}

.hp-topintro-inner p {
    font-size: 16px;
    line-height: 1.85;
    color: #5b3344;
    margin-bottom: 14px;
}

.hp-topintro-inner p:last-child {
    margin-bottom: 0;
}

@media (max-width: 560px) {
    .hp-topintro {
        padding: 44px 18px 6px;
    }
    .hp-topintro-inner p {
        font-size: 15px;
    }
}


/* keyword highlight (homepage SEO) — colour + bold only, no background */

.kw {
    color: #C04C68;
    font-weight: 700;
}


/* =========================================================
   MUMBAI CALL GIRLS — content sections (cgc-*)
   ========================================================= */

.cgc-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #C04C68;
    margin-bottom: 10px;
}


/* lead opener */

.cgc-lead {
    background: #FBE4E8;
    padding: 60px 24px;
}

.cgc-lead-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cgc-lead-h {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 700;
    color: #2A0F1A;
    line-height: 1.18;
    letter-spacing: -.5px;
    margin-bottom: 18px;
}

.cgc-lead-inner p {
    font-size: 16px;
    line-height: 1.85;
    color: #5b3344;
    margin-bottom: 16px;
}

.cgc-lead-inner p:last-child {
    margin-bottom: 0;
}


/* feature blocks */

.cgc-blocks {
    background: #fff;
    padding: 64px 24px;
}

.cgc-blocks-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 22px;
}

.cgc-block {
    background: #FBE4E8;
    border: 1px solid #F3C9D3;
    border-radius: 20px;
    padding: 32px 34px;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}

.cgc-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px -26px rgba(192, 76, 104, .5);
}

.cgc-block-ic {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    box-shadow: 0 10px 22px -10px rgba(192, 76, 104, .8);
}

.cgc-block h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    color: #2A0F1A;
    line-height: 1.25;
    margin-bottom: 14px;
}

.cgc-block p {
    font-size: 15.5px;
    line-height: 1.85;
    color: #5b3344;
    margin-bottom: 14px;
}

.cgc-block p:last-child {
    margin-bottom: 0;
}


/* ready band */

.cgc-ready {
    background: linear-gradient(135deg, #5C1F33, #C04C68);
    padding: 56px 24px;
    text-align: center;
}

.cgc-ready-inner {
    max-width: 760px;
    margin: 0 auto;
}

.cgc-ready h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 3.2vw, 34px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.cgc-ready p {
    font-size: 16.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .9);
}


/* FAQ accordion */


/* FAQ — two-column creative layout */

.cgc-faq {
    background: linear-gradient(180deg, #FBE4E8 0%, #F4C8D0 100%);
    padding: 70px 24px;
}

.cgc-faq-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: start;
}


/* left sticky intro panel */

.cgc-faq-aside {
    position: sticky;
    top: 90px;
}

.cgc-faq-aside-ic {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    box-shadow: 0 12px 26px -12px rgba(192, 76, 104, .8);
}

.cgc-faq-h {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 700;
    color: #2A0F1A;
    line-height: 1.15;
    letter-spacing: -.5px;
    margin-bottom: 14px;
}

.cgc-faq-aside-p {
    font-size: 15px;
    line-height: 1.75;
    color: #6b4a54;
    margin-bottom: 22px;
    max-width: 320px;
}

.cgc-faq-aside-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 14.5px;
    padding: 12px 22px;
    border-radius: 50px;
    transition: transform .2s;
}

.cgc-faq-aside-btn:hover {
    transform: translateY(-2px);
}


/* accordion list */

.cgc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cgc-faq-item {
    background: #fff;
    border: 1px solid #F3C9D3;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}

.cgc-faq-item[open] {
    border-color: #C04C68;
    box-shadow: 0 18px 38px -24px rgba(192, 76, 104, .65);
}

.cgc-faq-q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
}

.cgc-faq-q::-webkit-details-marker {
    display: none;
}

.cgc-faq-num {
    flex: 0 0 auto;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #C04C68;
    line-height: 1;
}

.cgc-faq-item[open] .cgc-faq-num {
    color: #C04C68;
    -webkit-text-stroke: 0;
}

.cgc-faq-qt {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: #2A0F1A;
    line-height: 1.4;
}

.cgc-faq-chev {
    flex: 0 0 auto;
    color: #C04C68;
    font-size: 13px;
    transition: transform .3s ease;
}

.cgc-faq-item[open] .cgc-faq-chev {
    transform: rotate(180deg);
}


/* smooth expand/collapse: answer is wrapped and animated via max-height */

.cgc-faq-a {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .4s ease, opacity .35s ease, padding .4s ease;
    padding: 0 20px 0 54px;
}

.cgc-faq-item[open] .cgc-faq-a {
    /* JS sets the exact max-height; this is a fallback */
    opacity: 1;
    padding-bottom: 20px;
}

.cgc-faq-a p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #5b3344;
    margin: 0;
}

@media (max-width: 820px) {
    .cgc-faq-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .cgc-faq-aside {
        position: static;
    }
    .cgc-faq-aside-p {
        max-width: none;
    }
}

@media (max-width: 560px) {
    .cgc-lead,
    .cgc-blocks,
    .cgc-ready,
    .cgc-faq {
        padding: 48px 18px;
    }
    .cgc-block {
        padding: 26px 22px;
    }
    .cgc-faq-q {
        padding: 16px 16px;
    }
    .cgc-faq-a {
        padding: 0 16px 18px 48px;
    }
}


/* =========================================================
   CALL GIRLS — rates + types
   ========================================================= */


/* ---- rates ---- */

.cgc-rates {
    background: #fff;
    padding: 64px 24px;
}

.cgc-rates-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cgc-rates-h {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 700;
    color: #2A0F1A;
    line-height: 1.2;
    letter-spacing: -.5px;
    margin-bottom: 16px;
}

.cgc-rates-text p {
    font-size: 16px;
    line-height: 1.85;
    color: #5b3344;
    margin-bottom: 14px;
}

.cgc-rates-text p:last-child {
    margin-bottom: 0;
}


/* pricing cards */

.cgc-rate-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 34px 0;
}

.cgc-rate-card {
    position: relative;
    background: #fff;
    border: 1px solid #F3C9D3;
    border-radius: 22px;
    padding: 34px 24px 30px;
    text-align: center;
    box-shadow: 0 14px 36px -26px rgba(92, 31, 51, .45);
    transition: transform .25s ease, box-shadow .25s ease;
}

.cgc-rate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px -24px rgba(192, 76, 104, .55);
}


/* icon circle */

.cgc-rate-ic {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #FBE4E8;
    color: #C04C68;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.cgc-rate-dur {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #8a6b75;
    margin-bottom: 14px;
}


/* price block */

.cgc-rate-price {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 800;
    color: #2A0F1A;
    line-height: 1;
    position: relative;
}

.cgc-rate-cur {
    font-size: 24px;
    font-weight: 700;
    color: #C04C68;
    vertical-align: super;
    margin-right: 2px;
}

.cgc-rate-from {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #b07686;
    margin-bottom: 6px;
    order: -1;
}


/* make price column stack: 'from' label on top, then number */

.cgc-rate-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cgc-rate-note {
    display: block;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed #F3C9D3;
    font-size: 13.5px;
    color: #6b4a54;
}


/* highlighted popular card */

.cgc-rate-card-pop {
    background: linear-gradient(150deg, #5C1F33 0%, #C04C68 100%);
    border-color: transparent;
    box-shadow: 0 26px 54px -22px rgba(92, 31, 51, .7);
    transform: translateY(-10px) scale(1.03);
}

.cgc-rate-card-pop:hover {
    transform: translateY(-14px) scale(1.03);
}

.cgc-rate-card-pop .cgc-rate-ic {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.cgc-rate-card-pop .cgc-rate-dur {
    color: #F3C9D3;
}

.cgc-rate-card-pop .cgc-rate-price {
    color: #fff;
}

.cgc-rate-card-pop .cgc-rate-cur {
    color: #F3C9D3;
}

.cgc-rate-card-pop .cgc-rate-from {
    color: #F3C9D3;
}

.cgc-rate-card-pop .cgc-rate-note {
    color: rgba(255, 255, 255, .85);
    border-top-color: rgba(255, 255, 255, .25);
}

.cgc-rate-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #C04C68;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: 0 8px 18px -6px rgba(0, 0, 0, .35);
    white-space: nowrap;
}


/* ---- types ---- */

.cgc-types {
    background: #FBE4E8;
    padding: 64px 24px;
}

.cgc-types-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cgc-types-head {
    margin-bottom: 26px;
}

.cgc-types-h {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 700;
    color: #2A0F1A;
    line-height: 1.2;
    letter-spacing: -.5px;
    margin-bottom: 14px;
}

.cgc-types-intro {
    font-size: 16px;
    line-height: 1.85;
    color: #5b3344;
}

.cgc-type {
    background: #fff;
    border: 1px solid #F3C9D3;
    border-left: 4px solid #C04C68;
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 16px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.cgc-type:hover {
    transform: translateX(4px);
    box-shadow: 0 16px 36px -24px rgba(192, 76, 104, .5);
}

.cgc-type-h {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #C04C68;
    margin-bottom: 10px;
}

.cgc-type p {
    font-size: 15.5px;
    line-height: 1.85;
    color: #5b3344;
    margin: 0;
}

.cgc-types-foot {
    font-size: 16px;
    line-height: 1.8;
    color: #5b3344;
    margin-top: 22px;
    text-align: center;
}

@media (max-width: 760px) {
    .cgc-rate-cards {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .cgc-rate-card-pop {
        transform: none;
    }
    .cgc-rate-card-pop:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 560px) {
    .cgc-rates,
    .cgc-types {
        padding: 48px 18px;
    }
    .cgc-type {
        padding: 20px 22px;
    }
}
/* mobile: force 2 profile cards per row + tidy card sizing */
@media (max-width: 600px) {
  .pt-profiles-grid { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .pt-card-image { aspect-ratio: 3/4; height: auto; }
  .pt-card-body { padding: 10px 12px; }
  .pt-card-name { font-size: 14px; }
  .pt-card-location { font-size: 11.5px; }
  .pt-card-text { font-size: 11px; }
  .pt-card-views { font-size: 11px; }
}

/* GUARANTEE 2 profile cards per row on all mobile widths */
@media (max-width: 600px) {
  .hp-grid,
  .pt-profiles-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
}

/* /categories opening hook (above the category cards) */
.catx-hook { background: #fff; padding: 36px 24px 40px; }
.catx-hook-inner { max-width: 1200px; margin: 0 auto; }
.catx-hook-h { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(22px, 2.8vw, 30px); font-weight: 700; color: #2A0F1A; line-height: 1.25; margin-bottom: 10px; letter-spacing: -.3px; }
.catx-hook p { font-size: 15.5px; line-height: 1.85; color: #5b3344; margin: 0; }

/* Zone-hook: heading + paragraph on left, compact search on right, zone tiles below */
.zhook-top { display: flex; align-items: flex-end; gap: 28px; margin-bottom: 24px; }
.zhook-text { flex: 1 1 auto; min-width: 0; }
.zhook-search { flex: 0 0 320px; max-width: 320px; }
.zhook-search .cgx-search { width: 100%; max-width: none; }
@media (max-width: 860px) {
    .zhook-top { flex-direction: column; align-items: stretch; gap: 16px; }
    .zhook-search { flex: 1 1 auto; max-width: 100%; }
}

/* Zone tiles row */
.zhook-tiles {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
}
.zhook-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 16px 14px 14px;
    background: linear-gradient(180deg, #fff 0%, #FFF6F8 100%);
    border: 1.5px solid #F4D5DD;
    border-radius: 14px;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
    font-family: inherit;
    overflow: hidden;
}
.zhook-tile:hover {
    transform: translateY(-2px);
    border-color: #C04C68;
    box-shadow: 0 8px 20px -8px rgba(192, 76, 104, 0.22);
}
.zhook-tile.is-active {
    background: linear-gradient(180deg, #C04C68 0%, #9C2F4E 100%);
    border-color: #9C2F4E;
    box-shadow: 0 10px 22px -10px rgba(156, 47, 78, 0.45);
}
.zhook-tile.is-active .zhook-tile-ic { background: rgba(255,255,255,.18); color: #fff; }
.zhook-tile.is-active .zhook-tile-name,
.zhook-tile.is-active .zhook-tile-list,
.zhook-tile.is-active .zhook-tile-count { color: #fff; }
.zhook-tile-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #FBE4E8;
    color: #9C2F4E;
    margin-bottom: 10px;
    transition: background .18s ease, color .18s ease;
}
.zhook-tile-ic i { font-size: 15px; }
.zhook-tile-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 16px;
    color: #2A0F1A;
    letter-spacing: -.2px;
    margin-bottom: 4px;
    transition: color .18s ease;
}
.zhook-tile-list {
    font-size: 11.5px;
    line-height: 1.45;
    color: #7a4a5d;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    transition: color .18s ease;
}
.zhook-tile-count {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #C04C68;
    transition: color .18s ease;
}
@media (max-width: 1100px) {
    .zhook-tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
    .zhook-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .zhook-tile { padding: 14px 12px 12px; }
    .zhook-tile-name { font-size: 15px; }
}
@media (max-width: 560px) { .catx-hook { padding: 28px 18px 32px; } }

/* =========================================================
   ABOUT PAGE — full design (about-*)
   ========================================================= */
.about { background: #fff; }
.about-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #C04C68;
    margin-bottom: 12px;
}
.about-eyebrow-light { color: #F3C9D3; }
.about-h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(30px, 4.4vw, 52px);
    font-weight: 700;
    color: #2A0F1A;
    line-height: 1.1;
    letter-spacing: -.5px;
    margin-bottom: 22px;
}
.about-h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: #2A0F1A;
    line-height: 1.2;
    letter-spacing: -.3px;
    margin: 0;
}
.about-h2-light { color: #fff; }
.about-h2-center { text-align: center; }

/* Hero */
.about-hero {
    background: #FBE4E8;
    padding: 88px 24px 64px;
    border-bottom: 1px solid #F3C9D3;
}
.about-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.about-crumb {
    font-size: 13px;
    color: #9a7d86;
    margin-bottom: 18px;
}
.about-crumb a { color: #C04C68; }
.about-crumb span { margin: 0 6px; color: #ccb3ba; }
.about-crumb strong { color: #2A0F1A; }
.about-lede {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(18px, 2vw, 22px);
    font-style: italic;
    color: #5C1F33;
    line-height: 1.55;
    margin-bottom: 18px;
    max-width: 760px;
}
.about-lede-2 {
    font-size: 16px;
    line-height: 1.85;
    color: #5b3344;
    max-width: 820px;
}

/* Trust strip */
.about-trust {
    background: #fff;
    padding: 36px 24px;
    border-bottom: 1px solid #F3C9D3;
}
.about-trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
}
.about-trust-item {
    padding: 14px 8px;
}
.about-trust-item + .about-trust-item {
    border-left: 1px solid #F3C9D3;
}
.about-trust-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 800;
    color: #C04C68;
    line-height: 1;
}
.about-trust-lbl {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8a6b75;
}

/* Editorial blocks — left label / right body */
.about-block { background: #fff; padding: 72px 24px; }
.about-block-alt { background: #FBE4E8; }
.about-block-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 56px;
}
.about-block-side {
    position: sticky;
    top: 100px;
    align-self: start;
}
.about-block-body p {
    font-size: 16px;
    line-height: 1.95;
    color: #5b3344;
    margin: 0 0 18px;
}
.about-block-body p:last-child { margin-bottom: 0; }
.about-block-alt .about-block-body p { color: #4a2935; }

/* Promise list */
.about-promise {
    background: #fff;
    padding: 80px 24px;
    border-top: 1px solid #F3C9D3;
    border-bottom: 1px solid #F3C9D3;
}
.about-promise-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.about-promise-lead {
    margin: 18px 0 26px;
    font-size: 16px;
    color: #6b4a54;
}
.about-promise-list {
    list-style: none;
    margin: 0 auto 28px;
    padding: 0;
    text-align: left;
    max-width: 720px;
}
.about-promise-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 22px;
    background: #FBE4E8;
    border: 1px solid #F3C9D3;
    border-radius: 14px;
    margin-bottom: 10px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #2A0F1A;
}
.about-promise-list li i {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C04C68, #5C1F33);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 1px;
}
.about-promise-foot {
    font-size: 15px;
    line-height: 1.8;
    color: #6b4a54;
    margin: 0;
}

/* Closing band */
.about-close {
    background: linear-gradient(135deg, #5C1F33, #C04C68);
    padding: 80px 24px;
    text-align: center;
    color: #fff;
}
.about-close-inner { max-width: 820px; margin: 0 auto; }
.about-close p {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255,255,255,.9);
    margin: 0 0 16px;
}
.about-close p:last-of-type { margin-bottom: 28px; }
.about-close-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: transform .2s;
}
.about-btn:hover { transform: translateY(-2px); }
.about-btn-solid { background: #fff; color: #C04C68; }
.about-btn-wa { background: #25D366; color: #fff; }

/* Responsive */
@media (max-width: 900px) {
    .about-block-inner { grid-template-columns: 1fr; gap: 22px; }
    .about-block-side { position: static; }
    .about-trust-inner { grid-template-columns: 1fr 1fr; gap: 24px 12px; }
    .about-trust-item + .about-trust-item { border-left: none; }
    .about-trust-item:nth-child(3),
    .about-trust-item:nth-child(4) { border-top: 1px solid #F3C9D3; padding-top: 22px; }
}
@media (max-width: 560px) {
    .about-hero { padding: 70px 18px 52px; }
    .about-block { padding: 56px 18px; }
    .about-promise { padding: 60px 18px; }
    .about-close { padding: 60px 18px; }
    .about-promise-list li { padding: 14px 16px; font-size: 14.5px; }
    .about-btn { width: 100%; justify-content: center; }
}
/* /rates "what affects the price" content block */
.rates-explain { max-width: 820px; margin: 50px auto 30px; padding: 32px 32px; background: #FBE4E8; border: 1px solid #F3C9D3; border-radius: 18px; }
.rates-explain-h { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; color: #2A0F1A; line-height: 1.25; letter-spacing: -.3px; margin-bottom: 14px; }
.rates-explain p { font-size: 15.5px; line-height: 1.85; color: #5b3344; margin-bottom: 14px; }
.rates-explain p:last-child { margin-bottom: 0; }
@media (max-width: 560px) { .rates-explain { padding: 24px 22px; } }

/* /contact "Before you message us" content block */
.contact-note { background: #FBE4E8; padding: 56px 24px; }
.contact-note-inner { max-width: 820px; margin: 0 auto; }
.contact-note-h { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(24px, 3vw, 32px); font-weight: 700; color: #2A0F1A; line-height: 1.2; letter-spacing: -.3px; margin-bottom: 12px; }
.contact-note-lead { font-size: 16.5px; color: #5C1F33; margin-bottom: 18px; font-style: italic; }
.contact-note p { font-size: 15.5px; line-height: 1.85; color: #5b3344; margin-bottom: 14px; }
.contact-note p:last-child { margin-bottom: 0; }
@media (max-width: 560px) { .contact-note { padding: 44px 18px; } }
