:root {
    --primary-color: #e0006c;
    --primary-dark-color: #a0004a;
    --black: #000;
    --white: #fff;
    --whatsapp-green: #25D366;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */
.custom-navbar {
    width: 100%;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.custom-nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* LOGO */
.custom-logo {
    display: flex;
    align-items: center;
}

.custom-logo-img {
    height: 58px;
    /* width: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    padding: 4px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(224, 0, 108, 0.35);
    transition: 0.3s; */
}

.custom-logo-img:hover {
    transform: scale(1.06);
}

/* MENU */
.custom-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.custom-menu li a {
    text-decoration: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.custom-menu li a:hover {
    color: var(--primary-color);
}

.custom-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: 0.3s;
}

.custom-menu li a:hover::after {
    width: 100%;
}

/* =========================
   HERO SECTION
========================= */
.custom-hero {
    position: relative;
    width: 100%;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* BANNER IMAGE */
.custom-hero-banner {
    position: absolute;
    inset: 0;
}

.custom-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.28);
    transform: scale(1.05);
}

/* DARK OVERLAY */
.custom-hero-overlay {
    position: absolute;
    inset: 0;
    /* background:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.88),
            rgba(0, 0, 0, 0.55)); */
    background: linear-gradient(to right, rgb(0 0 0 / 15%), rgb(0 0 0 / 25%));
}

/* CONTENT */
.custom-hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    text-align: center;
    padding: 20px;
}

/* MAIN HEADING */
.custom-hero-content h2 {
    font-size: 68px;
    line-height: 1.1;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.custom-hero-content h2 span {
    color: var(--primary-color);
}

/* SUBHEADING */
.custom-subheading {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #f3f3f3;
}

/* BUTTONS */
.custom-btn-group {
    display: flex;
    justify-content: center;
    gap: 18px;
    /* flex-wrap: wrap; */
    margin-bottom: 35px;
}

.custom-btn {
    padding: 12px 26px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

/* PRIMARY BUTTON */
.custom-btn-primary {
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--primary-dark-color));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(224, 0, 108, 0.45);
}

.custom-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(224, 0, 108, 0.6);
}

/* OUTLINE BUTTON */
.custom-btn-outline {
    border: 2px solid var(--whatsapp-green);
    color: var(--whatsapp-green);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
}

.custom-btn-outline:hover {
    background: #fff;
    color: #000;
    transform: translateY(-4px);
}

/* =========================
   FEATURES
========================= */
.custom-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.custom-feature-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.custom-feature-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(224, 0, 108, 0.25);
}

