/* ============================================================
   frontend/static/css/public/home.css
   NAIROBI ESCORT
   PUBLIC HOME
   ============================================================ */



/* ============================================================
   SEO NAVIGATION
   ============================================================ */
.seo-navigation {
    width: var(--header-width);
    max-width: none;
    margin: 10px auto 24px;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        0 4px 18px rgba(15, 23, 42, 0.035);
    box-sizing: border-box;
    animation: home-fade-up 0.55s ease both;
}

/* ============================================================
   SEO NAVIGATION LINKS
   ============================================================ */

.seo-navigation a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
    transition:
        color var(--transition-fast),
        background-color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.seo-navigation a:hover {
    color: var(--color-primary-dark);
    background: var(--color-primary-soft);
    transform: translateY(-1px);
}

.seo-navigation a:active {
    transform: translateY(0);
}

.seo-navigation a:first-child {
    color: var(--color-primary-dark);
    background: var(--color-primary-soft);
    font-weight: var(--font-weight-bold);
}


/* ============================================================
   SEO NAVIGATION ACTIVE INDICATOR
   ============================================================ */

.seo-navigation a:first-child::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 18px;
    height: 2px;
    border-radius: var(--radius-pill);
    background: var(--color-primary);
    transform: translateX(-50%);
}


/* ============================================================
   SEO NAVIGATION FOCUS
   ============================================================ */

.seo-navigation a:focus-visible {
    outline: var(--focus-width) solid var(--focus-color);
    outline-offset: 2px;
}


/* ============================================================
   HOME LAYOUT
   ============================================================ */
.profiles-section {
    width: var(--header-width);
    max-width: none;
    margin: 0 auto;
    box-sizing: border-box;
}
/* ============================================================
   SECTION HEADER
   ============================================================ */

.profiles-section > .section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
    animation: home-fade-up 0.6s 0.04s ease both;
}

.profiles-section > .section-heading > div {
    min-width: 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-text-subtle);
    font-size: 10px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.16em;
    line-height: 1;
}

.section-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.10);
}

.profiles-section .section-heading h2 {
    margin: 7px 0 0;
    color: var(--color-text);
    font-size: 26px;
    font-weight: var(--font-weight-bold);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.profile-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    background: var(--color-surface);
    color: var(--color-text-muted);
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04);
}


/* ============================================================
   FILTER PANEL
   ============================================================ */

.escort-filters {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 24px;
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(248, 250, 252, 0.96)
        );
    box-shadow:
        0 6px 24px rgba(15, 23, 42, 0.045);
    box-sizing: border-box;
    animation: home-fade-up 0.65s 0.08s ease both;
}


/* ============================================================
   FILTER GROUP
   ============================================================ */

.filter-group {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
}

.filter-label {
    flex: 0 0 100px;
    padding-top: 7px;
    color: var(--color-text-muted);
    font-size: 10px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
}


/* ============================================================
   FILTER BUTTON
   ============================================================ */

.filter-option {
    position: relative;
    display: inline-flex;
    min-width: 0;
    cursor: pointer;
}

.filter-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.filter-option span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 31px;
    max-width: 100%;
    padding: 5px 11px;
    border: 1px solid var(--color-border-input);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    color: var(--color-text-muted);
    font-size: 10px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    transition:
        color var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        transform var(--transition-fast);
}

.filter-option:hover span {
    border-color: rgba(37, 99, 235, 0.35);
    background: var(--color-primary-soft);
    color: var(--color-primary-dark);
    transform: translateY(-1px);
}

.filter-option:active span {
    transform: translateY(0);
}

.filter-option input:checked + span {
    border-color: var(--color-primary);
    background:
        linear-gradient(
            135deg,
            var(--color-primary),
            var(--color-primary-dark)
        );
    color: #fff;
    box-shadow:
        0 4px 12px rgba(37, 99, 235, 0.20);
}

.filter-option input:focus-visible + span {
    outline: var(--focus-width) solid var(--focus-color);
    outline-offset: 2px;
}


/* ============================================================
   SEXUAL ORIENTATION SELECT
   ============================================================ */

