/* Mobile-first theme: Navy + Gold (clean and premium) */

:root {
    --navy: #1E3A8A;
    --gold: #FBBF24;
    --bg: #F9FAFB;
    --card: #FFFFFF;
    --text: #111827;
    --muted: #6B7280;
    --shadow: 0 10px 30px rgba(16, 24, 40, 0.12);
    --max-width: 1100px;
    --radius: 12px;
    --gap: 12px;
}


/* Reset / base */

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0
}

body {
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column
}


/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: linear-gradient(90deg, var(--navy), #2646b0);
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff
}

.brand-logo {
    height: 44px;
    width: auto;
    border-radius: 8px
}

.brand-title {
    font-weight: 700;
    color: var(--gold)
}

.brand-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85)
}

.nav-desktop ul {
    display: flex;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-desktop a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px
}

.nav-desktop a:hover {
    background: rgba(255, 255, 255, 0.06)
}

.nav-cta {
    background: var(--gold);
    color: #0f172a;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 700
}

.hamburger {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 20px;
    padding: 8px;
    cursor: pointer
}

.mobile-nav {
    background: linear-gradient(90deg, var(--navy), #1f3980);
    padding: 8px 12px
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.mobile-nav a {
    display: block;
    color: var(--card);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03)
}


/* HERO (compact) */

.hero {
    padding: 14px
}

.hero-inner {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between
}

.hero-text {
    flex: 1
}

.hero-media {
    width: 140px;
    min-width: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.hero-media video,
.hero-media img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block
}

.hero h1 {
    font-size: 20px;
    color: var(--navy);
    margin: 0 0 6px
}

.hero-lead {
    color: var(--muted);
    margin: 0 0 10px
}

.hero-ctas {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.btn {
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    border: 0;
    cursor: pointer
}

.btn-primary {
    background: var(--navy);
    color: var(--card)
}

.btn-ghost {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy)
}

.hero-filter {
    margin-top: 10px
}

.filter-label {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 6px
}

.filter-row {
    display: flex;
    gap: 8px
}

.select {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(16, 24, 40, 0.06);
    background: var(--card);
    color: var(--text)
}


/* Highlight rotate */

.feature-rotate {
    padding: 12px
}

.highlight-card {
    background: linear-gradient(90deg, rgba(31, 57, 128, 0.04), rgba(251, 191, 36, 0.03));
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
    color: var(--navy);
    font-weight: 700
}


/* Sections */

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0 12px
}

.section-title {
    font-size: 16px;
    color: var(--navy);
    font-weight: 800
}

.small-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px
}


/* Cities grid */

.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}

.city-card {
    background: var(--card);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow)
}

.city-card img {
    width: 100%;
    height: 100px;
    object-fit: cover
}

.city-name {
    padding: 8px 10px;
    font-weight: 700;
    color: var(--navy);
    font-size: 14px
}


/* Chips */

.chips-row {
    display: flex;
    gap: 8px;
    overflow: auto;
    padding-bottom: 6px
}

.chip {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--card);
    border: 1px solid rgba(16, 24, 40, 0.04);
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    font-size: 13px
}


/* Profiles grid */

.profiles-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}

.profile-card {
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .15s, box-shadow .15s
}

.profile-card:hover {
    transform: translateY(-6px)
}

.profile-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* or remove object-fit entirely */
    border-radius: 12px;
}

.profile-body {
    padding: 10px
}

.profile-name {
    font-size: 15px;
    color: var(--navy);
    font-weight: 800;
    margin: 0 0 6px
}

.profile-city {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px
}

.profile-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.tag {
    font-size: 11px;
    padding: 6px 8px;
    border-radius: 999px;
    color: #0f172a;
    font-weight: 800
}

.tag.vip {
    background: var(--gold)
}

.tag.hot {
    background: var(--navy);
    color: #fff
}

.tag.new {
    background: #a3d9ff
}


/* Load more */

.load-more-wrap {
    text-align: center;
    margin: 14px 0
}


/* Trending horizontal */

.horizontal-scroll {
    display: flex;
    gap: 10px;
    overflow: auto;
    padding-bottom: 8px
}

.trend-card {
    min-width: 150px;
    background: var(--card);
    border-radius: 10px;
    padding: 8px;
    box-shadow: var(--shadow)
}

