
    /* <!-- 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%;
        }

        /* 🔥 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;
        }

        /* 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;
        }

        .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;
            }

        }

        @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;
            }

        }

        /* 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;
            }

        }

        /* 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;
            }

        }

        /* 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: 80px 0; */
        }

        .content-container {
            width: 92%;
            max-width: 1200px;
            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: #ff3152;
            color: #fff;
            text-decoration: none;
            padding: 14px 30px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            transition: 0.3s ease;
        }

        .cta-box a:hover {
            background: #ff163d;
            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 0;
            }

            .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 0;
        }

        .faq-container {
            width: 92%;
            max-width: 1100px;
            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 0;
            }

            .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 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .disclaimer-container {
            width: 92%;
            max-width: 1100px;
            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 0;
            }

            .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%;
            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;
        }

        /* 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 */
        /* @media(max-width:768px) {

            .escorts-section {
                padding: 40px 0;
            }

            .escorts-section h2 {
                font-size: 28px;
            }

            .escorts-section>p {
                width: 92%;
                font-size: 13px;
                line-height: 1.8;
                margin-bottom: 38px;
            }

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

            .escort-card img {
                height: 420px;
            }

            .escort-info {
                padding: 20px;
            }

            .escort-info h3 {
                font-size: 22px;
            }

            .escort-info p {
                font-size: 13px;
            }

            .desc {
                font-size: 12px !important;
            }

        } */

        /* 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;
            }

            @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;
            }

        }
   
    /* 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 0;
            }

            .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 0;
            }

            .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: 0 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 0;
            }

            .city-page-content h2 {
                font-size: 28px;
                width: 92%;
                margin: 0 auto 18px;
            }

            .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: 280px;
                /* 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;
            }
        }
   

/* 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);
}