.filter-group select {
    min-width: 200px;
    min-height: 31px;
    padding: 5px 32px 5px 10px;
    border: 1px solid var(--color-border-input);
    border-radius: var(--radius-sm);
    background-color: var(--color-surface);
    color: var(--color-text-muted);
    font: inherit;
    font-size: 10px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    cursor: pointer;
    box-sizing: border-box;
    outline: none;
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.filter-group select:hover {
    border-color: rgba(37, 99, 235, 0.35);
    color: var(--color-text);
}

.filter-group select:focus {
    border-color: var(--color-primary);
    color: var(--color-text);
    box-shadow:
        0 0 0 var(--focus-width) var(--focus-color);
}


/* ============================================================
   PROFILE GRID
   ============================================================ */

.escort-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
    align-items: start;
}

/* ============================================================
   INFINITE PAGINATION SENTINEL
   ============================================================ */

.escort-grid {
    position: relative;
}

#escort-load-sentinel {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    z-index: -1;
}

/* ============================================================
   PROFILE CARD
   ============================================================ */

.escort-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-sizing: border-box;
    box-shadow:
        0 4px 14px rgba(15, 23, 42, 0.035);
    transform: translateY(0);
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s ease,
        border-color 0.28s ease;
    animation: profile-card-enter 0.55s ease both;
}

.escort-card:nth-child(2) {
    animation-delay: 0.04s;
}

.escort-card:nth-child(3) {
    animation-delay: 0.08s;
}

.escort-card:nth-child(4) {
    animation-delay: 0.12s;
}

.escort-card:nth-child(5) {
    animation-delay: 0.16s;
}

.escort-card:nth-child(6) {
    animation-delay: 0.20s;
}

.escort-card:nth-child(7) {
    animation-delay: 0.24s;
}

.escort-card:nth-child(8) {
    animation-delay: 0.28s;
}

.escort-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.16);
    box-shadow:
        0 15px 34px rgba(15, 23, 42, 0.10);
}


/* ============================================================
   IMAGE WRAPPER
   ============================================================ */

.escort-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--color-surface-soft);
}


/* ============================================================
   IMAGE LINK
   ============================================================ */

.escort-image-link {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 4.8;
    overflow: hidden;
    background: var(--color-surface-soft);
}

.escort-image-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02) 40%,
            rgba(0, 0, 0, 0.14)
        );
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.escort-card:hover .escort-image-link::after {
    opacity: 1;
}


/* ============================================================
   MAIN IMAGE
   ============================================================ */

.escort-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.4s ease;
}

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


/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */

.escort-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 260px;
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(37, 99, 235, 0.08),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            #f5f7fa,
            #e9edf2
        );
}

.escort-image-placeholder::before {
    content: "EW";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    font-size: 15px;
    font-weight: var(--font-weight-extrabold);
    letter-spacing: 0.08em;
    box-shadow:
        0 8px 24px rgba(15, 23, 42, 0.08);
}


/* ============================================================
   CARD BODY
   ============================================================ */

.escort-card-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 13px;
}


/* ============================================================
   NAME + AGE
   ============================================================ */

.escort-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.escort-card-title h3 {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: var(--color-text);
    font-size: 15px;
    font-weight: var(--font-weight-bold);
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.escort-card-title > span {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 26px;
    padding: 0 7px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xs);
    background: var(--color-surface-soft);
    color: var(--color-text-muted);
    font-size: 10px;
    font-weight: var(--font-weight-bold);
    box-sizing: border-box;
}


/* ============================================================
   LOCATION
   ============================================================ */

.escort-card-location {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    min-width: 0;
    margin-top: 6px;
}

.escort-card-location span {
    max-width: 100%;
    color: var(--color-text-subtle);
    font-size: 10px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.escort-card-location span:not(:last-child)::after {
    content: "·";
    margin-left: 4px;
    color: var(--color-text-disabled);
}


/* ============================================================
   SERVICES
   ============================================================ */

.escort-services {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    min-width: 0;
    margin-top: 10px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 24px;
    padding: 4px 8px;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xs);
    background: var(--color-surface-soft);
    color: var(--color-text-muted);
    font-size: 9px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.15;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    transition:
        border-color var(--transition-fast),
        background-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.escort-card:hover .service-tag {
    border-color: rgba(37, 99, 235, 0.12);
}

.service-tag:hover {
    background: var(--color-primary-soft);
    color: var(--color-primary-dark);
    transform: translateY(-1px);
}


/* ============================================================
   PHONE
   ============================================================ */

.escort-phone {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--color-border-light);
}

.phone-number {
    display: block;
    min-width: 0;
    color: var(--color-text);
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition:
        color var(--transition-fast);
}