/* =========================
   TABLET
========================= */
@media(max-width:992px) {

    .custom-hero-content h2 {
        font-size: 52px;
    }

    .custom-subheading {
        font-size: 19px;
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:768px) {

    .custom-nav-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .custom-menu {
        justify-content: center;
        gap: 18px;
    }

    .custom-menu li a {
        font-size: 15px;
    }

    .custom-hero {
        min-height: 88vh;
    }

    .custom-hero-content h2 {
        font-size: 40px;
    }

    .custom-subheading {
        font-size: 17px;
        line-height: 1.6;
    }

    .custom-btn {
        width: 100%;
        max-width: 280px;
        min-width: 175px;
    }

    .custom-feature-item {
        width: 100%;
        border-radius: 14px;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media(max-width:480px) {

    .custom-logo-img {
        /* width: 48px; */
        height: 48px;
    }

    .custom-hero-content h2 {
        font-size: 31px;
    }

    .custom-subheading {
        font-size: 15px;
    }

    .custom-menu {
        gap: 12px;
    }

    .custom-menu li a {
        font-size: 14px;
    }

    .custom-feature-item {
        font-size: 14px;
        padding: 12px 16px;
    }

    .custom-btn-group {
        gap: 10px;
    }
}

/* =========================
   ABOUT SECTION
========================= */
.custom-about-section {
    position: relative;
    padding: 50px 20px;
    background:
        linear-gradient(135deg,
            #000 0%,
            #111 50%,
            #000 100%);
    overflow: hidden;
}

/* GLOW EFFECT */
.custom-about-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(224, 0, 108, 0.15);
    border-radius: 50%;
    top: -120px;
    left: -100px;
    filter: blur(90px);
}

.custom-about-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(224, 0, 108, 0.12);
    border-radius: 50%;
    bottom: -100px;
    right: -80px;
    filter: blur(90px);
}

/* CONTAINER */
.custom-about-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 34px 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

/* BADGE */
.custom-about-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(224, 0, 108, 0.12);
    border: 1px solid rgba(224, 0, 108, 0.30);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

/* HEADING */
.custom-about-heading {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* GRADIENT TEXT */
.custom-about-heading span {
    background: linear-gradient(90deg,
            #ff4da6,
            #e0006c,
            #ff80bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

/* PARAGRAPH */
.custom-about-text {
    font-size: 16px;
    line-height: 1.6;
    color: #e5e5e5;
    margin: auto;
    text-align: justify;
}

/* =========================
   TABLET
========================= */
@media(max-width:992px) {

    .custom-about-heading {
        font-size: 36px;
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:768px) {

    .custom-about-section {
        padding: 70px 15px;
    }

    .custom-about-container {
        padding: 40px 22px;
        border-radius: 22px;
    }

    .custom-about-heading {
        font-size: 30px;
    }

    .custom-about-text {
        font-size: 14px;
        line-height: 1.7;
    }

}

/* =========================
   SMALL MOBILE
========================= */
@media(max-width:480px) {

    .custom-about-heading {
        font-size: 24px;
    }

    .custom-about-badge {
        font-size: 11px;
        padding: 8px 16px;
    }

}

/* Profile css */
/* =========================
   PROFILE SECTION
========================= */
.escort-profile-section {
    padding: 70px 20px;
    background:
        linear-gradient(135deg,
            #000,
            #111,
            #000);
    position: relative;
    overflow: hidden;
}

/* CONTAINER */
.escort-profile-container {
    max-width: 950px;
    margin: auto;
}

/* HEADING AREA */
.escort-profile-heading-wrap {
    text-align: center;
    margin-bottom: 30px;
}

.escort-profile-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(224, 0, 108, 0.12);
    border: 1px solid rgba(224, 0, 108, 0.3);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.escort-profile-heading {
    font-size: 34px;
    color: #fff;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.escort-profile-heading span {
    background: linear-gradient(90deg,
            #ff4da6,
            #e0006c,
            #ff80bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.escort-profile-subtext {
    max-width: 750px;
    margin: auto;
    color: #ddd;
    font-size: 16px;
    line-height: 1.8;
}

/* GRID */
.escort-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

/* CARD */
.escort-profile-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    overflow: hidden;
    transition: 0.35s;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.escort-profile-card:hover {
    transform: translateY(-2px);
    border-color: rgba(224, 0, 108, 0.35);
    box-shadow: 0 20px 50px rgba(224, 0, 108, 0.18);
}

/* IMAGE */
.escort-profile-image {
    position: relative;
    overflow: hidden;
}

.escort-profile-image img {
    width: 100%;
    height: 480px;
    object-position: top;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.escort-profile-card:hover .escort-profile-image img {
    transform: scale(1.06);
}

/* CONTENT */
.escort-profile-content {
    padding: 30px;
}

.escort-profile-content h3 {
    font-size: 24px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 800;
}

.escort-profile-description {
    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

/* DETAILS */
.escort-profile-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.escort-detail-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.escort-detail-box span {
    display: block;
    color: #bbb;
    font-size: 13px;
}

.escort-detail-box strong {
    color: var(--primary-color);
    font-size: 20px;
}

/* BUTTONS */
.escort-profile-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.escort-call-btn,
.escort-whatsapp-btn {
    flex: 1;
    min-width: 150px;
    text-align: center;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


/* CALL BTN */
.escort-call-btn {
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--primary-dark-color));
    color: #fff;
    box-shadow: 0 10px 25px rgba(224, 0, 108, 0.35);
}

.escort-call-btn:hover {
    transform: translateY(-1px);
}

/* WHATSAPP BTN */
.escort-whatsapp-btn {
    border: 2px solid var(--whatsapp-green);
    color: var(--whatsapp-green);
    background: rgba(255, 255, 255, 0.05);
}

/* WhatsApp SVG and text color */
.escort-whatsapp-btn span,
.escort-whatsapp-btn .escort-whatsapp-svg path {
    color: var(--whatsapp-green) !important;
    fill: var(--whatsapp-green) !important;
    transition: color 0.3s, fill 0.3s;
}

.escort-whatsapp-btn:hover {
    background: var(--whatsapp-green);
    color: #fff;
}

.escort-whatsapp-btn:hover span {
    color: #fff !important;
}

.escort-whatsapp-btn:hover .escort-whatsapp-svg path {
    fill: #fff !important;
}

/* =========================
   TABLET
========================= */
@media(max-width:992px) {

    .escort-profile-grid {
        grid-template-columns: 1fr;
    }

    .escort-profile-heading {
        font-size: 34px;
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:768px) {

    .escort-profile-section {
        padding: 70px 15px;
    }

    .escort-profile-content {
        padding: 24px;
    }

    .escort-profile-heading {
        font-size: 28px;
    }

    .escort-profile-subtext {
        font-size: 14px;
    }

    .escort-profile-content h3 {
        font-size: 22px;
    }

    .escort-profile-description {
        font-size: 14px;
    }

    .escort-profile-image img {
        height: 340px;
    }

    .escort-profile-details {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* =========================
   SMALL MOBILE
========================= */
@media(max-width:480px) {

    .escort-profile-heading {
        font-size: 24px;
    }

    .escort-profile-content h3 {
        font-size: 20px;
    }

    .escort-call-btn,
    .escort-whatsapp-btn {
        width: 100%;
        padding: 7px 15px;
        font-size: 14px;
    }

    .escort-profile-image img {
        height: auto;
    }

    .escort-detail-box {
        padding: 0;
    }
}

/* Why choose */
/* =========================
   WHY CHOOSE SECTION
========================= */
.why-aerocity-section {
    padding: 70px 20px;
    background:
        linear-gradient(135deg,
            #000 0%,
            #111 50%,
            #000 100%);
    position: relative;
    overflow: hidden;
}

/* CONTAINER */
.why-aerocity-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADING */
.why-aerocity-heading-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.why-aerocity-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(224, 0, 108, 0.12);
    border: 1px solid rgba(224, 0, 108, 0.3);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.why-aerocity-heading {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.why-aerocity-heading span {
    background: linear-gradient(90deg,
            #ff4da6,
            #e0006c,
            #ff80bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-aerocity-subtext {
    max-width: 760px;
    margin: auto;
    font-size: 16px;
    line-height: 1.9;
    color: #ddd;
}

/* GRID */
.why-aerocity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.why-aerocity-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: 0.35s;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.why-aerocity-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 0, 108, 0.4);
    box-shadow: 0 18px 45px rgba(224, 0, 108, 0.18);
}

/* TOP GLOW */
.why-aerocity-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary-color),
            #ff66b3);
}

/* ICON */
.why-aerocity-icon {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 25px;
    background: rgba(224, 0, 108, 0.12);
    border: 1px solid rgba(224, 0, 108, 0.3);
    color: var(--primary-color);
}

/* TITLE */
.why-aerocity-card h3 {
    font-size: 24px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 800;
}

/* TEXT */
.why-aerocity-card p {
    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

/* =========================
   TABLET
========================= */
@media(max-width:992px) {

    .why-aerocity-grid {
        grid-template-columns: 1fr;
    }

    .why-aerocity-heading {
        font-size: 34px;
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:768px) {

    .why-aerocity-section {
        padding: 40px 15px;
    }

    .why-aerocity-heading {
        font-size: 28px;
    }

    .why-aerocity-subtext {
        font-size: 14px;
    }

    .why-aerocity-card {
        padding: 32px 24px;
    }

    .why-aerocity-card h3 {
        font-size: 22px;
    }

    .why-aerocity-card p {
        font-size: 14px;
        line-height: 1.8;
    }

}

/* =========================
   SMALL MOBILE
========================= */
@media(max-width:480px) {

    .why-aerocity-heading {
        font-size: 24px;
    }

    .why-aerocity-card h3 {
        font-size: 20px;
    }

    .why-aerocity-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

}

/* =========================
   PREMIUM SERVICES SECTION
========================= */
.premium-service-section {
    padding: 60px 20px;
    background:
        linear-gradient(135deg,
            #000 0%,
            #111 50%,
            #000 100%);
    position: relative;
    overflow: hidden;
}

/* CONTAINER */
.premium-service-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADING */
.premium-service-heading-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.premium-service-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(224, 0, 108, 0.12);
    border: 1px solid rgba(224, 0, 108, 0.3);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.premium-service-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.premium-service-heading span {
    background: linear-gradient(90deg,
            #ff4da6,
            #e0006c,
            #ff80bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-service-subtext {
    max-width: 760px;
    margin: auto;
    color: #ddd;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

/* GRID */
.premium-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.premium-service-card {
    position: relative;
    padding: 35px 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: 0.35s;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.premium-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 0, 108, 0.4);
    box-shadow: 0 18px 45px rgba(224, 0, 108, 0.18);
}

/* TOP BORDER */
.premium-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary-color),
            #ff66b3);
}

/* ICON */
.premium-service-icon {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
    background: rgba(224, 0, 108, 0.12);
    border: 1px solid rgba(224, 0, 108, 0.3);
}

/* TITLE */
.premium-service-card h3 {
    color: #fff;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 16px;
    font-weight: 800;
}

/* TEXT */
.premium-service-card p {
    color: #d8d8d8;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
}

/* PRICE */
.premium-service-price {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 50px;
    background: rgba(224, 0, 108, 0.12);
    border: 1px solid rgba(224, 0, 108, 0.3);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 800;
}

/* =========================
   TABLET
========================= */
@media(max-width:992px) {

    .premium-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-service-heading {
        font-size: 34px;
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:768px) {

    .premium-service-section {
        padding: 70px 15px;
    }

    .premium-service-grid {
        grid-template-columns: 1fr;
    }

    .premium-service-heading {
        font-size: 28px;
    }

    .premium-service-subtext {
        font-size: 14px;
    }

    .premium-service-card {
        padding: 30px 24px;
    }

    .premium-service-card h3 {
        font-size: 22px;
    }

    .premium-service-card p {
        font-size: 14px;
    }

}

/* =========================
   SMALL MOBILE
========================= */
@media(max-width:480px) {

    .premium-service-heading {
        font-size: 24px;
    }

    .premium-service-card h3 {
        font-size: 20px;
    }

    .premium-service-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

}

/* =========================
   INCALL OUTCALL SECTION
========================= */
.russian-service-section {
    padding: 60px 20px;
    background:
        linear-gradient(135deg,
            #000 0%,
            #111 50%,
            #000 100%);
    position: relative;
    overflow: hidden;
}

/* CONTAINER */
.russian-service-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADING */
.russian-service-heading-wrap {
    text-align: center;
    margin-bottom: 30px;
}

.russian-service-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(224, 0, 108, 0.12);
    border: 1px solid rgba(224, 0, 108, 0.3);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.russian-service-heading {
    font-size: 42px;
    line-height: 1.25;
    color: #fff;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.russian-service-heading span {
    background: linear-gradient(90deg,
            #ff4da6,
            #e0006c,
            #ff80bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.russian-service-subtext {
    max-width: 1020px;
    margin: auto;
    color: #eee;
    font-size: 17px;
    line-height: 1.8;
    text-align: justify;
    font-weight: 500;
}

/* CONTENT BOX */
.russian-service-content-box {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 38px;
    align-items: start;
}

/* LEFT */
.russian-service-left {
    padding: 44px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.russian-service-left h3 {
    color: #fff;
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 24px;
    font-weight: 800;
}

.russian-service-details-list {
    color: #bbb;
    font-size: 15px;
    line-height: 1.87;
    margin-bottom: 35px;
    padding-left: 18px;
}

.russian-service-details-list li {
    margin-bottom: 15px;
    text-align: justify;
    list-style-type: disc;
}

.highlight-price {
    color: var(--primary-color);
    font-weight: 800;
    background: rgba(224, 0, 108, 0.10);
    padding: 1.5px 7px;
    border-radius: 8px;
}

.russian-service-left ul strong {
    color: #fff;
    font-weight: 800;
}

.russian-service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.russian-feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 18px;
    border-radius: 18px;
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* RIGHT */
.russian-service-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* CARD */
.russian-service-card {
    position: relative;
    padding: 34px 28px 32px 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: 0.35s;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.russian-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(224, 0, 108, 0.4);
    box-shadow: 0 18px 45px rgba(224, 0, 108, 0.18);
}

.russian-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary-color),
            #ff66b3);
}

/* ICON */
.russian-service-icon {
    width: 73px;
    height: 73px;
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 22px;
    background: rgba(224, 0, 108, 0.12);
    border: 1px solid rgba(224, 0, 108, 0.3);
}

/* TITLE */
.russian-service-card h4 {
    color: #fff;
    font-size: 23px;
    margin-bottom: 13px;
    font-weight: 800;
}

/* Mini LISTS for Cards */
.russian-service-mini-list {
    color: #d8d8d8;
    font-size: 14.5px;
    line-height: 1.78;
    margin-bottom: 2px;
    padding-left: 18px;
}

.russian-service-mini-list li {
    margin-bottom: 4px;
    list-style-type: disc;
    width: 100%;
}

.russian-service-mini-list li strong {
    color: var(--primary-color);
    font-weight: 800;
}

.russian-service-price {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 25px;
    background: rgba(224, 0, 108, 0.12);
    border: 1px solid rgba(224, 0, 108, 0.3);
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 800;
    margin-top: 10px;
}

/* =========================
   TABLET
========================= */
@media(max-width:992px) {

    .russian-service-content-box {
        grid-template-columns: 1fr;
    }

    .russian-service-heading {
        font-size: 32px;
    }

    .russian-service-left {
        padding: 35px 18px;
    }
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px) {

    .russian-service-section {
        padding: 60px 10px;
    }

    .russian-service-heading {
        font-size: 25px;
    }

    .russian-service-subtext {
        font-size: 14.5px;
    }

    .russian-service-left {
        padding: 22px 12px;
    }

    .russian-service-left h3 {
        font-size: 21px;
    }

    .russian-service-features {
        grid-template-columns: 1fr;
    }

    .russian-feature-item {
        font-size: 13px;
    }

    .russian-service-details-list {
        font-size: 13.5px;
    }

    .russian-service-card {
        padding: 23px 10px 20px 20px;
    }

    .russian-service-card h4 {
        font-size: 19px;
    }

    .russian-service-mini-list {
        font-size: 12.5px;
    }

}

/* =========================
   SMALL MOBILE
========================= */
@media(max-width:480px) {

    .russian-service-heading {
        font-size: 21px;
    }

    .russian-service-left h3 {
        font-size: 18px;
    }

    .russian-service-card h4 {
        font-size: 17px;
    }

    .russian-service-icon {
        width: 52px;
        height: 52px;
        font-size: 19px;
    }

}

/* =========================
   RATE PACKAGE SECTION
========================= */
.rate-package-section {
    padding: 60px 20px;
    background:
        linear-gradient(135deg,
            #000 0%,
            #111 50%,
            #000 100%);
    position: relative;
    overflow: hidden;
}

/* CONTAINER */
.rate-package-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADING */
.rate-package-heading-wrap {
    text-align: center;
    margin-bottom: 30px;
}

.rate-package-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(224, 0, 108, 0.12);
    border: 1px solid rgba(224, 0, 108, 0.3);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.rate-package-heading {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.rate-package-heading span {
    background: linear-gradient(90deg,
            #ff4da6,
            #e0006c,
            #ff80bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rate-package-subtext {
    max-width: 760px;
    margin: auto;
    color: #ddd;
    font-size: 16px;
    line-height: 1.8;
}

/* GRID */
.rate-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* CARD */
.rate-package-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: 0.35s;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.rate-package-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 0, 108, 0.4);
    box-shadow: 0 18px 45px rgba(224, 0, 108, 0.18);
}

/* ACTIVE CARD */
.active-package {
    border-color: rgba(224, 0, 108, 0.5);
    transform: scale(1.03);
}

.active-package:hover {
    transform: scale(1.03) translateY(-8px);
}

/* TOP BORDER */
.rate-package-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary-color),
            #ff66b3);
}

/* TAG */
.rate-package-tag {
    position: absolute;
    top: 18px;
    right: -38px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 40px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

/* TOP */
.rate-package-top {
    text-align: center;
    margin-bottom: 30px;
}

.rate-package-top h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 18px;
    font-weight: 800;
}

.rate-package-price {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
}

/* FEATURES */
.rate-package-features {
    list-style: none;
    margin-bottom: 35px;
}

.rate-package-features li {
    color: #ddd;
    font-size: 15px;
    line-height: 1.8;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* BUTTON */
.rate-package-btn {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 13px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--primary-dark-color));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(224, 0, 108, 0.35);
}

.rate-package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(224, 0, 108, 0.5);
}

/* =========================
   TABLET
========================= */
@media(max-width:992px) {

    .rate-package-grid {
        grid-template-columns: 1fr;
    }

    .active-package {
        transform: none;
    }

    .active-package:hover {
        transform: translateY(-8px);
    }

    .rate-package-heading {
        font-size: 34px;
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:768px) {

    .rate-package-section {
        padding: 30px 15px;
    }

    .rate-package-heading {
        font-size: 28px;
    }

    .rate-package-subtext {
        font-size: 14px;
    }

    .rate-package-card {
        padding: 35px 24px;
    }

    .rate-package-top h3 {
        font-size: 24px;
    }

    .rate-package-price {
        font-size: 40px;
    }

    .rate-package-features li {
        font-size: 14px;
    }

    .rate-package-btn {
        padding: 10px;
        font-size: 14px;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media(max-width:480px) {

    .rate-package-heading {
        font-size: 24px;
    }

    .rate-package-top h3 {
        font-size: 22px;
    }

    .rate-package-price {
        font-size: 34px;
    }

}

/* =========================
   COMMON
========================= */
.why-us-section,
.escort-faq-section,
.escort-testimonial-section,
.escort-contact-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #000, #111, #000);
}

.why-us-container,
.escort-faq-container,
.escort-testimonial-container,
.escort-contact-container {
    max-width: 1200px;
    margin: auto;
}

.why-us-heading-wrap,
.escort-faq-heading-wrap,
.escort-testimonial-heading-wrap {
    text-align: center;
    margin-bottom: 30px;
}

.why-us-badge,
.escort-faq-badge,
.escort-testimonial-badge,
.escort-contact-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(224, 0, 108, 0.12);
    border: 1px solid rgba(224, 0, 108, 0.3);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.why-us-heading,
.escort-faq-heading,
.escort-testimonial-heading,
.escort-contact-heading {
    font-size: 42px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 18px;
    line-height: 1.2;
}

.why-us-heading span,
.escort-faq-heading span,
.escort-testimonial-heading span,
.escort-contact-heading span {
    background: linear-gradient(90deg, #ff4da6, #e0006c, #ff80bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-us-subtext,
.escort-faq-subtext {
    max-width: 760px;
    margin: auto;
    color: #ddd;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

/* =========================
   WHY US GRID
========================= */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 28px;
    border-radius: 26px;
    transition: 0.35s;
    backdrop-filter: blur(10px);
}

.why-us-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 0, 108, 0.35);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 0, 108, 0.12);
    border: 1px solid rgba(224, 0, 108, 0.3);
    font-size: 30px;
    margin-bottom: 22px;
}

.why-us-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 14px;
}

.why-us-card p {
    color: #d8d8d8;
    font-size: 15px;
    line-height: 1.8;
}

/* =========================
   FAQ
========================= */
.escort-faq-wrap {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: auto;
    gap: 22px;
}

/* FAQ ITEM */
.escort-faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    overflow: hidden;
    transition: 0.35s;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.escort-faq-item:hover {
    border-color: rgba(224, 0, 108, 0.35);
    transform: translateY(-3px);
}

/* ACTIVE FAQ */
.active-faq {
    border-color: rgba(224, 0, 108, 0.40);
    box-shadow: 0 18px 45px rgba(224, 0, 108, 0.14);
}

/* QUESTION */
.escort-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
}

/* QUESTION TEXT */
.escort-faq-question span {
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
}

/* ICON */
.escort-faq-icon {
    min-width: 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(224, 0, 108, 0.12);
    border: 1px solid rgba(224, 0, 108, 0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    transition: 0.35s;
}

/* ACTIVE ICON */
.active-faq .escort-faq-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark-color));
    color: #fff;
    transform: rotate(45deg);
    border-color: transparent;
}

/* ANSWER */
.escort-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

/* ANSWER TEXT */
.escort-faq-answer p {
    color: #d8d8d8;
    font-size: 15px;
    line-height: 1.9;
    padding: 0 30px 28px;
}

/* ACTIVE ANSWER */
.active-faq .escort-faq-answer {
    max-height: 400px;
}

/* =========================
   TESTIMONIAL
========================= */
.escort-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.escort-testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 30px;
    border-radius: 26px;
}

.escort-testimonial-stars {
    color: #ffcc00;
    font-size: 24px;
    margin-bottom: 18px;
}

.escort-testimonial-card p {
    color: #ddd;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 20px;
}

.escort-testimonial-card h4 {
    color: #fff;
    font-size: 18px;
}

/* =========================
   CONTACT
========================= */
.escort-contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: stretch;
}

.escort-contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
    border-radius: 28px;
}

.escort-contact-form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 28px;
}

.escort-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.escort-contact-form input,
.escort-contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 18px;
    color: #fff;
    font-size: 15px;
    outline: none;
}

.escort-contact-form textarea {
    height: 140px;
    resize: none;
}

.escort-contact-form button {
    border: none;
    padding: 16px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark-color));
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:992px) {

    .why-us-grid,
    .escort-testimonial-grid,
    .escort-contact-container {
        grid-template-columns: 1fr;
    }

    .why-us-heading,
    .escort-faq-heading,
    .escort-testimonial-heading,
    .escort-contact-heading {
        font-size: 34px;
    }

}

@media(max-width:768px) {

    .why-us-section,
    .escort-faq-section,
    .escort-testimonial-section,
    .escort-contact-section {
        padding: 40px 15px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-heading,
    .escort-faq-heading,
    .escort-testimonial-heading,
    .escort-contact-heading {
        font-size: 28px;
    }

    .why-us-subtext,
    .escort-faq-subtext,
    .why-us-card p,
    .escort-faq-answer p,
    .escort-testimonial-card p {
        font-size: 14px;
    }

    .escort-faq-question {
        padding: 24px 22px;
    }

    .escort-faq-question span {
        font-size: 17px;
    }

    .escort-faq-answer p {
        padding: 0 22px 24px;
        line-height: 1.8;
    }

    .escort-faq-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 22px;
    }

}

@media(max-width:480px) {

    .why-us-heading,
    .escort-faq-heading,
    .escort-testimonial-heading,
    .escort-contact-heading {
        font-size: 24px;
    }

    .why-us-card h3 {
        font-size: 20px;
    }

    .escort-faq-question {
        padding: 22px 18px;
    }

    .escort-faq-question span {
        font-size: 15px;
    }

    .escort-faq-answer p {
        padding: 0 18px 22px;
        text-align: justify;
    }

    .escort-faq-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 20px;
    }

    .escort-contact-form-wrap {
        padding: 25px;
    }

    .escort-contact-form button {
        border-radius: 25px;
        padding: 10px;
    }
}



/* =========================
   FOOTER
========================= */
.escort-footer {
    position: relative;
    padding: 40px 20px 0;
    background: linear-gradient(135deg,
            #000 0%,
            #111 50%,
            #000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* CONTAINER */
.escort-footer-container {
    max-width: 1200px;
    margin: auto;
}

/* GRID */
.escort-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 35px;
    padding-bottom: 15px;
}

/* LOGO */
.escort-footer-logo {
    margin-bottom: 18px;
}

.escort-footer-logo img {
    height: 65px;

}

/* TEXT */
.escort-footer-text {
    color: #d8d8d8;
    font-size: 14px;
    line-height: 1.8;
    max-width: 330px;
}

/* TITLE */
.escort-footer-title {
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    padding-bottom: 10px;
}

.escort-footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 3px;
    border-radius: 50px;
    background: linear-gradient(90deg,
            var(--primary-color),
            #ff66b3);
}

/* LINKS */
.escort-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
    margin-bottom: 0;
}

.escort-footer-links li a {
    color: #d8d8d8;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.escort-footer-links li a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* LINK ICON */
.escort-footer-links li a svg {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* CONTACT */
.escort-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.escort-footer-contact a,
.escort-footer-contact span {
    color: #d8d8d8;
    font-size: 14px;
    line-height: 1.7;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.escort-footer-contact a:hover {
    color: var(--primary-color);
}

/* CONTACT ICON */
.escort-footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* COPYRIGHT */
.escort-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    padding-bottom: 1px;
    text-align: center;
    margin-bottom: 40px;
}

.escort-footer-bottom p {
    color: #bdbdbd;
    font-size: 13px;
    line-height: 1.7;
}

/* =========================
   TABLET
========================= */
@media(max-width:992px) {

    .escort-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:768px) {

    .escort-footer {
        padding: 20px 15px 0;
    }

    .escort-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .escort-footer-title {
        font-size: 20px;
    }

}

/* =========================
   SMALL MOBILE
========================= */
@media(max-width:480px) {

    .escort-footer-logo img {
        height: 58px;
    }

    .escort-footer-title {
        font-size: 18px;
    }

    .escort-footer-bottom p {
        font-size: 12px;
    }

}


/* =========================
   ESCORT SLIDER SECTION
========================= */
.escort-slider-section {
    padding: 60px 20px;
    background:
        linear-gradient(135deg,
            #000 0%,
            #111 50%,
            #000 100%);
    overflow: hidden;
}

/* CONTAINER */
.escort-slider-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADING */
.escort-slider-heading-wrap {
    text-align: center;
    margin-bottom: 30px;
}

.escort-slider-badge {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(224, 0, 108, 0.12);
    border: 1px solid rgba(224, 0, 108, 0.3);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.escort-slider-heading {
    font-size: 42px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
    font-weight: 900;
}

.escort-slider-heading span {
    background: linear-gradient(90deg,
            #ff4da6,
            #e0006c,
            #ff80bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.escort-slider-subtext {
    max-width: 760px;
    margin: auto;
    color: #ddd;
    font-size: 16px;
    line-height: 1.9;
}

/* SWIPER */
.escortSwiper {
    padding-bottom: 10px;
}

/* CARD */
.escort-slider-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.35s;
}

.escort-slider-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 0, 108, 0.35);
}

/* IMAGE */
.escort-slider-image {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.escort-slider-image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95),
            transparent);
}

.escort-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.escort-slider-card:hover img {
    transform: scale(1.08);
}

/* OVERLAY CONTENT */
.escort-slider-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 22px;
    z-index: 2;
}

