/* <!-- navbar style  --> */

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    background-color: #000;
    z-index: 1000;
    position: fixed;
    top: 0;
    width: 100%;
}

 h1, h2,h3,h4 {
    text-transform: uppercase;
}

strong{
    color:#fff
}
.btn-post-ad {
            background: #ff2d55;
            color: white !important;
            padding: 7px 18px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 13px;
        }
/* 🔥 TEXT LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

.logo-icon {
    color: #b0182f;
    font-size: 24px;
}

.logo-text {
    letter-spacing: 1px;
    color: #fff
}



/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

/* HOVER EFFECT */
.nav-links li a:hover {
    color: #b0182f;
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* NAV ICON */
.nav-icon {
    display: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .nav-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #000;
        width: 100%;
        padding: 20px 0;
        display: none;
        z-index: 5;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-size: 18px;
        padding: 10px 0;
    }

    .nav-icon {
        display: inline-block;
    }

    .hamburger {
        display: block;
    }

    .hero {
        height: auto;
    }
}

/* DESKTOP */
@media (min-width: 769px) {
    .nav-icon {
        display: none;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    background: #050505;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* HERO SECTION */
.mobile-app-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
    margin-top: 50px;
}

/* IMAGE */
.mobile-app-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    z-index: 1;
}

.mobile-app-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* OVERLAY */
.mobile-app-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.95) 15%,
            rgba(0, 0, 0, 0.78) 45%,
            rgba(0, 0, 0, 0.25) 100%);
    z-index: 2;
}

/* CONTAINER */
.mobile-app-container {
    position: relative;
    z-index: 5;
    width: 92%;
    max-width: 1300px;
    margin: auto;
}

/* CONTENT */
.mobile-app-content {
    max-width: 650px;
}

.mobile-app-content h1 {
    font-size: 54px;
    line-height: 1.08;
    color: #fff;
    font-weight: 700;
    margin-bottom: 22px;
}

.mobile-app-content p {
    color: #ddd;
    font-size: 15px;
    text-align: justify;
    line-height: 1.9;
    margin-bottom: 14px;
}

.mobile-app-content h2 {
    font-size: 28px;
    color: #fff;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 22px;
}

/* LIST */
.hero-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 25px;
    margin-bottom: 35px;
}

.hero-list li {
    list-style: none;
    color: #f1f1f1;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    padding-left: 22px;
}

.hero-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff3152;
    font-weight: 700;
}

/* BUTTON */
.mobile-app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff3152;
    color: #fff;
    padding: 15px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}