.phone-number:hover {
    color: var(--color-primary);
    text-decoration: underline;
}


/* ============================================================
   PHONE ACTIONS
   ============================================================ */

.phone-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    min-width: 0;
}

.phone-action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 31px;
    padding: 5px 6px;
    border: 1px solid var(--color-border-input);
    border-radius: var(--radius-xs);
    background: var(--color-surface);
    color: var(--color-text-muted);
    font: inherit;
    font-size: 9px;
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    transition:
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.phone-action:hover {
    border-color: rgba(37, 99, 235, 0.25);
    background: var(--color-primary-soft);
    color: var(--color-primary-dark);
    transform: translateY(-1px);
}

.phone-action:active {
    transform: translateY(0);
}

.phone-action:focus-visible {
    outline: var(--focus-width) solid var(--focus-color);
    outline-offset: 2px;
}

.phone-action.copied {
    border-color: var(--color-success);
    background: var(--color-success);
    color: #fff;
    box-shadow:
        0 5px 14px rgba(22, 163, 74, 0.20);
}


/* ============================================================
   MEDIA COUNTS
   ============================================================ */

.escort-media-counts {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    margin-top: 11px;
}

.escort-media-counts span {
    min-width: 0;
    color: var(--color-text-subtle);
    font-size: 9px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.escort-media-counts span + span::before {
    content: "·";
    margin-right: 9px;
    color: var(--color-text-disabled);
}


/* ============================================================
   PROFILE BUTTON
   ============================================================ */

.escort-card-body > .btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 39px;
    margin-top: 12px;
    border-radius: var(--radius-sm);
    box-sizing: border-box;
    overflow: hidden;
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.escort-card-body > .btn:hover {
    transform: translateY(-1px);
}

.escort-card-body > .btn:active {
    transform: translateY(0);
}


/* ============================================================
   BUTTON SHINE
   ============================================================ */

.escort-card-body > .btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.22),
            transparent
        );
    transform: skewX(-20deg);
    pointer-events: none;
}

.escort-card:hover .escort-card-body > .btn::after {
    animation: button-shine 0.8s ease;
}


/* ============================================================
   VIP TAG
   ============================================================ */

.escort-vip-tag {
    position:absolute;
    top:11px;
    right:11px;
    z-index:5;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:27px;
    padding:0 11px;
    border:1px solid var(--color-vip-border);
    border-radius:var(--radius-pill);
    background:
        linear-gradient(
            135deg,
            var(--color-vip),
            var(--color-vip-dark)
        );
    color:#fff;
    font-size:10px;
    font-weight:var(--font-weight-extrabold);
    line-height:1;
    letter-spacing:0.08em;
    text-transform:uppercase;
    pointer-events:none;
    box-shadow:
        0 6px 18px var(--color-vip-shadow);
    animation:vip-glow 2.8s ease-in-out infinite;
}

.escort-vip-tag::before {
    content:"";
    width:5px;
    height:5px;
    margin-right:5px;
    flex:0 0 auto;
    border-radius:50%;
    background:var(--color-vip-light);
    box-shadow:
        0 0 0 3px var(--color-vip-border);
}


/* ============================================================
   PRIME TAG
   ============================================================ */


/* ============================================================
   PRIME TAG — ROSE
   ============================================================ */

.escort-premium-tag {
    position:absolute;
    top:11px;
    right:11px;
    z-index:5;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:27px;
    padding:0 11px;
    border:1px solid var(--color-premium-border);
    border-radius:var(--radius-pill);
    background:
        linear-gradient(
            135deg,
            var(--color-premium),
            var(--color-premium-dark)
        );
    color:#fff;
    font-size:10px;
    font-weight:var(--font-weight-extrabold);
    line-height:1;
    letter-spacing:0.08em;
    text-transform:uppercase;
    pointer-events:none;
    box-shadow:
        0 6px 18px var(--color-premium-shadow);
    animation:prime-glow 3.2s ease-in-out infinite;
}

.escort-premium-tag::before {
    content:"";
    width:5px;
    height:5px;
    margin-right:5px;
    flex:0 0 auto;
    border-radius:50%;
    background:var(--color-premium-light);
    box-shadow:
        0 0 0 3px var(--color-premium-border);
}


/* ============================================================
   EMPTY STATE
   ============================================================ */

