/* Reset and base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: white;
}

/* Layout helpers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header: make the background live on the header itself */
.nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0; /* avoids 100%+scrollbar overflow */
    background: rgba(0,0,0,0.9);
    z-index: 999;
}

/* Flex row; prevent items from pushing outside on narrow widths */
.nav-container {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 64px; /* consistent height */
    min-height: 64px;
}

/* Let the center nav shrink, keep phone button visible */
.logo {
    font-size: 26px;
    font-weight: 700;
    color: #ff2ebc;
    flex: 0 0 auto;
}

nav {
    flex: 1 1 auto;
    min-width: 0;
}
/* nav can shrink */
.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap; /* wrap instead of overflowing */
}

    .nav-list a {
        text-decoration: none;
        color: #fff;
        font-weight: 500;
        transition: color .3s ease;
    }

        .nav-list a:hover {
            color: #ff2ebc;
        }

/* Keep the call button from wrapping the row */
.call-button {
    flex: 0 0 auto;
    border: 2px solid #ff2ebc;
    padding: 10px 18px;
    border-radius: 6px;
    color: #ff2ebc;
    text-decoration: none;
    transition: all .3s ease;
    white-space: nowrap; /* never break into two lines */
}

    .call-button:hover {
        background: #ff2ebc;
        color: #fff;
    }

/* Ensure page content is not hidden under the fixed header */

/* header height + a little buffer */

/* Hero still fine; you can remove its padding-top now if you like */
.hero {
    padding-top: 0;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .nav-container {
        height: auto;
        padding: 12px 0;
    }

    .site-main {
        padding-top: 0px;
    }
    /* slightly larger for wrapped nav */
}


.logo {
    font-size: 26px;
    font-weight: bold;
    color: #ff2ebc;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

    nav ul li a {
        text-decoration: none;
        color: white;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        nav ul li a:hover {
            color: #ff2ebc;
        }

.call-button {
    border: 2px solid #ff2ebc;
    padding: 10px 18px;
    border-radius: 6px;
    color: #ff2ebc;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .call-button:hover {
        background-color: #ff2ebc;
        color: white;
    }

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    color: white;
    z-index: 1;
    text-align: center;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.7; /* adjust if needed */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}


    .hero-content h3 {
        font-size: 20px;
        color: #00f3ff;
        margin-bottom: 10px;
    }

    .hero-content h1 {
        font-size: 44px;
        margin-bottom: 20px;
    }

        .hero-content h1 span {
            color: #00f3ff;
        }

    .hero-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

.buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


.btn-primary,
.btn-outline {
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    background-color: #00f3ff;
    color: white;
}

    .btn-primary:hover {
        opacity: 0.9;
    }

.btn-outline {
    border: 2px solid white;
    color: white;
}

    .btn-outline:hover {
        background-color: white;
        color: #111;
    }

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .hero-content {
        padding: 20px;
    }

        .hero-content h1 {
            font-size: 32px;
        }
}


/*footer section*/
.site-footer {
    background-color: #111;
    color: #eee;
    padding: 40px 0;
    font-family: 'Segoe UI', sans-serif;
}

    .site-footer .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
    }

    .site-footer h3,
    .site-footer h4 {
        color: #fff;
        margin-bottom: 15px;
    }

    .site-footer p,
    .site-footer ul li {
        color: #ccc;
        font-size: 14px;
    }

    .site-footer ul {
        list-style: none;
        padding: 0;
    }

        .site-footer ul li a {
            color: #ccc;
            text-decoration: none;
        }

            .site-footer ul li a:hover {
                color: #f39c12;
            }

.footer-social .social-icons a {
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 13px;
}