.trend-card img {
    width: 100%;
    height: 88px;
    object-fit: cover;
    border-radius: 8px
}

.trend-title {
    font-size: 13px;
    color: var(--navy);
    font-weight: 800;
    margin-top: 8px
}


/* Blog cards */

.blog-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px
}

.blog-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--card)
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover
}

.blog-body {
    padding: 12px
}

.blog-card h3 {
    font-size: 15px;
    color: var(--navy);
    margin: 0 0 8px
}

.blog-card .excerpt {
    color: var(--muted);
    font-size: 14px
}

.card-gold {
    border-left: 4px solid var(--gold)
}

.card-blue {
    border-left: 4px solid var(--navy)
}

.card-muted {
    border-left: 4px solid rgba(16, 24, 40, 0.06)
}


/* Content / article */

.content-section {
    padding: 16px
}

.content-container {
    background: var(--card);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow);
    border-top: 6px solid var(--gold);
    max-width: 960px;
    margin: 0 auto
}

.content-title {
    font-size: 20px;
    color: var(--navy);
    margin: 0 0 8px
}

.content-sub {
    color: var(--muted);
    margin: 0 0 12px
}

.content-article p {
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 12px
}

.content-article h3 {
    color: var(--navy);
    margin-top: 16px;
    margin-bottom: 8px
}


/* Join section */

.join-section {
    padding: 18px
}

.join-inner {
    text-align: center
}

.lead {
    color: var(--muted)
}


/* Footer */

.site-footer {
    background: #0F172A;
    color: var(--card);
    padding: 18px;
    margin-top: 18px;
    border-top: 4px solid rgba(251, 191, 36, 0.06)
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px
}

.footer-section {
    background: transparent;
    border-radius: 8px;
    padding: 8px
}

.footer-section h4 {
    color: var(--gold);
    margin: 0 0 8px
}

.footer-section a {
    display: block;
    color: var(--card);
    text-decoration: none;
    margin: 6px 0
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75)
}


/* Responsive for larger screens */

@media(min-width:780px) {
    .nav-desktop {
        display: block
    }
    .hamburger {
        display: none
    }
    .mobile-nav {
        display: none
    }
    .hero-inner {
        align-items: center
    }
    .hero-media video,
    .hero-media img {
        height: 160px
    }
    .cities-grid {
        grid-template-columns: repeat(4, 1fr)
    }
    .profiles-container {
        grid-template-columns: repeat(3, 1fr)
    }
    .blog-cards {
        grid-template-columns: repeat(3, 1fr)
    }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}


/* Mobile specifics: compact hero */

@media(max-width:779px) {
    .hero-media video {
        display: none
    }
    .hero-media img {
        display: block;
        height: 120px;
        object-fit: cover
    }
    .hero h1 {
        font-size: 18px
    }
    .hero-lead {
        font-size: 13px
    }
    .select {
        font-size: 14px
    }
}


/* utilities */

.hidden {
    display: none
}

.text-center {
    text-align: center
}

.muted {
    color: var(--muted)
}


/* === VIDEO SECTION STYLES === */

.video-section {
    margin-top: 40px;
    text-align: center;
}

.video-title {
    color: #ff4da6;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    padding: 0 10px;
}

.video-card {
    background: #1c1c1c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: scale(1.02);
}

.video-wrapper {
    position: relative;
}

.video-card video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: contain;
    /* shows full video without cropping */
    background-color: #000;
    /* fills any empty area */
    border-radius: 12px;
    border-bottom: 2px solid #ff4da6;
}

.sound-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.sound-btn:hover {
    background: rgba(255, 77, 166, 0.7);
}

.video-desc {
    color: #ddd;
    font-size: 0.9rem;
    padding: 8px 10px;
}


/* Responsive optimization for small screens */

@media (max-width: 600px) {
    .video-title {
        font-size: 1.2rem;
    }
    .sound-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}


/* 🎬 Overlay title */

.video-overlay-title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 0.9rem;
    padding: 6px 10px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s, transform 0.4s;
    z-index: 2;
}


/* show when video is playing */

.video-wrapper.playing .video-overlay-title {
    opacity: 1;
    transform: translateY(0);
}


/* 🌈 Animated sound button */

.sound-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.sound-btn:hover {
    background: rgba(255, 77, 166, 0.7);
}