.profiles-section .empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 230px;
    padding: 40px 24px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(37, 99, 235, 0.06),
            transparent 50%
        ),
        var(--color-surface);
    text-align: center;
    box-sizing: border-box;
    animation: home-fade-up 0.5s ease both;
}

.profiles-section .empty-state h3 {
    margin: 0;
    color: var(--color-text);
    font-size: 18px;
    font-weight: var(--font-weight-bold);
}

.profiles-section .empty-state p {
    max-width: 420px;
    margin: 8px 0 0;
    color: var(--color-text-subtle);
    font-size: 12px;
    line-height: 1.6;
}



/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes home-fade-up {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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


@keyframes profile-card-enter {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.985);
    }

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


@keyframes button-shine {
    from {
        left: -110%;
    }

    to {
        left: 140%;
    }
}


/* ============================================================
   VIP GLOW
   ============================================================ */

@keyframes vip-glow {
    0%,
    100%{
        box-shadow:
            0 6px 18px var(--color-vip-shadow);
    }

    50%{
        box-shadow:
            0 7px 23px
            rgba(5,150,105,0.38);
    }
}


/* ============================================================
   PRIME GLOW
   ============================================================ */

@keyframes prime-glow {
    0%,
    100%{
        box-shadow:
            0 6px 18px var(--color-premium-shadow);
    }

    50%{
        box-shadow:
            0 7px 23px
            rgba(225,29,72,0.34);
    }
}


/* ============================================================
   TABLET / SMALL LAPTOP
   ============================================================ */

@media (max-width: 980px) {

    .seo-navigation {
        width: min(var(--content-max-width), calc(100% - 28px));
    }

    .profiles-section {
        width: var(--header-width-tablet);
        max-width: none;
    }

    .escort-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .filter-group {
        flex-direction: column;
        gap: 7px;
    }

    .filter-label {
        flex: none;
        padding-top: 0;
    }

    .filter-options {
        width: 100%;
    }

    .filter-group select {
        width: min(100%, 300px);
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 768px) {

    .seo-navigation {
        width: calc(100% - 24px);
        margin-bottom: 20px;
        padding: 3px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .seo-navigation::-webkit-scrollbar {
        display: none;
    }

    .seo-navigation a {
        flex: 0 0 auto;
        min-height: 36px;
        padding: 7px 11px;
        font-size: 11px;
    }

    .seo-navigation a:first-child::after {
        bottom: 3px;
    }

    .profiles-section {
        width: calc(100% - 24px);
    }

    .profiles-section > .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
        margin-bottom: 15px;
    }

    .profiles-section .section-heading h2 {
        font-size: 23px;
    }

    .escort-filters {
        gap: 12px;
        padding: 11px;
        margin-bottom: 19px;
    }

    .filter-group {
        gap: 6px;
    }

    .filter-options {
        gap: 5px;
    }

    .filter-option span {
        min-height: 30px;
        padding: 5px 9px;
        font-size: 9px;
    }

    .filter-group select {
        width: 100%;
        min-width: 0;
        min-height: 34px;
        font-size: 10px;
    }

    .escort-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .escort-card {
        border-radius: var(--radius-md);
    }

    .escort-card:hover {
        transform: translateY(-2px);
    }

    .escort-card-body {
        padding: 10px;
    }

    .escort-card-title {
        gap: 6px;
    }

    .escort-card-title h3 {
        font-size: 13px;
    }

    .escort-card-title > span {
        min-width: 24px;
        height: 24px;
        padding: 0 5px;
        font-size: 9px;
    }

    .escort-card-location {
        margin-top: 5px;
    }

    .escort-card-location span {
        font-size: 8px;
    }

    .escort-services {
        gap: 4px;
        margin-top: 8px;
    }

    .service-tag {
        min-height: 21px;
        padding: 3px 6px;
        font-size: 8px;
    }

    .escort-phone {
        margin-top: 9px;
        padding-top: 8px;
    }

    .phone-number {
        font-size: 10px;
    }

    .phone-actions {
        gap: 3px;
    }

    .phone-action {
        min-height: 29px;
        padding: 4px;
        font-size: 8px;
    }

    .escort-media-counts {
        gap: 6px;
        margin-top: 8px;
    }

    .escort-media-counts span {
        font-size: 8px;
    }

    .escort-media-counts span + span::before {
        margin-right: 6px;
    }

    .escort-card-body > .btn {
        min-height: 36px;
        margin-top: 10px;
        font-size: 10px;
    }

    .escort-vip-tag,
    .escort-premium-tag {
        top: 8px;
        right: 8px;
        min-height: 24px;
        padding: 0 8px;
        font-size: 8px;
    }

    .escort-vip-tag::before,
    .escort-premium-tag::before {
        width: 4px;
        height: 4px;
        margin-right: 4px;
        box-shadow:
            0 0 0 2px var(--color-vip-border);
    }

    .escort-premium-tag::before {
        box-shadow:
            0 0 0 2px var(--color-premium-border);
    }
}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    .seo-navigation {
        width: calc(100% - 16px);
        margin-bottom: 17px;
    }

    .seo-navigation a {
        min-height: 34px;
        padding: 6px 9px;
        font-size: 10px;
    }

    .profiles-section {
        width: calc(100% - 18px);
    }

    .profiles-section .section-heading h2 {
        font-size: 21px;
    }

    .profile-count {
        min-height: 26px;
        padding: 0 9px;
        font-size: 10px;
    }

    .escort-grid {
        gap: 8px;
    }

    .escort-card-body {
        padding: 9px;
    }

    .escort-card-title h3 {
        font-size: 12px;
    }

    .escort-card-title > span {
        min-width: 23px;
        height: 23px;
        font-size: 8px;
    }

    .escort-card-location span {
        font-size: 7.5px;
    }

    .service-tag {
        min-height: 20px;
        padding: 3px 5px;
        font-size: 7.5px;
    }

    .phone-number {
        font-size: 9px;
    }

    .phone-action {
        min-height: 28px;
        font-size: 7.5px;
    }

    .escort-media-counts span {
        font-size: 7.5px;
    }

    .escort-card-body > .btn {
        min-height: 34px;
        font-size: 9px;
    }

    .escort-vip-tag,
    .escort-premium-tag {
        top: 7px;
        right: 7px;
        min-height: 22px;
        padding: 0 7px;
        font-size: 7px;
    }

    .escort-vip-tag::before,
    .escort-premium-tag::before {
        width: 3px;
        height: 3px;
        margin-right: 3px;
        box-shadow:
            0 0 0 2px var(--color-vip-border);
    }

    .escort-premium-tag::before {
        box-shadow:
            0 0 0 2px var(--color-premium-border);
    }
}