/*seo section*/
.seo-section {
    padding: 60px 20px;
    background-color: #000;
    color: #ccc;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

    .seo-section h2,
    .seo-section h3 {
        color: #00e0e0;
        font-style: italic;
        margin-bottom: 20px;
    }

    .seo-section p {
        max-width: 1000px;
        margin: 0 auto 20px;
        line-height: 1.9;
        font-size: 16px;
        color: #e0e0e0;
    }

    .seo-section ul {
        list-style: none;
        padding: 0;
        max-width: 700px;
        margin: 20px auto;
        color: #ccc;
    }

        .seo-section ul li {
            text-align: left;
            margin: 10px 0;
            padding-left: 20px;
            position: relative;
        }

            .seo-section ul li::before {
                content: '✔️';
                position: absolute;
                left: 0;
                color: #00e0e0;
            }

    .seo-section a {
        color: #00e0e0;
        text-decoration: underline;
    }

.vip-companions-section {
    padding: 80px 20px;
    background: linear-gradient(to right, #fff, #f9f9f9);
    font-family: 'Poppins', sans-serif;
    color: #333;
}

    .vip-companions-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .vip-companions-section .section-title {
        font-size: 36px;
        font-weight: 600;
        color: #b71c50;
        text-align: center;
        margin-bottom: 40px;
        letter-spacing: 1px;
        position: relative;
    }

        .vip-companions-section .section-title::after {
            content: '';
            width: 80px;
            height: 3px;
            background-color: #b71c50;
            display: block;
            margin: 10px auto 0;
            border-radius: 2px;
        }

    .vip-companions-section p {
        font-size: 17px;
        color: #555;
        line-height: 1.9;
        margin-bottom: 25px;
        text-align: justify;
    }

    .vip-companions-section .btn-primary {
        display: inline-block;
        margin-top: 30px;
        padding: 14px 32px;
        background-color: #b71c50;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        border: none;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        text-align: center;
    }

        .vip-companions-section .btn-primary:hover {
            background-color: #93133f;
            box-shadow: 0 5px 15px rgba(183, 28, 80, 0.4);
        }




.escort-section {
    padding: 40px 20px;
}

.escort-title {
    text-align: center;
    font-size: 30px;
    color: #b71c50;
    margin-bottom: 40px;
    font-weight: 700;
    font-style: italic;
}

.escort-card {
    display: flex;
    gap: 20px;
    background-color: #ffffff;
    border: 2px solid #b71c50;
    padding: 20px;
    margin-bottom: 35px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(183, 28, 80, 0.2);
    flex-wrap: wrap;
}

.escort-img {
    width: 180px;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #b71c50;
}

.escort-content {
    flex: 1;
}

    .escort-content h3 {
        color: #b71c50;
        margin: 0 0 10px;
        font-size: 20px;
    }

    .escort-content p {
        color: #333;
        font-size: 16px;
        line-height: 1.6;
    }

.btn-group {
    margin-top: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    margin-right: 10px;
    transition: 0.3s;
}

    .btn.call {
        background-color: #b71c50;
    }

        .btn.call:hover {
            background-color: #9e1644;
        }

    .btn.whatsapp {
        background-color: #25d366;
    }

        .btn.whatsapp:hover {
            background-color: #1eb858;
        }

@media (max-width: 768px) {
    .escort-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .escort-img {
        width: 100%;
        max-width: 280px;
        height: auto;
    }

    .escort-content {
        margin-top: 20px;
    }
}


.escort-section {
    background-color: #ffffff;
    color: black;
    font-family: 'Segoe UI', sans-serif;
    padding: 50px 20px;
}

.escort-container {
    max-width: 900px;
    margin: 0 auto;
}


.escort-heading {
    color: #ff2ebc;
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.escort-subheading {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #ff2ebc;
}

.escort-text {
    font-size: 16px;
    line-height: 1.7;
    color: black;
    margin-bottom: 20px;
}

.escort-price-list {
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    margin: 30px 0;
}

    .escort-price-list div {
        padding: 10px 0;
        border-bottom: 1px solid #444;
        font-size: 16px;
    }


.girl-card-section {
    background-color: #000;
    padding: 50px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.girl-card-title {
    color: #ff2ebc;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.girl-card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.girl-card {
    position: relative;
    width: 200px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .girl-card:hover {
        transform: scale(1.05);
    }

    .girl-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.girl-card-hover {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 15px 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.girl-card:hover .girl-card-hover {
    opacity: 1;
}

.girl-card-hover h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.girl-card-hover p {
    margin: 5px 0 10px;
    font-size: 14px;
    color: #ccc;
}

.book-now-btn {
    background-color: #ff2ebc;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
}

    .book-now-btn:hover {
        background-color: #e014a9;
    }

.girl-card-seo-text {
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
    max-width: 900px;
    margin: 20px auto 40px;
    padding: 0 10px;
    font-family: 'Segoe UI', sans-serif;
}

    .girl-card-seo-text strong {
        color: #ff2ebc;
        font-weight: 600;
    }

    .girl-card-seo-text ul {
        list-style: none;
        padding-left: 0;
        margin-top: 10px;
    }

    .girl-card-seo-text li {
        margin: 6px 0;
        padding-left: 20px;
        position: relative;
    }

        .girl-card-seo-text li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #ff2ebc;
            font-weight: bold;
        }

        .form-select option { color:#111 !important; background:#fff !important; }