.escort-slider-overlay h3 {
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 800;
}

.escort-slider-overlay span {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(224, 0, 108, 0.16);
    border: 1px solid rgba(224, 0, 108, 0.35);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

/* BUTTONS */
.swiper-button-next,
.swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    background: rgba(224, 0, 108, 0.15);
    border: 1px solid rgba(224, 0, 108, 0.3);
    color: #fff !important;
    backdrop-filter: blur(10px);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
}

/* PAGINATION */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* =========================
   TABLET
========================= */
@media(max-width:992px) {

    .escort-slider-heading {
        font-size: 34px;
    }

    .escort-slider-image {
        height: 380px;
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:768px) {

    .escort-slider-section {
        padding: 40px 15px;
    }

    .escort-slider-heading {
        font-size: 28px;
    }

    .escort-slider-subtext {
        font-size: 14px;
    }

    .escort-slider-image {
        height: 340px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

}

/* =========================
   SMALL MOBILE
========================= */
@media(max-width:480px) {

    .escort-slider-heading {
        font-size: 24px;
    }

    .escort-slider-image {
        height: 320px;
    }

    .escort-slider-overlay h3 {
        font-size: 18px;
    }

}

/* Sticky Horizontal Buttons Bar */
.sticky-horizontal-buttons {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    gap: 0;
    background: none;
    pointer-events: none;
}

.sticky-horizontal-btn {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5em;
    font-size: 1rem;
    font-weight: 500;
    height: 40px;
    border: none;
    color: #fff;
    cursor: pointer;
    background: #2dd879;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.13);
    transition: background 0.19s;
    text-decoration: none;
    pointer-events: auto;
}

.sticky-horizontal-btn svg {
    margin-right: 8px;
    min-width: 22px;
    min-height: 22px;
    display: inline-block;
    vertical-align: middle;
}

.sticky-horizontal-btn.call {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark-color));
    border-right: 2px solid #fff;
}

.sticky-horizontal-btn.whatsapp {
    background: #25D366;
    border-right: 2px solid #fff;
}

.sticky-horizontal-btn.whatsapp svg path {
    fill: #fff !important;
}

/* Ensures correct color for WhatsApp icon */
.sticky-horizontal-btn.telegram {
    background: #229ED9;
    border-right: none;
}

.sticky-horizontal-btn:hover {
    filter: brightness(1.08);
}

@media (max-width: 767px) {
    .sticky-horizontal-btn {
        font-size: 0.96rem;
        padding: 0 0.2em;
        min-height: 45px;
    }

    .sticky-horizontal-buttons {
        max-width: 100vw;
    }

    .sticky-horizontal-btn span {
        display: none !important;
    }

    .sticky-horizontal-btn svg {
        margin-right: 0;
    }
}