/* ============================================================
   VERY SMALL PHONES
   ============================================================ */

@media (max-width: 360px) {

    .profiles-section {
        width: calc(100% - 14px);
    }

    .escort-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .escort-card-body {
        padding: 12px;
    }

    .escort-card-title h3 {
        font-size: 15px;
    }

    .escort-card-location span {
        font-size: 9px;
    }

    .service-tag {
        font-size: 8px;
    }

    .phone-number {
        font-size: 10px;
    }

    .phone-action {
        min-height: 30px;
        font-size: 8px;
    }

    .escort-media-counts span {
        font-size: 8px;
    }

    .escort-card-body > .btn {
        min-height: 37px;
        font-size: 10px;
    }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .seo-navigation,
    .profiles-section > .section-heading,
    .escort-filters,
    .escort-card,
    .profiles-section .empty-state {
        animation: none;
    }

    .escort-vip-tag,
    .escort-premium-tag {
        animation: none;
    }

    .seo-navigation a,
    .filter-option span,
    .filter-group select,
    .escort-card,
    .escort-image,
    .escort-image-link::after,
    .service-tag,
    .phone-action,
    .phone-number,
    .escort-card-body > .btn {
        transition: none;
    }

    .escort-card:hover,
    .seo-navigation a:hover,
    .filter-option:hover span,
    .service-tag:hover,
    .phone-action:hover {
        transform: none;
    }

    .escort-card:hover .escort-image {
        transform: none;
    }

    .escort-card:hover .escort-card-body > .btn::after {
        animation: none;
    }
}



























/* ============================================================
   SEO CONTENT — PREMIUM RESPONSIVE UI
   ============================================================ */

.home-seo-content {
    position: relative;
    width: var(--header-width);
    max-width: none;
    margin: 56px auto 0;
    padding: 0 0 72px;

    background: var(--color-surface);
    border-top: 1px solid var(--color-border-light);

    color: var(--color-text);
    box-sizing: border-box;
}


/* ============================================================
   CONTENT WIDTH
   Keeps the SEO section wide while preventing text from
   becoming excessively long and difficult to read.
   ============================================================ */