.sound-btn.active {
    background: #ff4da6;
    transform: scale(1.2);
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 166, 0.5);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 77, 166, 0);
    }
}


/* Mobile profile images - responsive and uniform */

@media(max-width: 779px) {
    .profile-card img {
        width: 100%;
        /* fill the card width */
        height: auto;
        /* height adjusts automatically */
        aspect-ratio: 1 / 1;
        /* makes the image square */
        object-fit: cover;
        /* fills the square without stretching */
        border-radius: 12px;
        /* matches card corners */
    }
    .profiles-container {
        grid-template-columns: repeat(2, 1fr);
        /* two columns on mobile */
        gap: 10px;
    }
}

.small-content-image {
    width: 150px;
    height: auto;
    display: block;
    margin: 8px 0;
    border-radius: 4px;
}

.image-text-row {
    display: flex;
    gap: 12px;
    /* space between image and text */
    align-items: flex-start;
    /* top-align image and text */
    margin: 12px 0;
}

.small-content-image {
    width: 120px;
    /* small, visible size */
    height: auto;
    border-radius: 4px;
    flex-shrink: 0;
    /* prevents image from shrinking */
}

.image-text-content {
    flex: 1;
    /* text takes remaining space */
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
}

.content-container a {
    color: var(--gold);
    /* makes the link gold */
    text-decoration: underline;
    /* optional: adds underline for visibility */
    font-weight: 600;
    /* optional: slightly bolder */
    transition: color 0.3s;
}

.content-container a:hover {
    color: var(--navy);
    /* color changes on hover */
}

.content-article a {
    color: #FBBF24;
    /* gold for normal state */
    text-decoration: underline;
    transition: color 0.3s;
}

.content-article a:hover {
    color: #1E3A8A;
    /* deep navy on hover */
}

.hand-links-container {
    max-width: 500px;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
}

.hand-links-container .hand {
    margin-right: 6px;
    font-size: 1.2rem;
    vertical-align: middle;
}

.hand-links-container a {
    color: #ff4da6;
    text-decoration: none;
    font-weight: 600;
}

.hand-links-container a:hover {
    text-decoration: underline;
    color: #ff1a8c;
}


/* ========================================
   FILTER + LOADER - MATCHES YOUR NAVY/GOLD THEME
   ======================================= */


/* FILTER BAR - Navy gradient */

.filter-bar {
    background: linear-gradient(135deg, var(--navy), #2646b0);
    padding: 20px 25px;
    border-radius: var(--radius);
    margin: 25px 0;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.filter-bar label {
    font-weight: 700;
    color: var(--gold);
    margin-right: 15px;
    font-size: 15px;
    display: block;
    margin-bottom: 8px;
}

#city-filter {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy);
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.15);
    transition: all 0.3s ease;
}

#city-filter:focus {
    outline: none;
    background: white;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    transform: translateY(-2px);
}


/* LOADER CONTAINER */

#profile-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--navy), rgba(251, 191, 36, 0.1));
    border-radius: var(--radius);
    margin: 30px 0;
    min-height: 180px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
}

.spinner {
    width: 56px;
    height: 56px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#loader-message {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#loader-count {
    color: var(--gold);
    font-size: 28px;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}


/* PROFILES WRAPPER */

.profiles-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gap);
}


/* LOAD MORE BUTTON */

.load-more-section {
    text-align: center;
    margin: 40px 0;
}

#load-more-btn {
    background: linear-gradient(135deg, var(--navy), #2646b0);
    color: white;
    border: none;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#load-more-btn:hover {
    background: linear-gradient(135deg, var(--gold), #f59e0b);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .filter-bar {
        margin: 20px 10px;
        padding: 18px 20px;
    }
    .filter-bar label {
        font-size: 14px;
    }
    #profile-loader {
        margin: 25px 10px;
        padding: 40px 20px;
    }
    #loader-count {
        font-size: 24px;
    }
}


/* HIDE PROFILES UNTIL LOADED */

#profiles-container {
    display: none;
}


/* ==================================
ESCORT CARDS
================================== */

.escort-section {
    margin-top: 40px;
}

.escort-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: 0.3s;
}

.escort-card:hover {
    transform: translateY(-4px);
}