.price-btn{
     display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #353232;
    color: #fff;
    padding: 15px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.mobile-app-btn:hover {
    background: #ff163d;
    transform: translateY(-3px);
}

h4 {
    color: #ffff;
}

/* TABLET */
@media(max-width:1100px) {

    .mobile-app-bg {
        width: 52%;
    }

    .mobile-app-content {
        max-width: 560px;
    }

    .mobile-app-content h1 {
        font-size: 44px;
    }

    .mobile-app-content p {
        font-size: 14px;
    }

    .mobile-app-content h2 {
        font-size: 24px;
    }

}

/* MOBILE */
@media(max-width:768px) {

    .mobile-app-hero {
        min-height: auto;
        padding-top: 70px;

    }

    .mobile-app-bg {
        width: 100%;
        height: 100%;
    }

    .mobile-app-bg img {
        object-fit: cover;
        object-position: center top;
        opacity: 0.45;
    }

    .mobile-app-overlay {
        background:
            linear-gradient(to bottom,
                rgba(0, 0, 0, 0.72),
                rgba(0, 0, 0, 0.92));
    }

    .mobile-app-content {
        max-width: 100%;
    }

    .mobile-app-content h1 {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .mobile-app-content p {
        font-size: 13px;
        line-height: 1.8;
    }

    .mobile-app-content h2 {
        font-size: 22px;
        line-height: 1.4;
    }

    .hero-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-list li {
        font-size: 13px;
    }

    .mobile-app-btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .price-btn{
 padding: 14px 28px;
        font-size: 14px;
    }
}

@media(max-width:480px) {

    .mobile-app-content h1 {
        font-size: 30px;
    }

    .mobile-app-content p {
        font-size: 12px;
    }

    .mobile-app-content h2 {
        font-size: 20px;
    }

    .hero-list li {
        font-size: 12px;
    }

}

/* =======================================================
   RESPONSIVE HERO MEDIA QUERIES
======================================================= */

/* LARGE TABLET */
@media (max-width: 1200px) {

    .mobile-app-hero {
        min-height: 850px;
    }

    .mobile-app-bg {
        width: 50%;
    }

    .mobile-app-content {
        max-width: 520px;
    }

    .mobile-app-content h1 {
        font-size: 46px;
        line-height: 1.08;
    }

    .mobile-app-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .hero-list {
        gap: 12px 18px;
    }

    .hero-list li {
        font-size: 13px;
    }

}

/* IPAD / TABLET */
@media (max-width: 992px) {

    .mobile-app-hero {
        min-height: 760px;
        padding: 90px 0 60px;
        align-items: center;
    }

    .mobile-app-container {
        width: 92%;
    }

    .mobile-app-bg {
        width: 55%;
    }

    .mobile-app-bg img {
        object-position: center;
    }

    .mobile-app-content {
        max-width: 430px;
    }

    .mobile-app-content h1 {
        font-size: 38px;
        line-height: 1.12;
        margin-bottom: 16px;
    }

    .mobile-app-content p {
        font-size: 13px;
        line-height: 1.75;
        margin-bottom: 12px;
    }

    .hero-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 14px;
        margin-bottom: 28px;
    }

    .hero-list li {
        font-size: 12px;
        line-height: 1.6;
        padding-left: 18px;
    }

    .mobile-app-btn {
        padding: 13px 24px;
        font-size: 13px;
    }
     .price-btn{
 padding: 13px 24px;
        font-size: 13px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .mobile-app-hero {
        min-height: auto;
        padding: 90px 0 70px;
        display: flex;
        align-items: center;
    }

    .mobile-app-overlay {
        background:
            linear-gradient(to bottom,
                rgba(0, 0, 0, 0.78),
                rgba(0, 0, 0, 0.92));
    }

    .mobile-app-bg {
        width: 100%;
        height: 100%;
    }

    .mobile-app-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        opacity: 0.4;
    }

    .mobile-app-container {
        width: 92%;
    }

    .mobile-app-content {
        max-width: 100%;
    }

    .mobile-app-content h1 {
        font-size: 34px;
        line-height: 1.12;
        margin-bottom: 18px;
    }

    .mobile-app-content p {
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 12px;
    }

    .hero-list {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 28px;
    }

    .hero-list li {
        font-size: 13px;
        line-height: 1.7;
    }

    .mobile-app-btn {
        width: auto;
        padding: 14px 28px;
        font-size: 13px;
    }

    .price-btn{
 width: auto;
        padding: 14px 28px;
        font-size: 13px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .mobile-app-hero {
        padding: 85px 0 60px;
    }

    .mobile-app-content h1 {
        font-size: 30px;
        line-height: 1.1;
    }

    .mobile-app-content p {
        font-size: 12px;
        line-height: 1.8;
    }

    .hero-list li {
        font-size: 12px;
    }

    .mobile-app-btn {
        width: 100%;
        justify-content: center;
    }
.price-btn{
     width: 100%;
        justify-content: center;
    }
}

/* EXTRA SMALL */
@media (max-width: 360px) {

    .mobile-app-content h1 {
        font-size: 26px;
    }

    .mobile-app-content p {
        font-size: 11px;
    }

    .hero-list li {
        font-size: 11px;
    }

}


/* CONTENT SECTION */
.content-section {
    position: relative;
    width: 100%;
    background: #050505;
    padding: 30px;
}

.content-container {
    width: 100%;
    max-width: 1350px;
    margin: auto;
}

/* HEADINGS */
.content-section h2 {
    font-size: 40px;
    line-height: 1.3;
    color: #fff;
    font-weight: 700;
    margin-bottom: 22px;
    margin-top: 55px;
}

.content-section h3 {
    font-size: 24px;
    line-height: 1.4;
    color: #fff;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 16px;
}

/* PARAGRAPH */
.content-section p {
    color: #d6d6d6;
    text-align: justify;
    font-size: 15px;
    line-height: 1.95;
    margin-bottom: 18px;
}

/* LIST */
.content-list {
    margin-bottom: 25px;
    padding-left: 0;
}

.content-list li {
    list-style: none;
    position: relative;
    color: #f1f1f1;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 10px;
    padding-left: 28px;
}

.content-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff3152;
    font-weight: 700;
}

/* CTA BOX */
.cta-box {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 35px;
    border-radius: 14px;
    color: #fff;
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-box h3 {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 28px;
}

.cta-box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #b00020;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    transition: background .3s ease, transform .3s ease;
}

.cta-box a:hover {
    background: #8d0019;
    transform: translateY(-2px);
}

/* TABLET */
@media(max-width:992px) {

    .content-section h2 {
        font-size: 30px;
    }

    .content-section h3 {
        font-size: 22px;
    }

    .content-section p,
    .content-list li {
        font-size: 14px;
    }

}

/* MOBILE */
@media(max-width:768px) {

    .content-section {
        padding: 30px 10px;
    }

    .content-section h2 {
        font-size: 25px;
        line-height: 1.4;
        margin-top: 42px;
        margin-bottom: 18px;
    }

    .content-section h3 {
        font-size: 20px;
        margin-top: 28px;
    }

    .content-section p {
        font-size: 13px;
        line-height: 1.9;
    }

    .content-list li {
        font-size: 13px;
        line-height: 1.8;
        padding-left: 24px;
    }

    .cta-box {
        padding: 25px;

    }

    .cta-box h3 {
        font-size: 22px;
        line-height: 1.4;
    }

    .cta-box a {
        width: 100%;
        font-size: 13px;
    }

}

/* SMALL MOBILE */
@media(max-width:480px) {

    .content-section h2 {
        font-size: 22px;
    }

    .content-section h3 {
        font-size: 18px;
    }

    .content-section p,
    .content-list li {
        font-size: 12px;
    }

}


/* <!-- trust feature section style --> */

.feature-section {
    width: 100%;
    background: #000;
    padding: 70px 5%;
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 40px;
    align-items: start;
    text-align: center;
}

.feature-box {
    color: #fff;
}

.feature-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border: 5px solid #b8ae8d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    transition: 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: translateY(-5px);
}

.feature-icon img {
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}

/* Laptop */
@media (max-width: 1200px) {
    .feature-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .feature-section {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 50px 20px;
    }

    .feature-icon {
        width: 130px;
        height: 130px;
    }

    .feature-icon img {
        width: 75px;
        height: 75px;
    }

    .feature-box h3 {
        font-size: 22px;
    }
}

/* <!-- faq style  --> */

/* FAQ SECTION */
.faq-section {
    width: 100%;
    background: #050505;
    padding: 30px;
}

.faq-container {
    width: 100%;
    max-width: 1350px;
    margin: auto;
}

.faq-section h2 {
    font-size: 38px;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

/* QUESTION */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: justify;

    cursor: pointer;

    transition: 0.3s ease;
}