.home-seo-content > * {
    width: min(100%, 1080px);
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;

    box-sizing: border-box;
}


/* ============================================================
   INTRODUCTION
   ============================================================ */

.seo-content-intro {
    padding: 72px 0 62px;

    text-align: left;

    animation: seoContentFadeIn 0.65s ease both;
}


/* ============================================================
   INTRO HEADING
   ============================================================ */

.seo-content-intro h1 {
    width: 100%;
    max-width: 980px;

    margin: 0 0 24px;

    color: var(--color-text);

    font-size: clamp(32px, 4vw, 50px);
    font-weight: var(--font-weight-extrabold);

    line-height: 1.08;
    letter-spacing: -0.04em;

    text-align: left;
}


/* ============================================================
   INTRO PARAGRAPHS
   ============================================================ */

.seo-content-intro p {
    width: min(100%, 900px);
    max-width: 900px;

    margin: 0 0 17px;

    color: var(--color-text-secondary);

    font-size: 15px;
    font-weight: var(--font-weight-medium);

    line-height: 1.85;
    letter-spacing: 0.005em;

    text-align: justify;
    text-justify: inter-word;

    overflow-wrap: break-word;
    hyphens: auto;
}

.seo-content-intro p:last-of-type {
    margin-bottom: 0;
}


/* ============================================================
   INTRO CTA
   ============================================================ */

.seo-content-cta {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    margin-top: 34px;
}


/* ============================================================
   REGISTER BUTTON
   ============================================================ */

.seo-register-button {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 168px;
    min-height: 48px;

    padding: 0 25px;

    border: 1px solid var(--color-primary);
    border-radius: var(--radius-pill);

    background: var(--color-primary);
    color: #fff;

    font-size: 13px;
    font-weight: var(--font-weight-bold);

    line-height: 1;
    letter-spacing: 0.01em;

    text-decoration: none;

    box-shadow: var(--shadow-login);

    overflow: hidden;

    transition:
        transform var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}


/* Subtle shine */
.seo-register-button::before {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        115deg,
        transparent 20%,
        rgba(255, 255, 255, 0.14) 45%,
        transparent 70%
    );

    transform: translateX(-120%);

    transition: transform 0.6s ease;

    pointer-events: none;
}

.seo-register-button:hover::before {
    transform: translateX(120%);
}

.seo-register-button:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);

    transform: translateY(-2px);

    box-shadow: var(--shadow-login-hover);
}

.seo-register-button:active {
    transform: translateY(0);
    box-shadow: var(--shadow-login-active);
}

.seo-register-button:focus-visible {
    outline: var(--focus-width) solid var(--focus-color);
    outline-offset: var(--focus-offset);
}


/* ============================================================
   SEO CONTENT BLOCK
   ============================================================ */

.seo-content-block {
    position: relative;

    padding: 52px 0;

    border-top: 1px solid var(--color-border-light);

    animation: seoContentFadeUp 0.55s ease both;
}


/* ============================================================
   SECTION HEADING
   ============================================================ */

.seo-content-block h2 {
    width: 100%;
    max-width: 980px;

    margin: 0 0 20px;

    color: var(--color-text);

    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: var(--font-weight-extrabold);

    line-height: 1.16;
    letter-spacing: -0.03em;

    text-align: left;
}


/* ============================================================
   SECTION PARAGRAPHS
   ============================================================ */

.seo-content-block p {
    width: min(100%, 900px);
    max-width: 900px;

    margin: 0 0 17px;

    color: var(--color-text-secondary);

    font-size: 14px;
    font-weight: var(--font-weight-medium);

    line-height: 1.88;
    letter-spacing: 0.004em;

    text-align: justify;
    text-justify: inter-word;

    overflow-wrap: break-word;
    hyphens: auto;
}

.seo-content-block p:last-of-type {
    margin-bottom: 0;
}


/* ============================================================
   LOCATION LINKS
   ============================================================ */

.seo-location-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 10px;

    margin-top: 28px;
}


/* ============================================================
   LOCATION LINK
   ============================================================ */

.seo-location-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 39px;

    padding: 0 15px;

    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);

    background: var(--color-surface-soft);
    color: var(--color-primary);

    font-size: 12px;
    font-weight: var(--font-weight-semibold);

    line-height: 1;
    text-decoration: none;

    white-space: nowrap;

    transition:
        transform var(--transition-fast),
        color var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.seo-location-links a:hover {
    background: var(--color-primary-soft);
    border-color: rgba(37, 99, 235, 0.28);
    color: var(--color-primary-dark);

    transform: translateY(-2px);

    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.08);
}

