/* =========================================================
   Cheap Escorts Mumbai — homepage redesign
   Phase 1: header + hero  (revision 2)
   ========================================================= */

:root {
    --bg: #e8645b;
    --bg-deep: #d74a42;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.85);
    --text-soft: rgba(255, 255, 255, 0.7);
    --pill-soft: rgba(255, 255, 255, 0.18);
    --pill-softer: rgba(255, 255, 255, 0.12);
    --ink: #1a1a1a;
    --gold: #ffd43a;
    --shell-radius: 36px;
    --radius-pill: 999px;
    --shadow-img: 0 24px 60px rgba(120, 25, 22, 0.32);
    --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0 !important;
    padding: 0;
    background: #ffffff !important;
    background-image: none !important;
    color: var(--ink);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

a:focus,
button:focus {
    outline: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid rgba(249, 115, 146, 0.6);
    outline-offset: 3px;
    border-radius: 2px;
}

a, button {
    -webkit-tap-highlight-color: transparent;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ---------- shell wrapping the whole hero block ---------- */
.hero-shell {
    margin: 0 0 24px;
    border-radius: 0 0 var(--shell-radius) var(--shell-radius);
    background:
        radial-gradient(circle at 85% 18%, rgba(255, 150, 142, 0.55) 0%, transparent 55%),
        linear-gradient(180deg, #ec6f64 0%, #d94a42 55%, #b9302a 100%);
    color: var(--text);
    position: relative;
    z-index: 50;
    /* overflow:visible so the hero-search dropdown can extend below the shell */
}

/* ---------- header ---------- */
.site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 20px 44px;
    gap: 28px;
    position: sticky;
    top: 0;
    z-index: 100;
    background:
        radial-gradient(circle at 85% 50%, #ee7a72 0%, transparent 70%),
        linear-gradient(135deg, #ec6f64 0%, #d94a42 100%);
    transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 6px 24px rgba(120, 25, 22, 0.3);
    padding-top: 14px;
    padding-bottom: 14px;
}

.brand,
.brand:hover,
.brand:focus,
.brand:active,
.brand:visited {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 19px;
    color: #fff !important;
    letter-spacing: -0.01em;
    text-decoration: none !important;
}
.brand:hover .brand-name,
.brand:hover .brand-name em,
.brand:focus .brand-name,
.brand:focus .brand-name em {
    color: inherit;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    flex: none;
}

.brand-name em {
    font-style: normal;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-left: 4px;
}

/* primary nav */
.primary-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.primary-nav a {
    position: relative;
    font-weight: 500;
    font-size: 15px;
    color: var(--text);
    padding: 6px 2px;
    transition: color 0.15s ease;
    white-space: nowrap;
}

.primary-nav a:hover {
    color: #fff;
}

.primary-nav a.active {
    color: #1a1a1a;
    font-weight: 700;
}

.primary-nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    width: 60%;
    margin: 0 auto;
    border-radius: 2px;
    background: #1a1a1a;
}

.has-badge {
    position: relative;
}

.nav-badge {
    position: absolute;
    top: -14px;
    right: -22px;
    background: #fff;
    color: var(--bg-deep);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 12px 12px 12px 2px;
    letter-spacing: 0.06em;
    line-height: 1;
}

/* header actions */
.header-actions {
    display: flex;
    gap: 6px;
    align-items: center;
}

.icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    transition: background 0.15s ease;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}

.icon-btn .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--gold);
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    line-height: 1;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    color: #fff;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- hero ---------- */
.hero {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 28px;
    padding: 18px 44px 0;
    align-items: end;
    position: relative;
    min-height: 600px;
}

.hero-copy {
    max-width: 560px;
    padding-bottom: 44px;
    align-self: center;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: inline-block;
    letter-spacing: 0.01em;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(34px, 4.4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 18px;
    color: #fff;
}

.hero-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 460px;
    margin: 0 0 26px;
    line-height: 1.55;
}

/* search pill */
.hero-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-pill);
    padding: 5px;
    gap: 4px;
    max-width: 440px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* custom themed dropdown (replaces native <select>) */
.custom-select {
    flex: 1;
    position: relative;
    min-width: 0;
}

.select-trigger {
    width: 100%;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.92);
    font-family: inherit;
    font-size: 14px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    cursor: pointer;
    text-align: left;
    border-radius: var(--radius-pill);
}

.select-trigger:focus,
.select-trigger:focus-visible,
.select-trigger:active {
    outline: none !important;
    box-shadow: none !important;
}

.select-label {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select-trigger .caret {
    color: rgba(255, 255, 255, 0.85);
    transition: transform 0.2s ease;
    flex: none;
    pointer-events: none;
}

.custom-select.is-open .select-trigger .caret {
    transform: rotate(180deg);
}

/* CORAL DROPDOWN — opens DOWNWARD, fully opaque, matches header theme */
.select-options {
    position: absolute;
    top: calc(100% + 14px);
    bottom: auto;
    left: 0;
    right: 0;
    background:
        radial-gradient(circle at 85% 0%, #ee7a72 0%, transparent 60%),
        linear-gradient(180deg, #ec6f64 0%, #d94a42 60%, #b9302a 100%);
    border-radius: 22px;
    list-style: none;
    margin: 0;
    padding: 10px;
    z-index: 999;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 28px 70px rgba(58, 18, 18, 0.45),
        0 8px 24px rgba(58, 18, 18, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -1px 0 rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.97);
    transform-origin: top center;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.22s;
    visibility: hidden;
    max-height: 250px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.45) transparent;
}

/* upward-pointing arrow at the TOP (pointing back at the trigger) */
.select-options::after {
    content: "";
    position: absolute;
    top: -7px;
    left: 28px;
    width: 14px;
    height: 14px;
    background: #ec6f64;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    transform: rotate(45deg);
    border-radius: 2px;
}

.select-options::-webkit-scrollbar { width: 6px; }
.select-options::-webkit-scrollbar-track { background: transparent; }
.select-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.45);
    border-radius: 3px;
}
.select-options::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.7); }

.custom-select.is-open .select-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.select-options li {
    position: relative;
    padding: 12px 18px 12px 40px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
    user-select: none;
    line-height: 1.3;
    background: transparent;
}

.select-options li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transform: translateY(-50%);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.select-options li::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 5l7 7-7 7'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translate(-8px, -50%);
    opacity: 0;
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s ease;
}

.select-options li + li { margin-top: 2px; }

.select-options li:hover,
.select-options li.is-active {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.select-options li:hover::before,
.select-options li.is-active::before {
    background: #ffffff;
    transform: translateY(-50%) scale(1.5);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
}

.select-options li:hover::after,
.select-options li.is-active::after {
    transform: translate(0, -50%);
    opacity: 1;
}

.select-options li.is-selected {
    background: rgba(255, 255, 255, 0.24);
    font-weight: 700;
}

.select-options li.is-selected::before {
    background: #ffffff;
    transform: translateY(-50%) scale(1.5);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.hero-search .search-cta {
    background: #fff;
    color: var(--bg-deep);
    border: 0;
    padding: 12px 26px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-search .search-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* testimonial pill */
.testimonial {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.14);
    padding: 8px 20px 8px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 22px;
}

.avatars {
    display: flex;
    flex: none;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--bg);
    background: #ddd center/cover no-repeat;
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
}

.testimonial-text {
    line-height: 1.3;
}

.testimonial-text .top {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.testimonial-text .rating {
    font-size: 12px;
    color: var(--text-soft);
    display: flex;
    gap: 6px;
    align-items: center;
    margin-top: 3px;
}

.testimonial-text .stars {
    color: var(--gold);
    letter-spacing: 1px;
    font-size: 13px;
}

/* signup row */
.signup-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--text-muted);
}

.signup-btn {
    background: rgba(255, 255, 255, 0.92);
    color: var(--bg-deep);
    padding: 11px 26px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.15s ease, background 0.15s ease;
}

.signup-btn:hover {
    transform: translateY(-1px);
    background: #fff;
}

/* hero image */
.hero-image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: stretch;
    min-height: 580px;
    overflow: hidden;
}

.hero-image-circle {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.06) 70%, transparent 100%);
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.hero-image img {
    position: relative;
    height: 580px;
    width: auto;
    max-width: none;
    flex: none;
    z-index: 1;
    display: block;
    filter: drop-shadow(var(--shadow-img));
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
    .primary-nav ul {
        gap: 24px;
    }

    .site-header {
        padding: 18px 28px;
    }

    .hero {
        padding: 14px 28px 0;
        min-height: 520px;
    }

    .hero-copy {
        padding-bottom: 36px;
    }

    .hero-image-circle {
        width: 440px;
        height: 440px;
        bottom: 30px;
    }

    .hero-image img {
        height: 500px;
    }

    .hero-image {
        min-height: 500px;
    }
}