.faq-question span {
    color: #ff3152;
    font-size: 28px;
    font-weight: 700;
    transition: 0.3s ease;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-answer p {
    color: #d4d4d4;
    font-size: 15px;
    line-height: 1.9;
    padding-top: 16px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* MOBILE */
@media(max-width:768px) {

    .faq-section {
        padding: 30px 10px;
    }

    .faq-section h2 {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .faq-question {
        font-size: 15px;
        line-height: 1.6;
    }

    .faq-question span {
        font-size: 24px;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 1.8;
    }

}

/* DISCLAIMER SECTION */

.disclaimer-section {
    width: 100%;
    background: #0a0a0a;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.disclaimer-container {
    width: 100%;
    max-width: 1350px;
    margin: auto;
}

.disclaimer-section h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
}

.disclaimer-section p {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
}

/* MOBILE */
@media(max-width:768px) {

    .disclaimer-section {
        padding: 30px 10px;
    }

    .disclaimer-section h2 {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .disclaimer-section p {
        font-size: 13px;
        line-height: 1.8;
        text-align: justify;
    }

}

/* <!-- escort section style  --> */

/* ESCORTS SECTION */
.escorts-section {
    width: 100%;
    max-width: 1350px;
    margin: auto;
    padding: 40px 0;
    background: #050505;
}

.escorts-section h2 {
    color: #fff;
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
}

.escorts-section>p {
    max-width: 850px;
    margin: auto;
    text-align: center;

    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.9;

    margin-bottom: 55px;
}

/* GRID */
.escort-grid {
    width: 92%;
    max-width: 1350px;
    margin: auto;
    color: #fff;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* CARD */
.escort-card {
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 18px;

    overflow: hidden;

    transition: 0.3s ease;
}

.escort-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 49, 82, 0.35);
}

/* IMAGE */
.escort-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

/* CARD */
.escort-cardssss {
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 18px;

    overflow: hidden;

    transition: 0.3s ease;
}

.escort-cardssss:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 49, 82, 0.35);
}

/* IMAGE */
.escort-cardssss img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

/* INFO */
.escort-info {
    padding: 22px;
}

.escort-info h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.escort-info p {
    color: #d5d5d5;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* RATING */
.rating {
    color: #ff3152 !important;
    font-size: 18px !important;
    letter-spacing: 2px;
    margin-bottom: 14px !important;
}

/* DESCRIPTION */
.desc {
    color: #bfbfbf !important;
    font-size: 13px !important;
    line-height: 1.9 !important;
}

/* TABLET */
@media(max-width:1200px) {

    .escort-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:992px) {

    .escort-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .escorts-section h2 {
        font-size: 36px;
    }

}


/* MOBILE + TABLET MARQUEE */
@media(max-width:1024px) {

    .escorts-section {
        overflow: hidden;
    }

    .escort-grid {
        display: flex;
        gap: 20px;
        width: max-content;

        animation: escortScroll 10s linear infinite;
    }

    .escort-card {
        width: 280px;
        flex-shrink: 0;
    }

    .escort-card img {
        height: 380px;
    }

      .escort-cardssss {
        width: 280px;
        flex-shrink: 0;
    }

    .escort-cardssss img {
        height: 380px;
    }

    @keyframes escortScroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }
}

/* SMALL MOBILE */
@media(max-width:480px) {

    .escorts-section h2 {
        font-size: 24px;
    }

    .escort-card img {
        height: 380px;
    }
     .escort-cardssss img {
        height: 380px;
    }

}

/* Testimonials Section */

/* TESTIMONIALS SECTION */
.testimonials {
    width: 100%;
    padding: 30px 0;
    background: #050505;
}

.testimonials-container {
    width: 92%;
    max-width: 1250px;
    margin: auto;
}

/* HEADING */
.testimonials h2 {
    color: #fff;
    text-align: center;
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 18px;
}

.testimonials .subtext {
    max-width: 850px;
    margin: auto;
    text-align: center;

    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.9;

    margin-bottom: 55px;
}

/* GRID */
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* CARD */
.testimonial-card {
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 18px;

    padding: 28px 24px;

    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 49, 82, 0.35);
}

/* AVATAR */
.avatar {
    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #ff3152;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 22px;
    font-weight: 700;

    margin-bottom: 22px;
}

/* TEXT */
.testimonial-card p {
    color: #d6d6d6;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 22px;
}