.seo-location-links a:focus-visible {
    outline: var(--focus-width) solid var(--focus-color);
    outline-offset: var(--focus-offset);
}


/* ============================================================
   FINAL CTA
   ============================================================ */

.seo-content-final {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    margin-top: 12px;

    padding: 60px 58px;

    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);

    background:
        linear-gradient(
            135deg,
            var(--color-primary-soft),
            var(--color-surface)
        );

    text-align: left;

    box-sizing: border-box;

    animation: seoContentFadeUp 0.65s ease both;
}


/* ============================================================
   FINAL CTA HEADING
   ============================================================ */

.seo-content-final h2 {
    width: 100%;
    max-width: 800px;

    margin: 0 0 16px;

    color: var(--color-text);

    font-size: clamp(26px, 3vw, 36px);
    font-weight: var(--font-weight-extrabold);

    line-height: 1.16;
    letter-spacing: -0.03em;

    text-align: left;
}


/* ============================================================
   FINAL CTA TEXT
   ============================================================ */

.seo-content-final p {
    width: min(100%, 820px);
    max-width: 820px;

    margin: 0 0 13px;

    color: var(--color-text-secondary);

    font-size: 14px;
    font-weight: var(--font-weight-medium);

    line-height: 1.82;
    letter-spacing: 0.004em;

    text-align: justify;
    text-justify: inter-word;

    overflow-wrap: break-word;
    hyphens: auto;
}

.seo-content-final p:last-of-type {
    margin-bottom: 27px;
}


/* ============================================================
   FINAL CTA BUTTON
   ============================================================ */

.seo-content-final .seo-register-button {
    min-width: 174px;
}


/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes seoContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

@keyframes seoContentFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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


/* ============================================================
   LAPTOP
   ============================================================ */