@media (max-width: 900px) {
    .site-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        gap: 10px;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        right: 16px;
        left: auto;
        margin-top: 8px;
        width: min(260px, calc(100vw - 32px));
        background: linear-gradient(180deg, #ec6f64 0%, #b9302a 100%);
        border-radius: 20px;
        padding: 6px;
        z-index: 50;
        box-shadow: 0 18px 44px rgba(120, 25, 22, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px) scale(0.96);
        transform-origin: top right;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .primary-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .primary-nav li {
        border-bottom: 0;
    }

    .primary-nav a {
        display: block;
        padding: 12px 16px;
        color: #fff;
        font-size: 14px;
        border-radius: 12px;
        transition: background 0.15s ease;
    }

    .primary-nav a:hover {
        background: rgba(255, 255, 255, 0.18);
    }

    .primary-nav a.active {
        background: rgba(255, 255, 255, 0.25);
        color: #fff;
        font-weight: 600;
    }

    .primary-nav a.active::after {
        display: none;
    }

    .has-badge .nav-badge {
        position: static;
        margin-left: 8px;
        display: inline-block;
        vertical-align: middle;
        border-radius: 10px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 18px 22px 0;
        gap: 12px;
        text-align: left;
        min-height: 0;
        align-items: stretch;
    }

    .hero-copy {
        max-width: 100%;
        padding-bottom: 8px;
        align-self: stretch;
    }

    .hero-title {
        font-size: clamp(32px, 6vw, 44px);
    }

    .hero-image {
        min-height: 420px;
        align-self: stretch;
    }

    .hero-image-circle {
        width: 360px;
        height: 360px;
        bottom: 20px;
    }

    .hero-image img {
        height: 420px;
    }
}

@media (max-width: 540px) {
    :root {
        --shell-radius: 24px;
    }

    .site-header {
        padding: 14px 16px;
        gap: 8px;
    }

    .brand {
        font-size: 16px;
        gap: 10px;
    }

    .brand-mark {
        width: 32px;
        height: 32px;
        border-radius: 9px;
    }

    .brand-name em {
        margin-left: 3px;
    }

    .icon-btn {
        width: 38px;
        height: 38px;
    }

    .hero {
        padding: 14px 16px 0;
        gap: 10px;
    }

    .hero-eyebrow {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .hero-sub {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .hero-search {
        flex-direction: column;
        padding: 10px;
        max-width: 100%;
        align-items: stretch;
        border-radius: 22px;
    }

    .hero-search .select {
        padding: 4px 16px;
    }

    .hero-search .search-cta {
        width: 100%;
        padding: 13px;
    }

    .testimonial {
        padding: 8px 18px 8px 8px;
        gap: 12px;
        margin-bottom: 18px;
    }

    .avatar {
        width: 34px;
        height: 34px;
        border-width: 2px;
        margin-left: -10px;
    }

    .signup-row {
        font-size: 13px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .signup-btn {
        padding: 10px 22px;
        font-size: 13px;
    }

    .hero-image {
        min-height: 360px;
    }

    .hero-image-circle {
        width: 300px;
        height: 300px;
        bottom: 15px;
    }

    .hero-image img {
        height: 360px;
    }
}

@media (max-width: 380px) {
    .site-header {
        padding: 12px 14px;
    }

    .brand {
        font-size: 14px;
        gap: 8px;
    }

    .brand-mark {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .icon-btn {
        width: 34px;
        height: 34px;
    }

    .header-actions {
        gap: 2px;
    }

    .hero-title {
        font-size: 28px;
    }
}

@media (max-width: 340px) {
    .brand-name em {
        display: none;
    }
}

/* =========================================================
   Categories section (under hero)
   ========================================================= */

.categories-section {
    padding: 64px 32px 56px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(26px, 3vw, 36px);
    color: var(--bg-deep);
    margin: 0;
    letter-spacing: -0.01em;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

.section-divider .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bg-deep);
}

.section-divider .line {
    width: 38px;
    height: 2px;
    background: var(--bg-deep);
    border-radius: 2px;
    opacity: 0.7;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.category-card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 24px 28px;
    border-radius: 999px;
    height: 130px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.category-card:focus {
    outline: none;
}

.category-card:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--bg-deep);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.category-card .card-body {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
    max-width: 56%;
}

.category-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    margin: 0 0 10px;
    line-height: 1.2;
    color: inherit;
}

.category-card.no-cta h3 {
    margin-bottom: 0;
}

.category-card .card-cta {
    display: inline-block;
    background: #fff;
    color: var(--bg-deep);
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.category-card .card-img {
    position: absolute;
    bottom: 0;
    right: -6px;
    height: 180px;
    width: auto;
    pointer-events: none;
    z-index: 1;
    object-fit: contain;
    object-position: bottom right;
}

/* card color variants */
.category-card.card-pink { background: #f0a6a0; }
.category-card.card-gold { background: #e5a841; }
.category-card.card-peach {
    background: #f1cdb9;
    color: #5a3a2c;
}
.category-card.card-peach .card-cta {
    background: #5a3a2c;
    color: #fff;
}
.category-card.card-brown { background: #8e6e55; }

@media (max-width: 1100px) {
    .categories-section {
        padding: 56px 24px 48px;
    }
    .category-cards {
        gap: 16px;
    }
    .category-card {
        padding: 20px 22px;
        height: 120px;
    }
    .category-card h3 {
        font-size: 15px;
    }
    .category-card .card-img {
        height: 160px;
    }
}

@media (max-width: 900px) {
    .category-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .category-card {
        height: 130px;
        padding: 22px 26px;
    }
    .category-card .card-img {
        height: 170px;
    }
}

@media (max-width: 540px) {
    .categories-section {
        padding: 40px 18px 32px;
    }
    .section-head {
        margin-bottom: 32px;
    }
    .category-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .category-card {
        height: 110px;
        padding: 18px 22px;
        border-radius: 80px;
    }
    .category-card h3 {
        font-size: 16px;
    }
    .category-card .card-img {
        height: 150px;
        right: 0;
    }
}

/* full-width pink panel with wavy bottom for the text-only categories section */
.categories-section--text {
    max-width: none;
    margin: 16px 0 0;
    padding: 60px 32px 50px;
    background: #f191a7;
    position: relative;
    overflow: visible;
}

.categories-section--text .section-head,
.categories-section--text .category-cards {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.section-wave {
    display: block;
    width: 100%;
    height: 48px;
    margin: 0 0 40px;
    pointer-events: none;
}

.section-wave path {
    fill: #f191a7;
}

@media (max-width: 640px) {
    .categories-section--text { padding: 44px 14px 36px; }
    .section-wave { height: 32px; margin-bottom: 28px; }
}

/* text-only category cards (Mumbai Escorts Categories list) */
.category-cards--text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.category-card--text {
    flex: 0 1 calc(25% - 12px);
    height: 70px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.category-card--text .card-body {
    max-width: 100%;
    text-align: center;
    flex: none;
}

.category-card--text h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .category-card--text {
        flex: 0 1 calc(33.333% - 12px);
        height: 64px;
        padding: 14px 20px;
    }
    .category-card--text h3 { font-size: 14px; }
}

@media (max-width: 900px) {
    .category-cards--text {
        gap: 12px;
    }
    .category-card--text {
        flex: 0 1 calc(33.333% - 8px);
    }
}

@media (max-width: 640px) {
    .category-cards--text { gap: 8px; }
    .category-card--text {
        flex: 0 1 calc(50% - 4px);
        height: 56px;
        padding: 10px 14px;
    }
    .category-card--text h3 { font-size: 12.5px; }
}

@media (max-width: 380px) {
    .category-card--text {
        flex: 0 1 calc(50% - 4px);
        height: 52px;
        padding: 8px 12px;
    }
    .category-card--text h3 { font-size: 11.5px; }
}

/* 15 dark theme-matched colors for category list (readable on pink bg) */
.category-card--text.cat-1  { background: #b8364a; color: #fff; }
.category-card--text.cat-2  { background: #c46d2f; color: #fff; }
.category-card--text.cat-3  { background: #a35a3a; color: #fff; }
.category-card--text.cat-4  { background: #6b4d3a; color: #fff; }
.category-card--text.cat-5  { background: #9c2f44; color: #fff; }
.category-card--text.cat-6  { background: #b8842b; color: #fff; }
.category-card--text.cat-7  { background: #b86838; color: #fff; }
.category-card--text.cat-8  { background: #a14228; color: #fff; }
.category-card--text.cat-9  { background: #7c2a3a; color: #fff; }
.category-card--text.cat-10 { background: #b04030; color: #fff; }
.category-card--text.cat-11 { background: #9a4a2f; color: #fff; }
.category-card--text.cat-12 { background: #8c4022; color: #fff; }
.category-card--text.cat-13 { background: #6e3025; color: #fff; }
.category-card--text.cat-14 { background: #a44528; color: #fff; }
.category-card--text.cat-15 { background: #6e1f1a; color: #fff; }

.category-card--text h3 { color: inherit; }

/* white heading + divider on pink panel */
.categories-section--text .section-title { color: #fff; }
.categories-section--text .section-divider .dot { background: #fff; }
.categories-section--text .section-divider .line { background: #fff; }

/* =========================================================
   Two-column content rows (alternating image / text)
   ========================================================= */

.content-row {
    max-width: 1180px;
    margin: 64px auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.content-row__image {
    position: relative;
}

.content-row__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.content-row__tag {
    position: absolute;
    top: -18px;
    left: -22px;
    font-family: 'Caveat', cursive;
    font-weight: 700;
    color: #f97392;
    font-size: 30px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.05;
    transform: rotate(-6deg);
    transform-origin: left center;
    z-index: 5;
    pointer-events: none;
    max-width: 220px;
}

@media (max-width: 540px) {
    .content-row__tag {
        font-size: 24px;
        top: -10px;
        left: -8px;
    }
}

/* informational text section after content rows */
.info-section {
    max-width: 1180px;
    margin: 24px auto 64px;
    padding: 0 32px;
}

.info-section__inner h2 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 700 !important;
    font-style: italic !important;
    font-size: clamp(24px, 2.4vw, 32px) !important;
    color: #f97392 !important;
    margin: 32px 0 14px !important;
    line-height: 1.2 !important;
    text-transform: none !important;
    letter-spacing: -0.005em !important;
    text-align: left !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
}

.info-section__inner p {
    color: #555 !important;
    line-height: 1.7 !important;
    margin: 0 0 14px !important;
    font-size: 15.5px !important;
    text-align: left !important;
}

.info-section__inner a {
    color: #c54343 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(197, 67, 67, 0.35) !important;
}

.info-section__inner strong {
    color: #333 !important;
    font-weight: 700 !important;
}

.info-section__cta-wrap {
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 540px) {
    .info-section { padding: 0 16px; margin: 20px auto 48px; }
    .info-section__inner h2 { font-size: 22px !important; }
    .info-section__inner p { font-size: 14.5px !important; }
}

/* belt-and-suspenders: ensure removed legacy section never renders */
.but-pad-cont, .butt-pad, .unique-links { display: none !important; }

/* =========================================================
   "Why Choose Us" features section (3 cards with image + text)
   ========================================================= */

.features-section {
    max-width: none;
    margin: 56px 0 0;
    padding: 80px 32px 90px;
    position: relative;
    background: linear-gradient(180deg, #fef7f8 0%, #fdf0f2 100%);
    overflow: hidden;
}

.features-section > .features-section__head,
.features-section > .features-grid {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* decorative background elements */
.features-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.features-decor__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
}

.features-decor__blob--1 {
    width: 380px;
    height: 380px;
    background: rgba(249, 115, 146, 0.28);
    top: -120px;
    left: -120px;
}

.features-decor__blob--2 {
    width: 420px;
    height: 420px;
    background: rgba(232, 100, 91, 0.22);
    bottom: -160px;
    right: -140px;
}

.features-decor__blob--3 {
    width: 240px;
    height: 240px;
    background: rgba(255, 200, 130, 0.25);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(70px);
}

.features-decor__heart {
    position: absolute;
    color: rgba(249, 115, 146, 0.22);
    pointer-events: none;
}

.features-decor__heart--1 {
    top: 70px;
    left: 8%;
    width: 32px;
    height: 32px;
    transform: rotate(-15deg);
}

.features-decor__heart--2 {
    top: 28%;
    right: 5%;
    width: 22px;
    height: 22px;
    transform: rotate(18deg);
}

.features-decor__heart--3 {
    bottom: 22%;
    left: 4%;
    width: 26px;
    height: 26px;
    transform: rotate(8deg);
}

.features-decor__heart--4 {
    bottom: 80px;
    right: 16%;
    width: 30px;
    height: 30px;
    transform: rotate(-22deg);
}

.features-decor__sparkle {
    position: absolute;
    color: rgba(249, 115, 146, 0.32);
    pointer-events: none;
}

.features-decor__sparkle--1 {
    top: 18%;
    left: 22%;
    width: 18px;
    height: 18px;
}

.features-decor__sparkle--2 {
    bottom: 35%;
    right: 26%;
    width: 16px;
    height: 16px;
}

.features-decor__wave {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    width: 100%;
    height: 30px;
    opacity: 0.6;
}

@media (max-width: 700px) {
    .features-section { padding: 56px 22px 60px; margin: 40px 0 0; }
    .features-decor__blob--1 { width: 240px; height: 240px; top: -60px; left: -80px; }
    .features-decor__blob--2 { width: 280px; height: 280px; bottom: -100px; right: -90px; }
    .features-decor__blob--3 { width: 180px; height: 180px; }
    .features-decor__heart--1 { width: 24px; height: 24px; top: 40px; }
    .features-decor__heart--2 { width: 18px; height: 18px; }
    .features-decor__heart--3 { width: 20px; height: 20px; }
    .features-decor__heart--4 { width: 22px; height: 22px; bottom: 50px; }
}

.features-section__head {
    text-align: center;
    margin-bottom: 48px;
}

.features-section__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 3.2vw, 40px);
    color: var(--bg-deep);
    margin: 0;
    letter-spacing: -0.01em;
}

.features-section .section-divider .dot,
.features-section .section-divider .line {
    background: var(--bg-deep);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(120, 25, 22, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(249, 115, 146, 0.18);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(120, 25, 22, 0.12);
}

.feature-card__num {
    position: absolute;
    top: 14px;
    right: 22px;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 38px;
    color: rgba(249, 115, 146, 0.45);
    line-height: 1;
    z-index: 3;
    pointer-events: none;
    letter-spacing: -0.02em;
}

.feature-card__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.feature-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.18) 100%);
    pointer-events: none;
}

.feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-card__image img {
    transform: scale(1.05);
}

.feature-card__content {
    padding: 26px 26px 30px;
}

.feature-card__title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    color: #f97392 !important;
    margin: 0 0 14px !important;
    line-height: 1.2 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    letter-spacing: -0.01em !important;
    text-transform: none !important;
    text-align: left !important;
}

.feature-card__title::before {
    content: '';
    width: 22px;
    height: 2px;
    background: #f97392;
    flex: none;
    border-radius: 2px;
}

.feature-card__body {
    color: #555 !important;
    line-height: 1.7 !important;
    font-size: 14.5px !important;
    text-align: left !important;
}

.feature-card__body p {
    margin: 0 0 12px !important;
    color: #555 !important;
    text-align: left !important;
    line-height: 1.7 !important;
    font-size: 14.5px !important;
}

.feature-card__body p:last-child { margin-bottom: 0 !important; }

.feature-card__body a {
    color: #c54343 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(197, 67, 67, 0.3) !important;
}

.feature-card__body strong { color: #333 !important; font-weight: 700 !important; }

/* remove default black focus outlines on text links inside redesigned sections */
.feature-card__body a,
.content-row__body a,
.profiles-intro a,
.info-section__inner a,
.feature-card,
.content-row__cta,
.signup-btn,
.search-cta {
    -webkit-tap-highlight-color: transparent;
}

.feature-card__body a:focus,
.content-row__body a:focus,
.profiles-intro a:focus,
.info-section__inner a:focus {
    outline: none !important;
}

.feature-card__body a:focus-visible,
.content-row__body a:focus-visible,
.profiles-intro a:focus-visible,
.info-section__inner a:focus-visible {
    outline: 2px solid rgba(249, 115, 146, 0.6) !important;
    outline-offset: 3px;
    border-radius: 2px;
}

/* =========================================================
   Footer (photo strip + dark site footer)
   ========================================================= */

.footer-strip {
    position: relative;
    margin-top: 0;
    background: #2b2b2f;
    line-height: 0;
}

.footer-strip__images {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.footer-strip__images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
}

.footer-strip__btn {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #f6a14a 0%, #f17c52 100%);
    color: #fff !important;
    padding: 10px 8px 10px 24px;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(241, 124, 82, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    white-space: nowrap;
}

.footer-strip__btn:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 16px 36px rgba(241, 124, 82, 0.5);
}

.follow-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    display: grid;
    place-items: center;
    flex: none;
}

.follow-arrow svg {
    width: 12px;
    height: 12px;
}

.site-footer {
    background: #2b2b2f;
    color: #ccc;
    padding: 50px 0 0;
    margin-top: 0;
}

.site-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 44px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 18px;
    -webkit-tap-highlight-color: transparent;
}

.footer-brand .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(249, 115, 146, 0.18);
    color: #f97392;
    display: grid;
    place-items: center;
    flex: none;
}

.footer-brand em {
    font-style: normal;
    font-weight: 500;
    color: #f97392;
    margin-left: 4px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.65) !important;
    line-height: 1.7 !important;
    font-size: 14px !important;
    margin: 0 0 24px !important;
    max-width: 320px;
    text-align: left !important;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: grid;
    place-items: center;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}

.social-icon:hover {
    background: #f97392;
    color: #fff;
    transform: translateY(-2px);
}

.social-icon:focus,
.social-icon:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(249, 115, 146, 0.4);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-col__title {
    color: #f97392 !important;
    font-family: var(--font-display) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    margin: 0 0 18px !important;
    letter-spacing: -0.005em !important;
    text-transform: none !important;
    text-align: left !important;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: color 0.15s ease, padding-left 0.15s ease;
    display: inline-flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    border: 0 !important;
    line-height: 1.5;
}

.footer-links a::before {
    content: '·';
    margin-right: 8px;
    color: #f97392;
    font-weight: 700;
    font-size: 18px;
    line-height: 0.8;
}

.footer-links a:hover {
    color: #fff !important;
    padding-left: 4px;
}

.footer-links a:focus {
    outline: none !important;
}

.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.55;
}

.footer-contacts a {
    color: rgba(255, 255, 255, 0.78) !important;
    text-decoration: none !important;
    border: 0 !important;
    -webkit-tap-highlight-color: transparent;
}

.footer-contacts a:hover { color: #f97392 !important; }
.footer-contacts a:focus { outline: none !important; }

.contact-icon {
    width: 22px;
    height: 22px;
    color: #f97392;
    flex: none;
    display: grid;
    place-items: center;
    margin-top: 1px;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    text-align: center;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 13px !important;
    margin: 0 !important;
    text-align: center !important;
}

@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-col--brand { grid-column: span 2; }
    .footer-col:last-child { grid-column: span 2; }
    .footer-strip__images img { height: 160px; }
    .footer-about { max-width: 520px; }
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        padding-bottom: 28px;
    }
    .footer-col--brand { grid-column: span 2; }
    .footer-col:last-child { grid-column: span 2; }
    .footer-strip__images { grid-template-columns: repeat(5, 1fr); }
    .footer-strip__images img { height: 110px; }
    .site-footer { padding: 44px 0 0; }
    .site-footer__inner { padding: 0 18px; }
    .footer-strip__btn { padding: 9px 6px 9px 20px; font-size: 11px; }
    .follow-arrow { width: 22px; height: 22px; }
    .footer-about { max-width: none; }
}

@media (max-width: 480px) {
    .footer-strip__images img { height: 84px; }
    .footer-grid { gap: 22px; }
    .footer-col__title { font-size: 16px !important; margin-bottom: 12px !important; }
    .footer-links a { font-size: 13.5px !important; }
}

@media (max-width: 360px) {
    .footer-strip__images img { height: 72px; }
}

/* =========================================================
   Compact page hero (for interior pages like mumbai-call-girls)
   ========================================================= */

.page-hero {
    position: relative;
    padding: 24px 32px 56px;
    text-align: center;
    overflow: hidden;
}

.page-hero__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.page-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.page-hero__blob--1 {
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.18);
    top: -80px;
    left: 6%;
}

.page-hero__blob--2 {
    width: 280px;
    height: 280px;
    background: rgba(255, 215, 110, 0.28);
    top: -60px;
    right: 4%;
}

.page-hero__blob--3 {
    width: 220px;
    height: 220px;
    background: rgba(255, 90, 70, 0.32);
    bottom: -90px;
    left: 32%;
}

.page-hero__sparkle {
    position: absolute;
    color: rgba(255, 255, 255, 0.55);
    width: 22px;
    height: 22px;
}

.page-hero__sparkle--1 {
    top: 22px;
    left: 14%;
    transform: rotate(-15deg);
}

.page-hero__sparkle--2 {
    bottom: 28px;
    right: 18%;
    width: 16px;
    height: 16px;
    transform: rotate(20deg);
    opacity: 0.7;
}

.page-hero__heart {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    width: 26px;
    height: 26px;
    bottom: 18px;
    left: 11%;
    transform: rotate(15deg);
}

.page-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero__crumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.page-hero__crumb a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.15s ease;
}

.page-hero__crumb a:hover { color: #fff; }
.page-hero__crumb-sep { opacity: 0.55; }
.page-hero__crumb-current { color: #fff; font-weight: 700; }

.page-hero__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(26px, 3.6vw, 40px);
    color: #fff !important;
    margin: 0 0 14px !important;
    letter-spacing: -0.02em;
    line-height: 1.18;
    text-shadow: 0 2px 8px rgba(120, 25, 22, 0.25);
    text-transform: none !important;
    text-align: center !important;
}

.page-hero__sub {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 15.5px !important;
    line-height: 1.6 !important;
    margin: 0 auto !important;
    max-width: 640px !important;
    text-align: center !important;
}

@media (max-width: 540px) {
    .page-hero { padding: 20px 18px 44px; }
    .page-hero__title { font-size: 24px !important; }
    .page-hero__sub { font-size: 14.5px !important; }
    .page-hero__crumb { font-size: 11px; padding: 5px 13px; margin-bottom: 14px; }
    .page-hero__blob--1 { width: 160px; height: 160px; }
    .page-hero__blob--2 { width: 180px; height: 180px; }
    .page-hero__blob--3 { width: 140px; height: 140px; }
    .page-hero__sparkle, .page-hero__heart { width: 18px; height: 18px; }
    .page-hero__sparkle--2 { width: 14px; height: 14px; }
}

/* =========================================================
   Vertical pill category cards (independent-girls page)
   ========================================================= */

.cat-pills-section {
    max-width: 1280px;
    margin: 0 auto 64px;
    padding: 0 32px;
}

.cat-pills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.cat-pill {
    display: block;
    text-decoration: none;
    color: inherit;
    flex: 0 1 calc(16.666% - 20px);
    -webkit-tap-highlight-color: transparent;
}

.cat-pill__frame {
    position: relative;
    aspect-ratio: 3 / 5;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(80, 60, 30, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background: #f5f0ea;
}

.cat-pill__frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 3px solid #c9a55e;
    box-shadow:
        inset 0 0 0 1px rgba(232, 201, 122, 0.7),
        inset 0 0 14px rgba(80, 60, 30, 0.18);
    pointer-events: none;
    z-index: 3;
    transition: border-color 0.25s ease;
}

.cat-pill:hover .cat-pill__frame {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(80, 60, 30, 0.22);
}

.cat-pill:hover .cat-pill__frame::before {
    border-color: #d8b66e;
}

.cat-pill__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.cat-pill:hover .cat-pill__frame img {
    transform: scale(1.05);
}

.cat-pill__icon {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    color: #c9a55e;
    z-index: 4;
    display: grid;
    place-items: center;
    background: rgba(20, 12, 8, 0.55);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.cat-pill__icon svg {
    width: 14px;
    height: 14px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.cat-pill__caption {
    margin-top: 16px;
    text-align: center;
}

.cat-pill__caption h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: #2b2b2f;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.005em;
}

@media (max-width: 1100px) {
    .cat-pill { flex: 0 1 calc(25% - 18px); }
}

@media (max-width: 700px) {
    .cat-pills-section { padding: 0 18px; margin-bottom: 48px; }
    .cat-pills-grid { gap: 16px; }
    .cat-pill { flex: 0 1 calc(33.333% - 12px); }
    .cat-pill__caption h3 { font-size: 14px; }
    .cat-pill__caption { margin-top: 12px; }
    .cat-pill__icon { width: 18px; height: 18px; bottom: 18px; }
    .cat-pill__icon svg { width: 14px; height: 14px; }
}

@media (max-width: 480px) {
    .cat-pills-grid { gap: 12px; }
    .cat-pill { flex: 0 1 calc(50% - 6px); }
    .cat-pill__caption h3 { font-size: 13.5px; }
}

/* =========================================================
   Video grid (escort-videos page)
   ========================================================= */

.videos-section {
    max-width: 1280px;
    margin: 0 auto 56px;
    padding: 0 32px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(120, 25, 22, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background: #1a1a1a;
    border: 1px solid rgba(249, 115, 146, 0.18);
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(120, 25, 22, 0.18);
    border-color: rgba(249, 115, 146, 0.35);
}

.video-card__embed {
    position: relative;
    aspect-ratio: 16 / 9;
}

.video-card__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 700px) {
    .videos-section { padding: 0 18px; margin-bottom: 44px; }
    .videos-grid { grid-template-columns: 1fr; gap: 18px; }
    .video-card { border-radius: 16px; }
}

/* =========================================================
   Pricing cards (price.html)
   ========================================================= */

.pricing-section {
    max-width: 1180px;
    margin: 0 auto 64px;
    padding: 0 32px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(120, 25, 22, 0.08);
    border: 1px solid rgba(249, 115, 146, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(120, 25, 22, 0.16);
}

.pricing-card--featured {
    transform: scale(1.04);
    box-shadow: 0 18px 40px rgba(217, 74, 66, 0.22);
    border-color: rgba(249, 115, 146, 0.4);
    z-index: 1;
}

.pricing-card--featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.pricing-card__top {
    background: linear-gradient(135deg, #ec6f64 0%, #d94a42 100%);
    color: #fff;
    padding: 32px 24px 28px;
    text-align: center;
    position: relative;
}

.pricing-card--featured .pricing-card__top {
    background: linear-gradient(135deg, #f97392 0%, #d94a42 100%);
}

.pricing-card__hours {
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    margin: 0 0 14px !important;
    color: rgba(255, 255, 255, 0.92) !important;
    text-align: center !important;
    line-height: 1.2 !important;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(120, 25, 22, 0.2);
}

.pricing-card__currency {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

.pricing-card__amount {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing-card__service {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 10px;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card__body {
    padding: 26px 26px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    color: #444;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-card__features li:last-child { border-bottom: 0; }

.pricing-card__features svg {
    width: 18px;
    height: 18px;
    color: #4ade80;
    flex: none;
}

.pricing-card__features li.is-extra {
    color: #888;
}

.pricing-card__features li.is-extra svg {
    color: #f97392;
}

.pricing-card__btn {
    display: block;
    background: linear-gradient(180deg, #f6a14a 0%, #f17c52 100%);
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.08em;
    box-shadow: 0 8px 22px rgba(241, 124, 82, 0.32);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-decoration: none;
}

.pricing-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(241, 124, 82, 0.42);
}

@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 20px; max-width: 480px; margin-left: auto; margin-right: auto; }
    .pricing-card--featured { transform: scale(1); }
    .pricing-card--featured:hover { transform: translateY(-4px); }
    .pricing-section { padding: 0 22px; margin-bottom: 48px; }
}

@media (max-width: 540px) {
    .pricing-card__amount { font-size: 44px; }
    .pricing-card__currency { font-size: 22px; }
    .pricing-card__top { padding: 26px 20px 22px; }
    .pricing-card__body { padding: 22px; }
}

/* =========================================================
   Contact page — coral info card overlapping a white form
   ========================================================= */

.contact-section {
    background: #fef0f1;
    padding: 90px 32px 110px;
    margin: 0 0 0;
}

.contact-grid {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    position: relative;
}

.contact-info {
    width: 280px;
    flex: none;
    background: linear-gradient(180deg, #ed4f5d 0%, #d63d4d 100%);
    color: #fff;
    border-radius: 12px;
    padding: 40px 28px;
    margin-top: -30px;
    margin-bottom: -30px;
    margin-right: -50px;
    z-index: 2;
    position: relative;
    box-shadow: 0 22px 44px rgba(214, 61, 77, 0.32);
    display: flex;
    flex-direction: column;
}

.contact-info__head h2 {
    font-family: var(--font-display) !important;
    font-weight: 800 !important;
    font-size: 26px !important;
    color: #fff !important;
    margin: 0 0 28px !important;
    text-transform: none !important;
    text-align: left !important;
    letter-spacing: -0.01em !important;
}

.contact-info__list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.contact-info__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    color: #fff;
    font-size: 13.5px;
    line-height: 1.5;
}

.contact-info__list li:last-child { margin-bottom: 0; }

.contact-info__list a {
    color: #fff !important;
    text-decoration: none !important;
    border: 0 !important;
    -webkit-tap-highlight-color: transparent;
}

.contact-info__list a:hover { text-decoration: underline !important; }

.contact-info__icon {
    width: 32px;
    height: 32px;
    color: #fff;
    flex: none;
    display: grid;
    place-items: center;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    padding: 6px;
    box-sizing: border-box;
}

.contact-info__icon svg {
    width: 100%;
    height: 100%;
}

.contact-form,
.contact-grid form.contact-form {
    flex: 1;
    background: #fff !important;
    color: #2b2b2f !important;
    border-radius: 8px;
    padding: 60px 56px 56px 100px !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    min-width: 0;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
}

.contact-form__title {
    font-family: var(--font-display) !important;
    font-weight: 800 !important;
    font-size: 30px !important;
    color: #2b2b2f !important;
    margin: 0 0 8px !important;
    text-transform: none !important;
    letter-spacing: -0.015em !important;
    text-align: left !important;
    line-height: 1.15 !important;
}

.contact-form__sub {
    color: #888 !important;
    font-size: 13.5px !important;
    margin: 0 0 28px !important;
    line-height: 1.5 !important;
    text-align: left !important;
}

.contact-form__row {
    margin-bottom: 14px;
}

.contact-form__row label {
    display: none;
}

.contact-form__row input,
.contact-form__row textarea {
    width: 100%;
    background: #f5f4f6;
    border: 0;
    border-radius: 4px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #2b2b2f;
    outline: none;
    transition: background 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
}

.contact-form__row input::placeholder,
.contact-form__row textarea::placeholder {
    color: #b0adb3;
}

.contact-form__row textarea {
    resize: vertical;
    min-height: 90px;
}

.contact-form__row input:focus,
.contact-form__row textarea:focus {
    background: #fff;
    box-shadow: inset 0 0 0 1.5px rgba(237, 79, 93, 0.5);
}

.contact-form__submit {
    background: linear-gradient(180deg, #ed4f5d 0%, #d63d4d 100%);
    color: #fff;
    border: 0;
    padding: 13px 48px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.12em;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(214, 61, 77, 0.32);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: block;
    margin: 24px auto 0;
}

.contact-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(214, 61, 77, 0.42);
}

@media (max-width: 800px) {
    .contact-section { padding: 50px 18px 60px; }
    .contact-grid { flex-direction: column; align-items: center; max-width: 480px; }
    .contact-info {
        width: 100%;
        margin: 0 0 -30px 0;
        max-width: 360px;
    }
    .contact-form { padding: 60px 28px 28px; width: 100%; }
}

@media (max-width: 540px) {
    .contact-form__title { font-size: 24px !important; }
    .contact-info__head h2 { font-size: 22px !important; }
    .contact-info { padding: 32px 24px; }
}

/* =========================================================
   Individual escort profile page (escorts/anisa.html etc.)
   ========================================================= */

.profile-stars {
    display: inline-flex;
    gap: 4px;
    margin-top: 12px;
    color: #ffd43a;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.profile-stars svg {
    width: 18px;
    height: 18px;
}

.profile-page {
    max-width: 1180px;
    margin: 0 auto 64px;
    padding: 32px;
}

.profile-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    margin-bottom: 48px;
    aspect-ratio: 16 / 9;
    max-height: 520px;
}

.profile-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    -webkit-tap-highlight-color: transparent;
    background: #f5f0ea;
}

.profile-gallery__item--main {
    grid-row: span 2;
}

.profile-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.profile-gallery__item:hover img {
    transform: scale(1.05);
}

.profile-details {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 36px;
    align-items: start;
}

.profile-block {
    background: #fff;
    border-radius: 18px;
    padding: 28px 30px;
    margin-bottom: 22px;
    box-shadow: 0 8px 24px rgba(120, 25, 22, 0.06);
    border: 1px solid rgba(249, 115, 146, 0.14);
}

.profile-block:last-child { margin-bottom: 0; }

.profile-block__title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    color: #f97392 !important;
    margin: 0 0 14px !important;
    text-transform: none !important;
    text-align: left !important;
    letter-spacing: -0.005em !important;
    line-height: 1.2 !important;
}

.profile-block p {
    color: #555 !important;
    line-height: 1.7 !important;
    font-size: 15px !important;
    margin: 0 0 12px !important;
    text-align: left !important;
}

.profile-block p:last-child { margin-bottom: 0 !important; }

.profile-block strong { color: #333 !important; }

.profile-block a {
    color: #c54343 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(197, 67, 67, 0.3) !important;
}

.profile-spec {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 10px 22px;
    margin: 0;
}

.profile-spec dt {
    font-weight: 700;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    align-self: center;
}

.profile-spec dd {
    margin: 0;
    color: #2b2b2f;
    font-weight: 600;
    font-size: 14.5px;
}

.profile-likes {
    color: #555 !important;
    line-height: 1.7 !important;
    font-size: 14px !important;
    margin: 0 0 12px !important;
}

.profile-disclaimer {
    color: #888 !important;
    font-size: 12px !important;
    font-style: italic !important;
    margin: 0 !important;
}

/* sidebar */
.profile-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.profile-rates {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(120, 25, 22, 0.08);
    border: 1px solid rgba(249, 115, 146, 0.18);
    margin-bottom: 18px;
}

.profile-rates__title {
    font-family: var(--font-display) !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: #fff !important;
    margin: 0 !important;
    padding: 18px 24px !important;
    background: linear-gradient(135deg, #ec6f64 0%, #d94a42 100%);
    text-align: center !important;
}

.profile-rates__table {
    width: 100%;
    border-collapse: collapse;
}

.profile-rates__table th,
.profile-rates__table td {
    padding: 12px 14px;
    font-size: 13px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-rates__table thead th {
    background: #fdf6f7;
    color: #888;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.06em;
}

.profile-rates__table tbody td {
    color: #2b2b2f;
}

.profile-rates__table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #444;
}

.profile-rates__table tbody td:not(:first-child) {
    color: var(--bg-deep);
    font-weight: 700;
}

.profile-rates__table tbody tr:last-child td { border-bottom: 0; }

.profile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.profile-cta__btn--primary {
    background: linear-gradient(180deg, #f6a14a 0%, #f17c52 100%);
    color: #fff !important;
    box-shadow: 0 8px 22px rgba(241, 124, 82, 0.32);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.profile-cta__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(241, 124, 82, 0.42);
}

.profile-cta__btn--whatsapp {
    background: #25d366;
    color: #fff !important;
}

.profile-cta__btn--whatsapp:hover {
    transform: translateY(-2px);
    background: #20bd5a;
}

.profile-cta__btn--call {
    background: #fff;
    color: #2b2b2f !important;
    border: 2px solid rgba(249, 115, 146, 0.4);
}

.profile-cta__btn--call:hover {
    transform: translateY(-2px);
    border-color: #f97392;
}

/* reviews */
.profile-reviews {
    margin-top: 56px;
}

.profile-reviews .profile-block__title {
    text-align: center !important;
    font-size: 28px !important;
    margin-bottom: 28px !important;
}

.profile-reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 6px 18px rgba(120, 25, 22, 0.06);
    border: 1px solid rgba(249, 115, 146, 0.14);
}

.review-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.review-card__head h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: #2b2b2f;
    margin: 0;
}

.review-card__date {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
    display: block;
}

.review-card__stars {
    display: inline-flex;
    gap: 2px;
    flex: none;
}

.review-card__stars span {
    color: #e0e0e0;
    width: 14px;
    height: 14px;
}

.review-card__stars span.is-on { color: #ffd43a; }

.review-card__stars svg {
    width: 14px;
    height: 14px;
}

.review-card__body {
    color: #555 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

@media (max-width: 1000px) {
    .profile-details { grid-template-columns: 1fr; }
    .profile-sidebar { position: static; }
}

@media (max-width: 700px) {
    .profile-page { padding: 22px 18px 48px; }
    .profile-gallery {
        aspect-ratio: auto;
        max-height: none;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 10px;
    }
    .profile-gallery__item--main {
        grid-column: span 2;
        grid-row: auto;
        aspect-ratio: 4 / 3;
    }
    .profile-gallery__item:not(.profile-gallery__item--main) { aspect-ratio: 1 / 1; }
    .profile-block { padding: 22px; }
    .profile-block__title { font-size: 20px !important; }
    .profile-reviews__grid { grid-template-columns: 1fr; }
    .profile-rates__table th,
    .profile-rates__table td { padding: 10px 8px; font-size: 12px; }
}

/* =========================================================
   Locations index (escorts-near-me.html) — landmark cards
   ========================================================= */

.locations-section {
    max-width: 1280px;
    margin: 0 auto 64px;
    padding: 0 32px;
}

.locations-section__head {
    text-align: center;
    margin-bottom: 40px;
}

.locations-section__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(24px, 2.8vw, 34px);
    color: var(--bg-deep);
    margin: 0;
    letter-spacing: -0.01em;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.loc-card {
    display: block;
    text-decoration: none;
    color: inherit;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.25s ease;
}

.loc-card:hover {
    transform: translateY(-6px);
}

.loc-card__image {
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    aspect-ratio: 4 / 3;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease;
}

.loc-card:hover .loc-card__image {
    box-shadow: 0 16px 32px rgba(120, 25, 22, 0.14);
}

/* Location list page: PNGs already have transparent bg, no card needed */
body.page-locations-list .loc-card__image {
    background: transparent;
    box-shadow: none;
}
body.page-locations-list .loc-card:hover .loc-card__image {
    box-shadow: none;
}

.loc-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.loc-card__caption {
    margin-top: 14px;
    text-align: center;
}

.loc-card__caption h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: #2b2b2f;
    margin: 0 0 4px;
    line-height: 1.2;
    letter-spacing: -0.005em;
}

.loc-card__caption span {
    color: #888;
    font-size: 12px;
    letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
    .locations-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}

@media (max-width: 760px) {
    .locations-section { padding: 0 18px; margin-bottom: 48px; }
    .locations-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .loc-card__caption h3 { font-size: 14px; }
    .loc-card__caption span { font-size: 11px; }
}

@media (max-width: 480px) {
    .locations-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* category pill row used on individual location pages */
.page-pills-section {
    max-width: 1180px;
    margin: 0 auto 64px;
    padding: 0 32px;
}

.page-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.page-pill {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    background: #fff;
    color: #2b2b2f;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(249, 115, 146, 0.25);
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 4px 10px rgba(120, 25, 22, 0.04);
}

.page-pill:hover {
    background: linear-gradient(180deg, #ec6f64 0%, #d94a42 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

@media (max-width: 540px) {
    .page-pills-section { padding: 0 16px; margin-bottom: 48px; }
    .page-pill { padding: 8px 16px; font-size: 12.5px; }
}

@media (max-width: 1100px) {
    .features-grid { gap: 22px; }
    .feature-card__content { padding: 22px 22px 26px; }
}

@media (max-width: 900px) {
    .features-grid { grid-template-columns: 1fr; gap: 24px; }
    .features-section { padding: 0 22px; margin: 48px auto; }
    .feature-card__title { font-size: 20px !important; }
}

@media (max-width: 540px) {
    .features-section { padding: 0 16px; margin: 40px auto; }
    .features-section__head { margin-bottom: 32px; }
    .feature-card__num { font-size: 32px; top: 12px; right: 18px; }
}

.content-row__eyebrow {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f97392;
    margin-bottom: 14px;
    display: block;
}

.content-row__title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 700 !important;
    font-style: italic !important;
    font-size: clamp(28px, 3vw, 38px) !important;
    color: #f97392 !important;
    margin: 0 0 18px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.005em !important;
    text-transform: none !important;
    text-align: left !important;
}

.content-row__body {
    color: #555 !important;
    line-height: 1.7 !important;
    margin: 0 0 26px !important;
    font-size: 15.5px !important;
    text-align: left !important;
}

.content-row__body p {
    margin: 0 0 14px !important;
    color: #555 !important;
    text-align: left !important;
    line-height: 1.7 !important;
    font-size: 15.5px !important;
}
.content-row__body p:last-child { margin-bottom: 0 !important; }
.content-row__body strong { color: #333 !important; font-weight: 700 !important; }
.content-row__body a {
    color: #c54343 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(197, 67, 67, 0.35) !important;
}
.content-row__body a:hover { border-bottom-color: #c54343 !important; }

.content-row__eyebrow {
    text-align: left !important;
}

.content-row__cta {
    display: inline-block;
    background: linear-gradient(180deg, #f6a14a 0%, #f17c52 100%);
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 13px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(241, 124, 82, 0.32);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.content-row__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(241, 124, 82, 0.4);
}

@media (max-width: 900px) {
    .content-row {
        grid-template-columns: 1fr;
        gap: 28px;
        margin: 48px auto;
        padding: 0 22px;
    }
    .content-row--reverse .content-row__image { order: -1; }
    .content-row__image img { max-width: 520px; margin: 0 auto; }
}

@media (max-width: 540px) {
    .content-row { margin: 36px auto; padding: 0 16px; }
    .content-row__title { font-size: 26px; }
    .content-row__body { font-size: 14.5px; }
    .content-row__cta { padding: 12px 24px; font-size: 12px; }
}

/* =========================================================
   Profile cards section (Mumbai Escorts gallery)
   ========================================================= */

.profiles-section {
    padding: 60px 32px 64px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.profiles-intro {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

.profiles-intro h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(26px, 3vw, 38px);
    color: var(--bg-deep);
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}

.profiles-intro p {
    color: #555;
    line-height: 1.7;
    margin: 0 0 12px;
    font-size: 16px;
}

.profiles-intro p:last-child { margin-bottom: 0; }

.profiles-intro a {
    color: var(--bg-deep);
    font-weight: 600;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.profile-card {
    position: relative;
    background: #e8645b;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/4;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    display: block;
}

.profile-card:focus,
.profile-card:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--bg-deep);
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.profile-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.profile-card:hover img {
    transform: scale(1.04);
}

.card-badge {
    position: absolute;
    top: 14px;
    background: #fff;
    color: var(--bg-deep);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
    letter-spacing: 0.02em;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    line-height: 1.2;
    white-space: nowrap;
}

.card-badge.top-right { right: 14px; }
.card-badge.top-left { left: 14px; }

/* card info — always visible, light bottom-fade overlay only */
.profile-card .card-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 56px 16px 14px;
    color: #fff;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: auto;
}

/* name + heart row */
.card-name-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.card-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    margin: 0;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.card-heart {
    width: 22px;
    height: 22px;
    color: #ffb3b3;
    fill: rgba(255, 100, 100, 0.55);
    stroke: #ffd0d0;
    flex: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
    transition: transform 0.2s ease, fill 0.2s ease, color 0.2s ease;
}

.profile-card:hover .card-heart {
    color: #ff6b6b;
    fill: #ff5252;
    transform: scale(1.15);
}

/* category + online status */
.card-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.card-meta {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dot-sep {
    margin: 0 5px;
    opacity: 0.55;
}

.online-mark {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.95);
    flex: none;
}

.online-mark::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.32);
    flex: none;
    animation: statusPulse 2.4s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.32); }
    50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.05); }
}

/* price + book now row */
.card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.card-rate {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    letter-spacing: -0.015em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.card-book {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    color: var(--bg-deep);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    white-space: nowrap;
    transition: background 0.15s ease, transform 0.15s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.card-book .arrow {
    transition: transform 0.2s ease;
}

.profile-card:hover .card-book {
    background: #fde9e7;
}

.profile-card:hover .card-book .arrow {
    transform: translateX(2px);
}

/* responsive sizing */
@media (max-width: 900px) {
    .card-name { font-size: 20px; }
    .card-rate { font-size: 16px; }
    .card-heart { width: 20px; height: 20px; }
}

@media (max-width: 540px) {
    .profile-card .card-info { padding: 44px 12px 12px; }
    .card-name { font-size: 17px; }
    .card-rate { font-size: 15px; }
    .card-meta-row { font-size: 10.5px; margin-bottom: 9px; }
    .online-mark { font-size: 10px; }
    .card-book { padding: 6px 12px; font-size: 11px; }
    .card-heart { width: 18px; height: 18px; }
}

@media (max-width: 1100px) {
    .profiles-section { padding: 56px 24px 56px; }
    .profiles-grid { gap: 18px; }
    .card-info h3 { font-size: 18px; }
    .card-rate { font-size: 16px; }
}

@media (max-width: 900px) {
    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .profiles-section { padding: 40px 6px 48px; }
    .profiles-intro { margin-bottom: 30px; padding: 0 12px; }
    .profiles-intro p { font-size: 15px; line-height: 1.6; }
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .profile-card {
        border-radius: 20px;
        aspect-ratio: 3 / 4.4;
    }
    .card-book {
        padding: 5px 10px;
        font-size: 10px;
        gap: 3px;
    }
    .card-book .arrow {
        display: none;
    }
}

/* =========================================================
   Promo banner (Elite escort CTA)
   ========================================================= */

.promo-banner {
    position: relative;
    max-width: 1280px;
    margin: 16px auto 56px;
    border-radius: 32px;
    background: linear-gradient(135deg, #ec6f64 0%, #c83a32 100%);
    color: #fff;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 340px;
}

/* decor inside promo-image so circles cluster behind the girl */
.image-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.image-decor .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(0.5px);
}

.image-decor .shape-1 {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at 35% 35%, #f7c8b8 0%, #f4a08e 70%, rgba(244, 160, 142, 0) 100%);
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.image-decor .shape-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at 30% 30%, #fbd970 0%, #f49152 60%, rgba(244, 145, 82, 0) 100%);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.image-decor .shape-3 {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at 35% 35%, #f9bcaa 0%, #f08570 70%, rgba(240, 133, 112, 0) 100%);
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.promo-curve {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.promo-content {
    padding: 48px 24px 48px 56px;
    position: relative;
    z-index: 2;
}

.promo-eyebrow {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
    display: inline-block;
    letter-spacing: 0.01em;
}

.promo-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.15;
    margin: 0 0 16px;
    color: #fff;
    letter-spacing: -0.015em;
}

.promo-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 28px;
    line-height: 1.55;
    max-width: 520px;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--bg-deep);
    padding: 8px 8px 8px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.promo-cta:hover {
    transform: translateY(-2px);
    background: #fde9e7;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.promo-cta .cta-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-deep);
    color: #fff;
    display: inline-grid;
    place-items: center;
    transition: transform 0.2s ease;
    flex: none;
}

.promo-cta .cta-arrow svg {
    width: 14px;
    height: 14px;
}

.promo-cta:hover .cta-arrow {
    transform: translateX(2px);
}

.promo-image {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.promo-image img {
    max-height: 400px;
    width: auto;
    position: relative;
    z-index: 2;
    display: block;
}

.promo-reactions { z-index: 5; }

.promo-reactions {
    position: absolute;
    left: 16px;
    bottom: 60px;
    z-index: 5;
}

.wow-bubble {
    background: #1a1a1a;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 4px 12px;
    border-radius: 12px;
    margin-left: 38px;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.wow-bubble::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #1a1a1a;
}

.reactions-row {
    display: flex;
    gap: 4px;
    align-items: center;
}

.reaction {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
    flex: none;
}

.reaction svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
    stroke: currentColor;
}

.reaction-thumb { color: #1877f2; }
.reaction-wow { color: #f7b125; }
.reaction-heart { color: #f33e58; }

@media (max-width: 900px) {
    .promo-banner {
        grid-template-columns: 1fr;
        margin: 12px 12px 40px;
        border-radius: 24px;
        min-height: 0;
    }
    .promo-content {
        padding: 32px 28px 24px;
        text-align: center;
    }
    .promo-sub { margin-left: auto; margin-right: auto; }
    .promo-image {
        align-items: flex-end;
        justify-content: center;
        min-height: 460px;
    }
    .promo-image img {
        max-height: 500px;
    }
    .promo-reactions {
        left: 16px;
        bottom: 24px;
    }
    .image-decor .shape-1 { width: 110px; height: 110px; left: 12px; top: auto; bottom: 30px; transform: none; }
    .image-decor .shape-2 { width: 320px; height: 320px; top: auto; bottom: -60px; transform: translateX(-50%); }
    .image-decor .shape-3 { width: 110px; height: 110px; right: 12px; top: auto; bottom: 30px; transform: none; }
}

@media (max-width: 540px) {
    .promo-banner { margin: 12px 6px 32px; border-radius: 20px; }
    .promo-content { padding: 26px 20px 18px; }
    .promo-title { font-size: 21px; }
    .promo-sub { font-size: 13.5px; margin-bottom: 22px; }
    .promo-cta { padding: 7px 7px 7px 22px; font-size: 14px; }
    .promo-cta .cta-arrow { width: 28px; height: 28px; font-size: 12px; }
    .promo-image { min-height: 440px; }
    .promo-image img { max-height: 470px; }
    .reaction { width: 30px; height: 30px; }
    .reaction svg { width: 14px; height: 14px; }
    .wow-bubble { font-size: 9px; padding: 3px 10px; margin-left: 30px; }
    .image-decor .shape-1 { width: 90px; height: 90px; bottom: 30px; }
    .image-decor .shape-2 { width: 280px; height: 280px; bottom: -50px; }
    .image-decor .shape-3 { width: 90px; height: 90px; bottom: 30px; }
    .card-badge { font-size: 11px; padding: 4px 11px; top: 10px; }
    .card-badge.top-right { right: 10px; }
    .card-badge.top-left { left: 10px; }
    .card-info h3 { font-size: 16px; }
    .card-info p { font-size: 11px; }
    .card-rate { font-size: 15px; margin-bottom: 8px; }
    .card-book { padding: 6px 14px; font-size: 11px; }
}


/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */
.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec6f64, #d94a42);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(217, 74, 66, 0.35);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(0.9);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, box-shadow 0.2s;
    z-index: 60;
}
.scroll-top:hover {
    transform: translateY(-2px) scale(1);
    box-shadow: 0 14px 32px rgba(217, 74, 66, 0.5);
}
.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.scroll-top svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2.4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
body.has-mobile-cta .scroll-top { bottom: 96px; }
@media (max-width: 720px) {
    .scroll-top { right: 16px; bottom: 88px; width: 44px; height: 44px; }
    body.has-mobile-cta .scroll-top { bottom: 100px; }
}

/* ============================================================
   FEATURED CONTENT ROW (homepage Erotic Fun section)
   ============================================================ */
.content-row--feature {
    position: relative;
    padding: 80px 32px;
    margin: 80px auto 64px;
    border-radius: 32px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 8% 12%, rgba(249, 115, 146, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 92% 88%, rgba(236, 111, 100, 0.10) 0%, transparent 55%),
        linear-gradient(180deg, #fdf6f4 0%, #fef0f1 100%);
    isolation: isolate;
}

.cr-feature__bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}
.cr-feature__bg--1 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(249, 115, 146, 0.32), transparent 70%);
    top: -90px; left: -90px;
}
.cr-feature__bg--2 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(236, 111, 100, 0.28), transparent 70%);
    bottom: -80px; right: -80px;
}

.cr-feature__sparkle,
.cr-feature__heart {
    position: absolute;
    color: #f97392;
    pointer-events: none;
    z-index: 1;
    opacity: 0.55;
}
.cr-feature__sparkle--1 {
    width: 28px; height: 28px;
    top: 56px; right: 18%;
    animation: featTwinkle 3s ease-in-out infinite;
}
.cr-feature__sparkle--2 {
    width: 20px; height: 20px;
    bottom: 70px; left: 46%;
    animation: featTwinkle 4s ease-in-out infinite 1s;
    color: #c54343;
}
.cr-feature__heart {
    width: 22px; height: 22px;
    top: 35%; left: 47%;
    color: #ec6f64;
    opacity: 0.4;
    animation: featFloat 5s ease-in-out infinite;
}
@keyframes featTwinkle {
    0%, 100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.95; transform: scale(1.2) rotate(180deg); }
}
@keyframes featFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.cr-feature__image {
    position: relative;
    z-index: 2;
    padding: 22px;
}
.cr-feature__frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    transform: rotate(-1.2deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow:
        0 25px 60px rgba(58, 24, 32, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.85),
        0 0 0 8px rgba(249, 115, 146, 0.12),
        0 0 0 9px rgba(249, 115, 146, 0.05);
}
.cr-feature__frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.6s ease;
}
.content-row--feature:hover .cr-feature__frame {
    transform: rotate(0deg) translateY(-4px);
    box-shadow:
        0 35px 80px rgba(58, 24, 32, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        0 0 0 10px rgba(249, 115, 146, 0.18),
        0 0 0 11px rgba(249, 115, 146, 0.08);
}
.content-row--feature:hover .cr-feature__frame img {
    transform: scale(1.04);
}

.cr-feature__shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.0) 45%,
        rgba(255, 255, 255, 0.18) 50%,
        rgba(255, 255, 255, 0.0) 55%,
        transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}
.content-row--feature:hover .cr-feature__shine {
    transform: translateX(100%);
}

.cr-feature__corner {
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2.5px solid #c9a55e;
    z-index: 3;
    pointer-events: none;
}
.cr-feature__corner--tl { top: 6px; left: 6px; border-right: none; border-bottom: none; border-radius: 6px 0 0 0; }
.cr-feature__corner--tr { top: 6px; right: 6px; border-left: none; border-bottom: none; border-radius: 0 6px 0 0; }
.cr-feature__corner--bl { bottom: 6px; left: 6px; border-right: none; border-top: none; border-radius: 0 0 0 6px; }
.cr-feature__corner--br { bottom: 6px; right: 6px; border-left: none; border-top: none; border-radius: 0 0 6px 0; }

.cr-feature__image .content-row__tag {
    top: -4px;
    left: -8px;
    font-size: 34px;
    z-index: 4;
    color: #c54343;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.7);
}

.cr-feature__sticker {
    position: absolute;
    bottom: 8px; right: 0;
    background: linear-gradient(135deg, #ec6f64, #d94a42);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px 9px 14px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow:
        0 10px 28px rgba(217, 74, 66, 0.45),
        0 0 0 3px rgba(255, 255, 255, 0.95);
    z-index: 5;
    transform: rotate(-3deg);
}
.cr-feature__sticker svg {
    width: 14px; height: 14px;
    color: #ffd966;
}

.cr-feature__text { position: relative; z-index: 2; }

.cr-feature__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #c54343;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
}
.cr-feature__eyebrow-line {
    width: 36px;
    height: 2px;
    background: linear-gradient(to right, #c54343, transparent);
    border-radius: 2px;
}

.cr-feature__title {
    margin-bottom: 10px !important;
    color: #2a1118 !important;
}

.cr-feature__underline {
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, #ec6f64 0%, #f97392 100%);
    border-radius: 4px;
    margin: 0 0 22px;
    position: relative;
    overflow: hidden;
}
.cr-feature__underline::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: translateX(-100%);
    animation: featSweep 3s ease-in-out infinite;
}
@keyframes featSweep {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.cr-feature__body p:first-of-type::first-letter {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    font-weight: 700;
    float: left;
    line-height: 0.85;
    margin: 6px 10px 0 0;
    color: #c54343;
    background: linear-gradient(135deg, #ec6f64, #d94a42);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cr-feature__body p {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #4a3a3d !important;
    margin: 0 0 18px !important;
}
.cr-feature__body p:last-child {
    margin-bottom: 0 !important;
    padding-left: 18px;
    border-left: 3px solid rgba(249, 115, 146, 0.4);
}
.cr-feature__body a {
    color: #c54343 !important;
    font-weight: 700 !important;
    border-bottom: 2px solid #f97392 !important;
    text-decoration: none !important;
    padding-bottom: 1px;
    transition: all 0.2s ease;
}
.cr-feature__body a:hover {
    color: #d94a42 !important;
    border-bottom-color: #c54343 !important;
}

@media (max-width: 1024px) {
    .content-row--feature {
        padding: 64px 28px !important;
        margin: 56px auto 48px !important;
        gap: 48px !important;
    }
    .cr-feature__sparkle--1 { right: 8%; top: 36px; }
    .cr-feature__sparkle--2 { left: 8%; bottom: 40px; }
    .cr-feature__heart { display: none; }
}

@media (max-width: 900px) {
    .content-row--feature {
        padding: 56px 24px !important;
        margin: 48px 16px !important;
        gap: 36px !important;
    }
    .content-row--feature .cr-feature__image { order: 0; }
}

@media (max-width: 720px) {
    .content-row--feature {
        padding: 48px 18px !important;
        margin: 36px 14px 32px !important;
        border-radius: 24px;
        gap: 36px !important;
    }
    .cr-feature__bg--1 { width: 220px; height: 220px; top: -60px; left: -60px; }
    .cr-feature__bg--2 { width: 220px; height: 220px; bottom: -60px; right: -60px; }
    .cr-feature__sparkle--1 { width: 22px; height: 22px; top: 26px; right: 14px; }
    .cr-feature__sparkle--2 { width: 16px; height: 16px; bottom: 24px; left: 14px; }
    .cr-feature__image { padding: 14px; }
    .cr-feature__frame { transform: rotate(0deg); }
    .cr-feature__corner { width: 22px; height: 22px; }
    .cr-feature__image .content-row__tag {
        font-size: 26px;
        top: -6px;
        left: -4px;
    }
    .cr-feature__sticker {
        padding: 7px 13px;
        font-size: 12px;
    }
    .cr-feature__title { font-size: 30px !important; }
    .cr-feature__body p { font-size: 15px !important; line-height: 1.7 !important; }
    .cr-feature__body p:first-of-type::first-letter {
        font-size: 46px;
        margin: 4px 8px 0 0;
    }
    .cr-feature__body p:last-child { padding-left: 14px; }
}