.testimonial-card strong {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* TABLET */
@media(max-width:1100px) {

    .testimonial-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials h2 {
        font-size: 36px;
    }

}

/* MOBILE */
@media(max-width:768px) {

    .testimonials {
        padding: 30px 10px;
    }

    .testimonials h2 {
        font-size: 28px;
    }

    .testimonials .subtext {
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 38px;
    }

    .testimonial-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .avatar {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .testimonial-card p {
        font-size: 13px;
        line-height: 1.8;
    }

    .testimonial-card strong {
        font-size: 13px;
    }

}

/* SMALL MOBILE */
@media(max-width:480px) {

    .testimonials h2 {
        font-size: 24px;
    }

}

/* <!-- city section style  --> */

/* CITIES SECTION */
.cities {
    width: 100%;
    padding: 30px 0;
    background: #050505;
}

.cities h2 {
    color: #fff;
    text-align: center;
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}

.cities .subtext {
    max-width: 850px;
    margin: auto;
    text-align: center;
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 50px;
}

/* CITY LINKS GRID */
.city-links {
    width: 92%;
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* CITY CARD */
.city-links a {
    display: flex;
    align-items: center;
    gap: 12px;

    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.06);

    padding: 16px 18px;

    border-radius: 12px;

    color: #fff;
    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    transition: 0.3s ease;
}

.city-links a:hover {
    background: #161616;
    border-color: rgba(255, 49, 82, 0.4);
    transform: translateY(-3px);
}

/* ICON */
.city-links a img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* TABLET */
@media(max-width:992px) {

    .city-links {
        grid-template-columns: repeat(3, 1fr);
    }

    .cities h2 {
        font-size: 34px;
    }

}

/* MOBILE */
@media(max-width:768px) {

    .cities {
        padding: 30px 10px;
    }

    .cities h2 {
        font-size: 28px;
        padding: 0 15px;
    }

    .cities .subtext {
        font-size: 13px;
        line-height: 1.8;
        width: 92%;
        margin-bottom: 35px;
    }

    .city-links {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .city-links a {
        font-size: 14px;
        padding: 15px 16px;
    }

}

/* SMALL MOBILE */
@media(max-width:480px) {

    .cities h2 {
        font-size: 24px;
    }

    .city-links a {
        font-size: 13px;
    }

}

/* <!-- table style  --> */

/* RATE SECTION */
.city-page-content {
    width: 100%;
    max-width: 1350px;
    margin: auto;
    padding: 30px;
    background-color: #050505;
}

.city-page-content h2 {
    text-align: left;
    color: #fff;
    font-size: 40px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}

.city-page-content p {
    /* max-width: 950px; */
    /* margin: auto; */

    text-align: justify;


    color: #d4d4d4;
    font-size: 15px;
    line-height: 1.9;

    margin-bottom: 16px;
}

/* TABLE WRAPPER */
.rate-table-main {
    width: 92%;
    max-width: 1200px;
    margin: 50px auto 0;

    overflow-x: auto;
    border-radius: 18px;
}

/* TABLE */
.rate-table {
    width: 100%;
    border-collapse: collapse;

    background: #101010;

    overflow: hidden;
    border-radius: 18px;
}

/* TABLE HEAD */
.rate-table thead {
    background: #ff3152;
}

.rate-table thead th {
    color: #fff;
    font-size: 17px;
    font-weight: 600;

    padding: 22px 18px;
    text-align: center;
}

/* TABLE BODY */
.rate-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.3s ease;
}

.rate-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.rate-table tbody td {
    color: #e5e5e5;
    font-size: 15px;
    text-align: center;

    padding: 20px 18px;
}

/* FIRST COLUMN */
.rate-table tbody td:first-child {
    color: #fff;
    font-weight: 600;
}

.whatsapp-btn-table {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    width: 100%;
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    background: #25d366;
    color: #fff;
    border-radius: 12px;

    font-size: 15px;
    font-weight: 700;
    text-decoration: none;

    margin-top: 4px;
    transition: 0.3s ease;
}

.whatsapp-btn i {
    font-size: 18px;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

/* Better equal card alignment */
.escort-info {
    padding: 22px;
    min-height: 265px;
    display: flex;
    flex-direction: column;
}

.desc {
    margin-bottom: 14px !important;
}

/* Mobile */
@media(max-width:480px) {
    .price {
        font-size: 16px;
    }

    .whatsapp-btn {
        min-height: 44px;
        font-size: 14px;
    }
}

/* MOBILE */
@media(max-width:768px) {

    .city-page-content {
        padding: 30px 10px;
    }

    .city-page-content h2 {
        font-size: 28px;
        width: 92%;
    }

    .city-page-content p {
        width: 92%;
        font-size: 13px;
        line-height: 1.8;
    }

    .rate-table-main {
        margin-top: 35px;
    }

    .rate-table {
        min-width: 500px;
    }

    .rate-table thead th {
        font-size: 14px;
        padding: 16px 14px;
    }

    .rate-table tbody td {
        font-size: 13px;
        padding: 16px 14px;
    }

}

/* SMALL MOBILE */
@media(max-width:480px) {

    .city-page-content h2 {
        font-size: 24px;
    }

}

/* <!-- footer style  --> */

/* FOOTER */
.custom-footer {
    width: 100%;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 0 30px;
}

/* CONTAINER */
.footer-container {
    width: 92%;
    max-width: 1300px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;

    margin-bottom: 45px;
}

/* COLUMN */
.footer-column h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* LINKS */
.footer-links,
.city-links-footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Mobile & Tablet - show all links */
.city-links-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Desktop only */
@media (min-width: 992px) {
    .city-links-footer {
        max-height: 350px;
        /* Adjust height as needed */
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 8px;
        scroll-behavior: smooth;
    }

    /* Custom scrollbar */
    .city-links-footer::-webkit-scrollbar {
        width: 6px;
    }

    .city-links-footer::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .city-links-footer::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }

    .city-links-footer::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}

.footer-links a,
.city-links-footer a {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #d2d2d2;
    text-decoration: none;

    font-size: 14px;
    line-height: 1.7;

    transition: 0.3s ease;
}

.footer-links a:hover,
.city-links-footer a:hover {
    color: #ff3152;
    transform: translateX(4px);
}

/* ICONS */
.footer-links a img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* CONTACT */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact p {
    color: #d2d2d2;
    font-size: 14px;
    line-height: 1.8;
}

/* SOCIAL */
.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-social a {
    transition: 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-4px);
}

.footer-social img {
    width: 42px;
    height: 42px;
}

/* COPYRIGHT */
.custom-footer>p {
    text-align: center;
    color: #9f9f9f;
    font-size: 14px;
    line-height: 1.7;

    width: 92%;
    margin: auto;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* TABLET */
@media(max-width:1100px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* MOBILE */
@media(max-width:768px) {

    .custom-footer {
        padding: 30px 0 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-column h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .footer-links a,
    .city-links-footer a,
    .footer-contact p {
        font-size: 13px;
    }

    .footer-social img {
        width: 38px;
        height: 38px;
    }

    .custom-footer>p {
        font-size: 12px;
        padding-top: 20px;
    }

}

/* SMALL MOBILE */
@media(max-width:480px) {

    .footer-column h3 {
        font-size: 20px;
    }

}

/*     <!-- /* why-choose-section */
-->.why-choose-section {
    width: 100%;
    padding: 10px 0;
    background: #05050500;
    overflow: hidden;
}

.why-choose-container {
    width: 92%;
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 55px;
}

/* LEFT CONTENT */
.why-choose-content h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 22px;
}

.why-choose-content p {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* RIGHT IMAGE */
.why-choose-image {
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.why-choose-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.05),
            rgba(255, 49, 82, 0.16));
    z-index: 1;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TABLET + MOBILE */
@media(max-width: 992px) {
    .why-choose-section {
        padding: 55px 0;
    }

    .why-choose-container {
        display: block;
        max-width: 850px;
    }

    .why-choose-content {
        text-align: center;
    }

    .why-choose-content h2 {
        font-size: 34px;
    }

    .why-choose-content p {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-choose-image {
        display: none;
    }
}

/* SMALL MOBILE */
@media(max-width: 480px) {
    .why-choose-section {
        padding: 42px 0;
    }

    .why-choose-content h2 {
        font-size: 26px;
        line-height: 1.35;
    }

    .why-choose-content p {
        font-size: 13px;
        line-height: 1.8;
    }
}

/* Scroll Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff3c61, #b0182f);
    color: white;
    font-size: 24px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: 0.3s;
}

#scrollToTopBtn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #d61642, #7e1124);
}

/* Mobile */
@media (max-width: 768px) {
    #scrollToTopBtn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* <!-- whatsapp and bot btn style  --> */

/* Contact CTA Section */
.contact-cta {
    padding: 80px 20px;
    background: linear-gradient(345deg, #770f0f, #000000);
    text-align: center;
    position: relative;
}

.contact-cta .container {
    max-width: 900px;
    margin: auto;
}

.contact-cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    text-transform: uppercase;
}

.contact-cta p {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* CTA Button */
.contact-cta .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 35px;
    background: #ff2e63;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 46, 99, 0.4);
}

.contact-cta .btn:hover {
    transform: translateY(-3px);
    background: #ff0f50;
    box-shadow: 0 12px 30px rgba(255, 46, 99, 0.6);
}

/* Contact Info */
.contact-info {
    margin-top: 30px;
}

.contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 1.1rem;
    margin: 10px 0;
}

.contact-info img {
    width: 28px;
    height: 28px;
}

/* WhatsApp Floating Button */
.whatsappBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}

.whatsappBtn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: fit-content;
    background: #25D366;
    border-radius: 10px;
    padding: 10px 15px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsappBtn a:hover {
    transform: scale(1.1);
}

.whatsappBtn img {
    width: 35px;
    height: 35px;
}

.whatsappBtn p {
    color: #fff;
    font-size: 14px;
    margin-left: 8px;
}

/* Chat Button */
.chatBtn {
    position: fixed;
    bottom: 105px;
    right: 25px;
    z-index: 999;
}

.chatBtn button {
    width: 65px;
    height: 65px;
    border: none;
    border-radius: 50%;
    background: #4f46e5;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(79, 70, 229, 0.4);
    transition: all 0.3s ease;
}

.chatBtn button:hover {
    transform: scale(1.1);
}

.chatBtn img {
    width: 35px;
    height: 35px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-cta h2 {
        font-size: 1.6rem;
    }

    .contact-cta p {
        font-size: 1rem;
    }

    .whatsappBtn a,
    .chatBtn button {
        width: 55px;
        height: 55px;
    }

    .whatsappBtn img,
    .chatBtn img {
        width: 30px;
        height: 30px;
    }

    .whatsappBtn p {
        display: none;
    }

    .service-grid,
    .travel-grid {
        grid-template-columns: 1fr;
    }
}


/* why-choose-section */
.why-choose-section {
    width: 100%;
    padding: 10px 0;
    background: #05050500;
    overflow: hidden;
}

.why-choose-container {
    width: 92%;
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 55px;
}

/* LEFT CONTENT */
.why-choose-content h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 22px;
}

.why-choose-content p {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* RIGHT IMAGE */
.why-choose-image {
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.why-choose-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.05),
            rgba(255, 49, 82, 0.16));
    z-index: 1;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TABLET + MOBILE */
@media(max-width: 992px) {
    .why-choose-section {
        padding: 55px 0;
    }

    .why-choose-container {
        display: block;
        max-width: 850px;
    }

    .why-choose-content {
        text-align: center;
    }

    .why-choose-content h2 {
        font-size: 34px;
    }

    .why-choose-content p {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-choose-image {
        display: none;
    }
}

/* SMALL MOBILE */
@media(max-width: 480px) {
    .why-choose-section {
        padding: 42px 0;
    }

    .why-choose-content h2 {
        font-size: 26px;
        line-height: 1.35;
    }

    .why-choose-content p {
        font-size: 13px;
        line-height: 1.8;
    }
}










:root {
    --primary-color: #e21b5a;
    --primary-gradient: linear-gradient(135deg, #ff2a6d 0%, #9b00e8 100%);
    --wa-color: #25d366;
    --dark-bg: #0f0f15;
    --card-bg: #1a1a24;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --border-color: rgba(255, 255, 255, 0.08);
    --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* --- Section Layout --- */
.featured-section {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: var(--font-stack);
    padding: 80px 0;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* --- Header --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header .sub-title {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive Scroll System --- */
.profile-scroll-container {
    width: 100%;
}

.profile-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- Premium Card Styling --- */
.profile-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 1px 1px rgba(255, 42, 109, 0.2);
}

/* --- Image & Badges --- */
.image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 115%;
    /* Premium portrait aspect ratio */
    overflow: hidden;
}

.profile-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-card:hover .profile-img {
    transform: scale(1.04);
}

.badge {
    position: absolute;
    top: 15px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.location-badge {
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.price-badge {
    right: 15px;
    background: rgba(226, 27, 90, 0.9);
}

.overlay-tags {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
}

.tag {
    background: rgba(26, 26, 36, 0.85);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Card Body Elements --- */
.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 193, 7, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

.stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffc107;
}

/* --- Languages --- */
.language-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.lang-pill {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

/* --- Pricing Section --- */
.pricing-section {
    margin-bottom: 24px;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.pricing-section h4 {
    margin: 0 0 12px 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.price-tier-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.tier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.tier-name {
    color: var(--text-muted);
}

.tier-price {
    font-weight: 700;
    color: var(--text-main);
}

/* --- Action CTA Buttons --- */
.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: filter 0.2s ease, transform 0.1s ease;
}

.btn:active {
    transform: scale(0.98);
}

.btn-call {
    flex-grow: 1;
    background: var(--primary-gradient);
    color: white;
    padding: 14px;
}

.btn-wa {
    width: 50px;
    height: 50px;
    background: var(--wa-color);
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.btn:hover {
    filter: brightness(1.15);
}

ul {
    color: #d6d6d6;
    margin-bottom: 25px;
    padding-left: 20px;
}

p {
    color: #fff;
    /* margin-bottom: 15px; */
}

h3 {
    color: #fff;
    margin-bottom: 15px;
}

/* .service-grid,
.travel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}


.card {
    background: #101010;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .06);
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
} */

.service-grid,
.travel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: #101010;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .06);
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}


/* Tablet */
@media (max-width: 992px) {
    .service-grid,
    .travel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card {
        padding: 25px;
    }

    .card h3 {
        font-size: 22px;
    }
}


/* Mobile */
@media (max-width: 600px) {
    .service-grid,
    .travel-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .card {
        padding: 20px;
    }

    .card h3 {
        font-size: 20px;
    }
}


     /* =========================================================
   ESCORT SECTION
========================================================= */

        .escorts-section {
            width: 100%;
            padding: clamp(50px, 6vw, 90px) 20px;
            background: #0b0b0b;
        }

        .escorts-layout {
            width: min(1350px, 100%);
            margin: 0 auto;

            display: grid;
            grid-template-columns: minmax(0, 1fr) 320px;

            gap: clamp(22px, 3vw, 40px);

            align-items: start;
        }


        /* =========================================================
   MAIN ESCORT COLUMN
========================================================= */

        .escorts-main {
            width: 100%;
            min-width: 0;
        }


        /* =========================================================
   MAIN HEADING
========================================================= */

        .section-heading {
            margin-bottom: clamp(25px, 4vw, 42px);
        }

        .section-heading span,
        .suggested-heading span {
            display: block;
            margin-bottom: 8px;

            color: #999;

            font-size: 11px;
            font-weight: 700;

            letter-spacing: 3px;
            line-height: 1.4;

            text-transform: uppercase;
        }

        .section-heading h2 {
            margin: 0 0 12px;

            color: #fff;

            font-size: clamp(28px, 3vw, 40px);
            font-weight: 600;

            line-height: 1.2;
        }

        .section-heading p {
            max-width: 680px;

            margin: 0;

            color: #888;

            font-size: 15px;
            line-height: 1.7;
        }


        /* =========================================================
   ESCORT LIST
========================================================= */

        .escort-list {
            display: flex;
            flex-direction: column;

            gap: 22px;

            width: 100%;
        }


        /* =========================================================
   MAIN ESCORT CARD
========================================================= */

        .escort-card {
            display: grid;

            grid-template-columns:
                clamp(180px, 22vw, 250px) minmax(0, 1fr);

            gap: clamp(18px, 2.5vw, 30px);

            width: 100%;

            padding: clamp(12px, 1.5vw, 20px);

            background: #161616;

            border: 1px solid rgba(255, 255, 255, 0.08);

            border-radius: 16px;

            overflow: hidden;

            transition:
                transform 0.25s ease,
                border-color 0.25s ease,
                box-shadow 0.25s ease;
        }

        .escort-card:hover {
            transform: translateY(-3px);

            border-color: rgba(255, 255, 255, 0.17);

            box-shadow:
                0 14px 35px rgba(0, 0, 0, 0.32);
        }


        /* =========================================================
   ESCORT IMAGE
========================================================= */

        .escort-image {
            width: 100%;

            aspect-ratio: 4 / 5;

            overflow: hidden;

            border-radius: 12px;

            background: #222;
        }

        .escort-image img {
            display: block;

            width: 100%;
            height: 100%;

            object-fit: cover;
            object-position: center;

            transition: transform 0.45s ease;
        }

        .escort-card:hover .escort-image img {
            transform: scale(1.04);
        }


        /* =========================================================
   ESCORT INFORMATION
========================================================= */

        .escort-info {
            min-width: 0;

            display: flex;
            flex-direction: column;

            justify-content: center;
            align-items: flex-start;
        }

        .escort-info h3 {
            width: 100%;

            margin: 0 0 8px;

            color: #fff;

            font-size: clamp(20px, 2vw, 27px);
            font-weight: 600;

            line-height: 1.25;
        }


        /* =========================================================
   META
========================================================= */

        .escort-meta {
            display: flex;
            flex-wrap: wrap;

            align-items: center;

            gap: 5px 7px;

            width: 100%;

            margin-bottom: 10px;

            color: #999;

            font-size: 13px;
            line-height: 1.6;
        }

        .escort-meta span {
            color: #555;
        }


        /* =========================================================
   RATING
========================================================= */

        .rating {
            margin: 2px 0 12px;

            color: #ddd;

            font-size: 14px;

            letter-spacing: 2px;

            line-height: 1;
        }


        /* =========================================================
   DESCRIPTION
========================================================= */

        .escort-description {
            width: 100%;
            max-width: 700px;

            margin: 0 0 20px;

            color: #999;

            font-size: 14px;
            line-height: 1.75;
        }


        /* =========================================================
   ESCORT ACTIONS
========================================================= */

        .escort-actions {
            display: flex;

            flex-wrap: wrap;

            gap: 8px;
        }

        .escort-actions a {
            display: inline-flex;

            align-items: center;
            justify-content: center;

            min-height: 40px;

            padding: 9px 16px;

            border-radius: 7px;

            text-decoration: none;

            font-size: 13px;
            font-weight: 600;

            transition:
                background 0.2s ease,
                color 0.2s ease,
                border-color 0.2s ease,
                transform 0.2s ease;
        }

        .escort-actions a:hover {
            transform: translateY(-1px);
        }

        .escort-whatsapp {
            background: #fff;
            color: #111;
        }

        .escort-whatsapp:hover {
            background: #e8e8e8;
        }

        .escort-profile-btn {
            background: transparent;

            border: 1px solid rgba(255, 255, 255, 0.15);

            color: #ddd;
        }

        .escort-profile-btn:hover {
            border-color: rgba(255, 255, 255, 0.3);
        }


        /* =========================================================
   RIGHT SUGGESTED SIDEBAR
========================================================= */

        .suggested-sidebar {
            position: sticky;
            top: 85px;

            align-self: start;

            width: 100%;

            min-width: 0;
        }


        /* =========================================================
   SIDEBAR INNER
========================================================= */

        .suggested-sidebar-inner {
            width: 100%;

            padding: 20px;

            background: #151515;

            border: 1px solid rgba(255, 255, 255, 0.08);

            border-radius: 16px;

            box-shadow:
                0 12px 35px rgba(0, 0, 0, 0.25);
        }


        /* =========================================================
   SUGGESTED HEADING
========================================================= */

        .suggested-heading {
            margin-bottom: 18px;
        }

        .suggested-heading h2 {
            margin: 0 0 7px;

            color: #fff;

            font-size: clamp(20px, 2vw, 24px);
            font-weight: 600;

            line-height: 1.25;
        }

        .suggested-heading p {
            margin: 0;

            color: #888;

            font-size: 13px;
            line-height: 1.55;
        }


        /* =========================================================
   SUGGESTED LIST
========================================================= */

        .suggested-list {
            display: flex;
            flex-direction: column;

            gap: 12px;

            max-height: calc(100vh - 245px);

            overflow-y: auto;

            padding-right: 5px;
        }


        /* =========================================================
   SUGGESTED CARD
========================================================= */

        .suggested-card {
            display: grid;

            grid-template-columns: 82px minmax(0, 1fr);

            gap: 12px;

            width: 100%;

            padding: 9px;

            background: #1c1c1c;

            border: 1px solid rgba(255, 255, 255, 0.06);

            border-radius: 10px;

            transition:
                transform 0.2s ease,
                border-color 0.2s ease;
        }

        .suggested-card:hover {
            transform: translateX(-2px);

            border-color: rgba(255, 255, 255, 0.15);
        }


        /* =========================================================
   SUGGESTED IMAGE
========================================================= */

        .suggested-image {
            position: relative;

            width: 82px;
            height: 105px;

            overflow: hidden;

            border-radius: 8px;

            background: #222;
        }

        .suggested-image img {
            display: block;

            width: 100%;
            height: 100%;

            object-fit: cover;

            transition: transform 0.4s ease;
        }

        .suggested-card:hover .suggested-image img {
            transform: scale(1.04);
        }


        /* =========================================================
   PROFILE STATUS
========================================================= */

        .profile-status {
            position: absolute;

            left: 5px;
            bottom: 5px;

            padding: 3px 6px;

            border-radius: 10px;

            background: rgba(0, 0, 0, 0.78);

            color: #fff;

            font-size: 8px;
            line-height: 1.2;
        }


        /* =========================================================
   SUGGESTED CONTENT
========================================================= */

        .suggested-content {
            min-width: 0;

            display: flex;
            flex-direction: column;

            justify-content: center;
            align-items: flex-start;
        }

        .suggested-content h3 {
            width: 100%;

            margin: 0 0 4px;

            overflow: hidden;

            color: #fff;

            font-size: 15px;
            font-weight: 600;

            line-height: 1.3;

            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .suggested-meta {
            width: 100%;

            margin: 0 0 5px;

            overflow: hidden;

            color: #888;

            font-size: 11px;

            line-height: 1.4;

            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .suggested-rating {
            margin-bottom: 7px;

            color: #ddd;

            font-size: 10px;

            letter-spacing: 1px;

            line-height: 1;
        }


        /* =========================================================
   SUGGESTED BUTTON
========================================================= */

        .suggested-btn {
            display: inline-flex;

            align-items: center;
            justify-content: center;

            min-height: 28px;

            padding: 5px 9px;

            border: 1px solid rgba(255, 255, 255, 0.12);

            border-radius: 5px;

            color: #ccc;

            text-decoration: none;

            font-size: 10px;
            font-weight: 600;

            transition:
                background 0.2s ease,
                color 0.2s ease,
                border-color 0.2s ease;
        }

        .suggested-btn:hover {
            background: #fff;

            border-color: #fff;

            color: #111;
        }


        /* =========================================================
   SIDEBAR SCROLLBAR
========================================================= */

        .suggested-list {
            scrollbar-width: thin;
            scrollbar-color: #444 transparent;
        }

        .suggested-list::-webkit-scrollbar {
            width: 4px;
        }

        .suggested-list::-webkit-scrollbar-track {
            background: transparent;
        }

        .suggested-list::-webkit-scrollbar-thumb {
            background: #444;
            border-radius: 10px;
        }


        /* =========================================================
   LARGE LAPTOP
   1200px - 1399px
========================================================= */

        @media (max-width: 1399px) {

            .escorts-layout {
                grid-template-columns:
                    minmax(0, 1fr) 300px;

                gap: 28px;
            }

        }


        /* =========================================================
   LAPTOP
   1000px - 1199px
========================================================= */

        @media (max-width: 1199px) {

            .escorts-section {
                padding-left: 18px;
                padding-right: 18px;
            }

            .escorts-layout {
                grid-template-columns:
                    minmax(0, 1fr) 270px;

                gap: 22px;
            }

            .suggested-sidebar-inner {
                padding: 16px;
            }

            .suggested-card {
                grid-template-columns: 72px minmax(0, 1fr);
            }

            .suggested-image {
                width: 72px;
                height: 95px;
            }

        }


        /* =========================================================
   SMALL LAPTOP / LARGE TABLET
   900px - 999px
========================================================= */

        @media (max-width: 999px) {

            .escorts-layout {
                grid-template-columns:
                    minmax(0, 1fr) 245px;

                gap: 18px;
            }

            .escort-card {
                grid-template-columns:
                    175px minmax(0, 1fr);

                gap: 18px;
            }

            .escort-info h3 {
                font-size: 21px;
            }

            .escort-description {
                font-size: 13px;
            }

            .suggested-sidebar {
                top: 75px;
            }

        }


        /* =========================================================
   TABLET
   769px - 899px

   Sidebar REMAINS on the right.
========================================================= */

        @media (max-width: 899px) {

            .escorts-layout {
                grid-template-columns:
                    minmax(0, 1fr) 220px;

                gap: 16px;
            }

            .escort-card {
                grid-template-columns:
                    145px minmax(0, 1fr);

                gap: 15px;

                padding: 12px;
            }

            .escort-image {
                border-radius: 10px;
            }

            .escort-info h3 {
                font-size: 19px;
            }

            .escort-meta {
                font-size: 12px;
            }

            .escort-description {
                margin-bottom: 13px;

                font-size: 12px;

                line-height: 1.55;
            }

            .escort-actions a {
                min-height: 36px;

                padding: 7px 11px;

                font-size: 11px;
            }

            .suggested-sidebar-inner {
                padding: 13px;
            }

            .suggested-heading {
                margin-bottom: 13px;
            }

            .suggested-heading h2 {
                font-size: 18px;
            }

            .suggested-heading p {
                font-size: 11px;
            }

            .suggested-card {
                grid-template-columns: 60px minmax(0, 1fr);

                gap: 8px;

                padding: 7px;
            }

            .suggested-image {
                width: 60px;
                height: 80px;
            }

            .suggested-content h3 {
                font-size: 12px;
            }

            .suggested-meta {
                font-size: 9px;
            }

            .suggested-rating {
                font-size: 8px;
            }

            .suggested-btn {
                min-height: 24px;

                padding: 4px 7px;

                font-size: 9px;
            }

        }


        /* =========================================================
   MOBILE
   768px AND BELOW

   Sidebar becomes normal content.
========================================================= */

        @media (max-width: 768px) {

            .escorts-section {
                padding: 55px 15px;
            }

            .escorts-layout {
                display: flex;

                flex-direction: column;

                gap: 40px;
            }

            .escorts-main {
                width: 100%;
            }

            .section-heading {
                margin-bottom: 28px;
            }

            .section-heading h2 {
                font-size: 28px;
            }

            .section-heading p {
                font-size: 14px;
            }


            /* ---------------------------------------------
       Escort card
    --------------------------------------------- */

            .escort-card {
                grid-template-columns:
                    125px minmax(0, 1fr);

                gap: 14px;

                padding: 11px;

                border-radius: 12px;
            }

            .escort-image {
                width: 125px;
                height: 170px;
            }

            .escort-info h3 {
                font-size: 18px;
            }

            .escort-meta {
                font-size: 11px;

                gap: 3px 5px;
            }

            .rating {
                margin: 3px 0 9px;

                font-size: 11px;
            }

            .escort-description {
                margin-bottom: 11px;

                font-size: 11px;

                line-height: 1.5;

                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 3;

                overflow: hidden;
            }

            .escort-actions {
                gap: 5px;
            }

            .escort-actions a {
                min-height: 33px;

                padding: 6px 10px;

                font-size: 10px;
            }


            /* ---------------------------------------------
       Suggested section
    --------------------------------------------- */

            .suggested-sidebar {
                position: static;

                width: 100%;

                max-height: none;

                order: 2;
            }

            .suggested-sidebar-inner {
                padding: 16px;
            }

            .suggested-list {
                display: grid;

                grid-template-columns:
                    repeat(2, minmax(0, 1fr));

                gap: 12px;

                max-height: none;

                overflow: visible;

                padding: 0;
            }

            .suggested-card {
                grid-template-columns:
                    75px minmax(0, 1fr);

                gap: 10px;
            }

            .suggested-image {
                width: 75px;
                height: 95px;
            }

        }


        /* =========================================================
   SMALL MOBILE
   600px AND BELOW
========================================================= */

        @media (max-width: 600px) {

            .escorts-section {
                padding: 45px 12px;
            }

            .escort-list {
                gap: 15px;
            }

            .escort-card {
                display: block;
                grid-template-columns:
                    105px minmax(0, 1fr);

                gap: 11px;

                padding: 9px;
            }

            .escort-image {
                width: 105px;
                height: 145px;
            }

            .escort-info h3 {
                font-size: 16px;
            }

            .escort-meta {
                font-size: 10px;

                line-height: 1.45;
            }

            .rating {
                font-size: 10px;

                letter-spacing: 1px;
            }

            .escort-description {
                font-size: 10px;

                -webkit-line-clamp: 2;
            }

            .escort-profile-btn {
                display: none !important;
            }

            .escort-whatsapp {
                width: auto;

                min-width: 100px;
            }


            /* Suggested cards become vertical */

            .suggested-list {
                grid-template-columns:
                    repeat(2, minmax(0, 1fr));
            }

            .suggested-card {
                display: block;

                padding: 8px;
            }

            .suggested-image {
                width: 100%;
                height: auto;

                aspect-ratio: 4 / 5;

                margin-bottom: 9px;
            }

            .suggested-content h3 {
                font-size: 14px;
            }

            .suggested-meta {
                font-size: 10px;
            }

            .suggested-rating {
                font-size: 9px;
            }

            .suggested-btn {
                width: 100%;
            }

        }


        /* =========================================================
   VERY SMALL MOBILE
   420px AND BELOW
========================================================= */

        @media (max-width: 420px) {
        .escort-card {
            display: block;
        }
            .escorts-section {
                padding-left: 10px;
                padding-right: 10px;
            }

            .section-heading h2 {
                font-size: 25px;
            }

            .section-heading p {
                font-size: 13px;
            }

            .escort-card img {
                display: block;
                height: 280px;
                object-position: top;
                border-radius: 10%;
            }

            /* Main escort */

            .escort-card {
                grid-template-columns:
                    92px minmax(0, 1fr);

                gap: 9px;

                padding: 8px;

                border-radius: 10px;
            }

            .escort-image {
                width: 92px;
                height: 130px;

                border-radius: 8px;
            }

            .escort-info h3 {
                font-size: 15px;

                margin-bottom: 5px;
            }

            .escort-meta {
                font-size: 9px;

                margin-bottom: 5px;
            }

            .rating {
                margin: 2px 0 6px;

                font-size: 9px;
            }

            .escort-description {
                font-size: 9px;

                line-height: 1.4;

                -webkit-line-clamp: 2;

                margin-bottom: 7px;
            }

            .escort-whatsapp {
                min-height: 28px !important;

                padding: 5px 8px !important;

                font-size: 9px !important;
            }


            /* Suggested */

            .suggested-sidebar-inner {
                padding: 12px;
            }

            .suggested-list {
                gap: 9px;
            }

            .suggested-content h3 {
                font-size: 13px;
            }

            .suggested-meta {
                font-size: 9px;
            }

            .suggested-rating {
                font-size: 8px;
            }

        }


        /* =========================================================
   ACCESSIBILITY / TOUCH DEVICES
========================================================= */

        @media (hover: none) {

            .escort-card:hover,
            .suggested-card:hover {
                transform: none;
            }

            .escort-card:hover .escort-image img,
            .suggested-card:hover .suggested-image img {
                transform: none;
            }

        }


        /* =========================================================
   REDUCE MOTION
========================================================= */

        @media (prefers-reduced-motion: reduce) {

            .escort-card,
            .suggested-card,
            .escort-image img,
            .suggested-image img,
            .escort-actions a {
                transition: none;
            }

        }