@media (max-width: 1200px) {

    .home-seo-content {
        width: var(--header-width-laptop);
        margin-top: 50px;
        padding-bottom: 64px;
    }

    .home-seo-content > * {
        width: min(100%, 940px);
        max-width: 940px;
    }

    .seo-content-intro {
        padding-top: 62px;
        padding-bottom: 54px;
    }

    .seo-content-intro h1 {
        max-width: 860px;
    }

    .seo-content-intro p,
    .seo-content-block p {
        width: min(100%, 820px);
        max-width: 820px;
    }

    .seo-content-block {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .seo-content-final {
        padding: 54px 46px;
    }
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 900px) {

    .home-seo-content {
        width: var(--header-width-tablet);
        margin-top: 44px;
        padding-bottom: 54px;
    }

    .home-seo-content > * {
        width: min(100%, 760px);
        max-width: 760px;
    }

    .seo-content-intro {
        padding-top: 52px;
        padding-bottom: 46px;
    }

    .seo-content-intro h1 {
        max-width: 700px;

        margin-bottom: 21px;

        font-size: 35px;
        line-height: 1.12;
    }

    .seo-content-intro p,
    .seo-content-block p,
    .seo-content-final p {
        width: 100%;
        max-width: 700px;

        font-size: 14px;
        line-height: 1.82;
    }

    .seo-content-cta {
        margin-top: 30px;
    }

    .seo-content-block {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .seo-content-block h2 {
        max-width: 700px;
        margin-bottom: 18px;
        font-size: 27px;
    }

    .seo-location-links {
        gap: 9px;
        margin-top: 25px;
    }

    .seo-content-final {
        padding: 48px 38px;
    }

    .seo-content-final h2 {
        font-size: 30px;
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 768px) {

    .home-seo-content {
        width: calc(100% - 24px);

        margin-top: 36px;
        margin-right: 12px;
        margin-left: 12px;

        padding-bottom: 42px;
    }

    .home-seo-content > * {
        width: 100%;
        max-width: none;
    }

    .seo-content-intro {
        padding-top: 42px;
        padding-bottom: 38px;
    }

    .seo-content-intro h1 {
        width: 100%;
        max-width: none;

        margin-bottom: 18px;

        font-size: 29px;
        line-height: 1.16;
        letter-spacing: -0.032em;
    }

    .seo-content-intro p {
        width: 100%;
        max-width: none;

        margin-bottom: 15px;

        font-size: 13px;
        line-height: 1.78;

        text-align: justify;
        text-justify: inter-word;
    }

    .seo-content-cta {
        margin-top: 27px;
    }

    .seo-register-button {
        min-height: 46px;
        padding: 0 22px;
        font-size: 12px;
    }

    .seo-content-block {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .seo-content-block h2 {
        margin-bottom: 15px;

        font-size: 23px;
        line-height: 1.22;
        letter-spacing: -0.025em;
    }

    .seo-content-block p {
        margin-bottom: 14px;

        font-size: 13px;
        line-height: 1.78;

        text-align: justify;
        text-justify: inter-word;
    }

    .seo-location-links {
        gap: 8px;
        margin-top: 22px;
    }

    .seo-location-links a {
        min-height: 36px;
        padding: 0 12px;

        font-size: 11px;
    }

    .seo-content-final {
        align-items: flex-start;

        margin-top: 5px;

        padding: 42px 24px;

        border-radius: var(--radius-lg);
    }

    .seo-content-final h2 {
        font-size: 26px;
        line-height: 1.2;
    }

    .seo-content-final p {
        width: 100%;
        max-width: none;

        font-size: 13px;
        line-height: 1.76;

        text-align: justify;
    }

    .seo-content-final .seo-register-button {
        width: auto;
    }
}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    .home-seo-content {
        width: calc(100% - 16px);

        margin-top: 30px;
        margin-right: 8px;
        margin-left: 8px;

        padding-bottom: 34px;
    }

    .seo-content-intro {
        padding-top: 35px;
        padding-bottom: 31px;
    }

    .seo-content-intro h1 {
        margin-bottom: 16px;

        font-size: 25px;
        line-height: 1.18;
    }

    .seo-content-intro p {
        font-size: 12.5px;
        line-height: 1.75;
    }

    .seo-content-cta {
        margin-top: 23px;
    }

    .seo-register-button {
        width: 100%;
        max-width: 280px;

        min-height: 45px;
        padding: 0 18px;
    }

    .seo-content-block {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .seo-content-block h2 {
        margin-bottom: 14px;

        font-size: 21px;
        line-height: 1.24;
    }

    .seo-content-block p {
        margin-bottom: 12px;

        font-size: 12.5px;
        line-height: 1.74;
    }

    .seo-location-links {
        gap: 6px;
        margin-top: 20px;
    }

    .seo-location-links a {
        min-height: 34px;
        padding: 0 10px;

        font-size: 10.5px;
    }

    .seo-content-final {
        padding: 35px 18px;
    }

    .seo-content-final h2 {
        margin-bottom: 13px;
        font-size: 23px;
    }

    .seo-content-final p {
        font-size: 12.5px;
        line-height: 1.74;
    }

    .seo-content-final p:last-of-type {
        margin-bottom: 22px;
    }

    .seo-content-final .seo-register-button {
        width: 100%;
        max-width: 280px;
    }
}


/* ============================================================
   VERY SMALL PHONES
   ============================================================ */

@media (max-width: 360px) {

    .home-seo-content {
        width: calc(100% - 12px);

        margin-right: 6px;
        margin-left: 6px;
    }

    .seo-content-intro {
        padding-top: 31px;
        padding-bottom: 27px;
    }

    .seo-content-intro h1 {
        font-size: 23px;
    }

    .seo-content-intro p {
        font-size: 12px;
        line-height: 1.72;
    }

    .seo-content-block {
        padding-top: 27px;
        padding-bottom: 27px;
    }

    .seo-content-block h2 {
        font-size: 19px;
    }

    .seo-content-block p {
        font-size: 11.5px;
        line-height: 1.72;
    }

    .seo-location-links {
        gap: 5px;
    }

    .seo-location-links a {
        min-height: 32px;
        padding: 0 8px;

        font-size: 9.5px;
    }

    .seo-content-final {
        padding: 30px 14px;
    }

    .seo-content-final h2 {
        font-size: 21px;
    }

    .seo-content-final p {
        font-size: 12px;
        line-height: 1.7;
    }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .seo-content-intro,
    .seo-content-block,
    .seo-content-final {
        animation: none;
    }

    .seo-register-button,
    .seo-location-links a,
    .seo-register-button::before {
        transition: none;
    }

    .seo-register-button:hover,
    .seo-location-links a:hover {
        transform: none;
    }
}