.escort-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.escort-image-wrap {
    position: relative;
}

.escort-image-wrap img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}


/* VIDEO ICON */

.video-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 3;
}


/* VIP BADGE */

.escort-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient( 135deg, #FBBF24, #f59e0b);
    color: #111827;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    z-index: 3;
}


/* INFO */

.escort-info {
    padding: 12px;
}

.escort-info h3 {
    margin: 0;
    color: var(--navy);
    font-size: 16px;
}

.escort-info p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
}


/* CALL BUTTON */

.call-btn {
    display: block;
    margin: 0 12px 12px;
    background: linear-gradient( 135deg, var(--navy), #2646b0);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.call-btn:hover {
    background: linear-gradient( 135deg, var(--gold), #f59e0b);
    color: var(--navy);
}


/*SEO CONTENT */


/* =================================
SEO CONTENT
================================= */

.seo-content-section {
    padding: 20px;
}


/* GRID */

.seo-content-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
}


/* CARD */

.seo-content-card {
    background: white;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}


/* TITLE */

.seo-content-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--navy);
    line-height: 1.4;
}


/* TEXT */

.seo-content-card p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.8;
}


/* DESKTOP */

@media(min-width:768px) {
    .seo-content-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =================================
HOMEPAGE DYNAMIC SECTIONS
================================= */

.homepage-section {
    padding: 24px 20px;
}


/* SECTION HEAD */

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-head h2 {
    margin: 0;
    color: var(--navy);
}

.section-head a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}


/* =================================
VIDEO GRID
================================= */


/* =========================
VIDEO GRID
========================= */

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}


/* =========================
VIDEO CARD
========================= */

.video-card {
    background: #111827;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
    display: block;
}

.video-card:hover {
    transform: translateY(-3px);
}


/* =========================
VIDEO
========================= */

.video-card video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: black;
}


/* =========================
VIDEO INFO
========================= */

.video-info {
    padding: 14px;
}

.video-info h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.4;
    color: white;
}

.video-info p {
    margin: 0;
    font-size: 14px;
    color: #9ca3af;
}


/* ESCORT CARD */

.escort-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}


/* IMAGE */

.escort-image-wrap {
    position: relative;
}

.escort-image-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}


/* VIDEO ICON */

.video-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--navy);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.7);
}


/* INFO */

.escort-info {
    padding: 14px;
}

.escort-info h3 {
    margin-top: 0;
    margin-bottom: 6px;
    color: var(--navy);
}

.escort-info p {
    color: var(--muted);
}


/* CALL BUTTON */

.call-btn {
    display: block;
    text-align: center;
    background: var(--gold);
    color: white;
    padding: 12px;
    text-decoration: none;
    font-weight: 700;
}


/* =================================
BLOGS
================================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
}


/* BLOG CARD */

.blog-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}


/* IMAGE */

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}


/* BODY */

.blog-body {
    padding: 18px;
}


/* CATEGORY */

.blog-category {
    display: inline-block;
    margin-bottom: 10px;
    background: rgba(251, 191, 36, 0.15);
    color: var(--navy);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}


/* =================================
SEO CONTENT
================================= */

.seo-content-section {
    padding: 24px 20px;
}


/* GRID */

.seo-content-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
}


/* CARD */

.seo-content-card {
    background: white;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.seo-content-card h3 {
    margin-top: 0;
    color: var(--navy);
}

.seo-content-card p {
    color: var(--muted);
    line-height: 1.7;
}


/* =================================
DESKTOP
================================= */

@media(min-width:768px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .profiles-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .seo-content-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =====================================
   FIX HORIZONTAL SCROLLING
===================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

*,
*::before,
*::after {
    max-width: 100%;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-wrap,
.hero,
.hero-inner,
.homepage-section,
.content-section,
.content-container,
.profiles-wrapper,
.video-grid,
.blog-grid,
.seo-content-grid {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


/* Fix flex items causing overflow */

.hero-text,
.profile-card,
.blog-card,
.video-card,
.seo-content-card {
    min-width: 0;
}


/* Keep chips scrolling inside container only */

.chips-row {
    overflow-x: auto;
    overflow-y: hidden;
}


/* Keep horizontal cards scrolling inside container only */

.horizontal-scroll {
    overflow-x: auto;
    overflow-y: hidden;
}