/* =========================
   ROOT VARIABLES
========================= */

p a{
    text-decoration: none;
    color: #ff3b93;
}

:root {
    --primary: #9f1c5b;
    --secondary: #ffd166;
    --dark: #050b1a;
    --radius: 18px;
}

/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #ddd;
    font-family: 'Poppins', sans-serif;
}

/* ======================================================
   INDEX NAVBAR
====================================================== */

.index-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* FULL WIDTH WRAPPER */
.index-navbar-full {
    width: 100%;
    padding: 15px 20px;
}

/* NAVBAR BOX */
.index-navbar-box {
    max-width: 1400px;
    margin: auto;
    padding: 12px 22px;
    background: linear-gradient(135deg, #951e53, #9f1c5b);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.index-navbar-logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
    text-decoration: none;
}

.index-navbar-logo span {
    color: #fff;
}

/* MOBILE TOGGLE */
.index-nav-toggle {
    border: none;
    background: transparent;
}

.index-toggle-icon,
.index-toggle-icon::before,
.index-toggle-icon::after {
    width: 26px;
    height: 2px;
    background: var(--secondary);
    display: block;
    position: relative;
    content: "";
}

.index-toggle-icon::before {
    position: absolute;
    top: -7px;
}

.index-toggle-icon::after {
    position: absolute;
    top: 7px;
}

/* NAV LINKS */
.index-nav-links .nav-link {
    color: var(--secondary);
    font-weight: 600;
    margin: 0 12px;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s ease;
}

.index-nav-links .nav-link:hover {
    color: #fff;
}

/* DROPDOWN */
.index-nav-links .dropdown-menu {
    background: linear-gradient(135deg, #7b0036, #9f1c5b);
    border: none;
    border-radius: 14px;
    padding: 10px 0;
    margin-top: 12px;
    min-width: 200px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.index-nav-links .dropdown-item {
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    transition: 0.3s ease;
}

.index-nav-links .dropdown-item:hover {
    background: rgba(255, 209, 102, 0.15);
    color: #fff;
    padding-left: 28px;
}

.index-nav-links .dropdown-toggle::after {
    border-top-color: var(--secondary);
}

/* TELEGRAM BUTTON (MOBILE + MENU) */
.index-mobile-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.index-telegram-btn,
.telegram-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #dea113;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.index-telegram-btn i,
.telegram-nav-link i {
    font-size: 15px;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 991px) {
    .index-navbar-box {
        flex-wrap: wrap;
    }

    .index-nav-links {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .index-nav-links .nav-link {
        display: block;
        margin: 10px 0;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .index-navbar-full {
        padding: 0;
    }

    .index-navbar-box {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: 12px 16px;
    }

    .index-navbar-logo {
        font-size: 18px;
    }

    .index-mobile-icons {
        margin-left: auto;
    }
}

/* ======================================================
   DESKTOP FIX – MENU RIGHT ALIGN
====================================================== */
@media (min-width: 992px) {

    /* Navbar container */
    .index-navbar-box {
        display: flex;
        align-items: center;
    }

    /* Bootstrap justify-content-center override */
    .index-navbar .navbar-collapse {
        justify-content: flex-end !important;
    }

    /* Menu ko right push */
    #indexNavbar {
        margin-left: auto;
    }

    /* UL items right aligned */
    .index-nav-links {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    /* Proper spacing between items */
    .index-nav-links .nav-item {
        margin-left: 18px;
    }
}




/* ======================================================
   INDEX NAVBAR END
====================================================== */



/* =====================================================
     HERO BANNER START
====================================================== */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* ✅ ADD THIS */
    text-align: center;      /* ✅ ADD THIS */
    background: url("../imagess/banner\ city.webp") center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}


/* DARK + COLOR OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5, 11, 26, 0.85) 35%,
        rgba(5, 11, 26, 0.4) 70%,
        rgba(5, 11, 26, 0.15) 100%
    );
    z-index: 1;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;            /* ✅ ADD */
}


/* SMALL BADGE */
.hero-badge {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--secondary);
    font-weight: 600;
}

/* MAIN HEADING */
.hero-content h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #ff3d6b;
}

/* DESCRIPTION */
.hero-content p {
    font-size: 16px;
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center; /* ✅ ADD */
}


.btn-primary {
    background: #ff3d6b;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #e2335e;
}

.btn-outline {
    border: 2px solid #ff3d6b;
    color: #ff3d6b;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #ff3d6b;
    color: #fff;
}


@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 90vh;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;   /* ❌ flex-start hatao, ✅ center */
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}
/* ======================================================
     HERO BANNER END
====================================================== */



/* ======================================================
   PREMIUM CONTENT SECTION START
====================================================== */

.premium-content-section {
    position: relative;
    background: linear-gradient(180deg, #000000, #050505);
}

/* TOP GOLD LINE */
.premium-content-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffd166, #ffb703);
}

/* WRAPPER */
.premium-content-box {
    margin: auto;
    padding: 0 20px;
}

/* HEADING */
.premium-content-box h2 {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffd166;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* PARAGRAPHS */
.premium-content-box p {
    font-size: 16px;
    line-height: 1.9;
    color: #e0e0e0;
    margin-bottom: 22px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .premium-content-box h2 {
        font-size: 30px;
    }

    .premium-content-box p {
        font-size: 15px;
    }
}

/* ======================================================
   PREMIUM CONTENT SECTION END
====================================================== */



/* ======================================================
     IMAGE LEFT – CONTENT RIGHT SECTION START
====================================================== */
.lr-section {
    background: #991d56;
}

.lr-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* IMAGE */
.lr-image {
    flex: 1;
}

.lr-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* CONTENT */
.lr-content {
    flex: 1;
    color: #fff;
}

.lr-badge {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--secondary);
    font-weight: 600;
}

.lr-content h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.lr-content h2 span {
    color: #ff3d6b;
}

.lr-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 22px;
}

/* POINTS */
.lr-points {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.lr-points li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* BUTTONS */
.lr-buttons {
    display: flex;
    gap: 18px;
}


@media (max-width: 991px) {
    .lr-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .lr-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .lr-content h2 {
        font-size: 32px;
    }
}
/* ======================================================
     IMAGE LEFT – CONTENT RIGHT SECTION END
====================================================== */


/* ======================================================
   INDEX WHY CHOOSE HELLGIRLS SECTION START
====================================================== */
.index-why-section {
    padding: 40px 0;
    background-color: #8b1c50;
}

/* HEADING */
.index-why-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
}

.index-why-heading span {
    color: #ff3d6b;
}

/* GRID */
.index-why-grid {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 420px) 1fr;
    gap: 50px;
    align-items: start;
}

/* LEFT */
.index-why-left {
    color: #ddd;
}

/* POINTS */
.index-why-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.index-why-points li {
    margin-bottom: 14px;
    padding-left: 24px;
    position: relative;
}

.index-why-points li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: #ffd166;
}

/* IMAGE */
.index-why-image {
    grid-column: 2;
}

.index-why-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* RIGHT TOP */
.index-why-right-top {
    color: #ddd;
}

.index-why-right-top h3 {
    font-size: 24px;
    color: #ffd166;
    margin-bottom: 15px;
}

/* RIGHT BOTTOM (FULL WIDTH AUTO) */
.index-why-right-bottom {
    grid-column: 1 / -1;
    margin-top: 30px;
    color: #ccc;
    font-size: 15px;
    line-height: 1.9;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .index-why-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .index-why-right-bottom {
        margin-top: 20px;
    }

    .index-why-heading {
        font-size: 30px;
    }
}



/* ======================================================
   INDEX WHY CHOOSE HELLGIRLS SECTION END
====================================================== */



/* ======================================================
   MIXED ESCORT GALLERY SECTION
====================================================== */

.mixed-gallery-section {
    background: linear-gradient(180deg, #000, #050505);
    padding: 60px 0;
}

.mixed-gallery-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
}

.mixed-gallery-heading span {
    color: #ff3d6b;
}

/* GRID */
.mixed-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARD */
.mixed-gallery-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.mixed-gallery-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* TAG */
.profile-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    color: #fff;
    z-index: 5;
}

.profile-tag.new { background: #22c55e; }
.profile-tag.premium { background: #f59e0b; }
.profile-tag.vip { background: #e11d48; }

/* OVERLAY */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.9),
        rgba(0,0,0,0.25)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 18px; /* 🔥 right side gap fixed */
    color: #fff;
}

/* NAME + AGE */
.gallery-overlay h3 {
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inline-age {
    font-size: 13px;
    font-weight: 600;
    color: #ffd166;
}

/* CATEGORY + STAR */
.category-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.gallery-type {
    font-size: 14px;
    color: #ffd166;
}

.gallery-rating {
    color: #ffd166;
    font-size: 14px;
}

/* BOTTOM BUTTON BAR */
.bottom-actions {
    display: flex;
    gap: 10px;
}

/* 50% WIDTH BUTTONS */
.half-btn {
    flex: 1;
    height: 42px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    color: #fff;
}

/* COLORS */
.call-btn {
    background: #e11d48;
}

.whatsapp-btn {
    background: #22c55e;
}

/* MOBILE */
@media (max-width: 576px) {
    .gallery-overlay h3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}


/* ======================================================
   HOW IT WORKS SECTION
====================================================== */

.how-it-works-section {
    background: linear-gradient(180deg, #000, #050505);
}

.how-it-works-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 50px;
}

.how-it-works-heading span {
    color: #ff3d6b;
}

/* GRID */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* STEP BOX */
.how-step {
    background: linear-gradient(135deg, #7b0036, #9f1c5b);
    border-radius: 22px;
    padding: 30px 26px;
    text-align: center;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    transition: 0.3s ease;
}

.how-step:hover {
    transform: translateY(-8px);
}

/* NUMBER */
.step-number {
    display: inline-block;
    background: #ffd166;
    color: #000;
    font-weight: 900;
    font-size: 18px;
    padding: 10px 16px;
    border-radius: 50%;
    margin-bottom: 18px;
}

/* TITLE */
.how-step h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

/* TEXT */
.how-step p {
    font-size: 14px;
    line-height: 1.7;
    color: #f1f1f1;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .how-it-works-heading {
        font-size: 28px;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================================
   HOW IT WORKS SECTION END
====================================================== */






/* ======================================================
   ESCORT PROFILE HORIZONTAL SECTION START
====================================================== */

.profile-section {
    background: #000;
}

/* GRID */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

/* CARD */
.profile-card {
    display: flex;
    background: linear-gradient(135deg, #c94a86, #e45fa2);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
    width: 100%;
    border: solid 4px #e66e99;
}

/* IMAGE */
.profile-image {
    width: 300px;
    flex-shrink: 0;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.profile-content {
    padding: 30px 34px;
    color: #fff;
    flex: 1;
}

.profile-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 14px;
}

/* BADGES */
.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.profile-badges span {
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* BUTTONS */
.profile-buttons {
    display: flex;
    gap: 14px;
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #9f1c5b;
    padding: 10px 18px;
    border-radius: 22px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .profile-card {
        flex-direction: column;
    }

    .profile-image {
        width: 100%;
        height: 340px;
    }
}

/* ======================================================
   ESCORT PROFILE HORIZONTAL SECTION END
====================================================== */



/* ======================================================
   LOCAL AREAS SEO SECTION
====================================================== */

.local-areas-section {
    background: linear-gradient(180deg, #000, #050505);
}

.local-areas-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.local-badge {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    color: #ffd166;
    font-weight: 600;
    margin-bottom: 10px;
}

.local-areas-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.local-areas-header h2 span {
    color: #ff3d6b;
}

.local-areas-header p {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
}

/* GRID */
.local-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* BOX */
.local-area-box {
    background: linear-gradient(135deg, #0b0b0b, #141414);
    border-radius: 22px;
    padding: 30px 34px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.06);
}

.local-area-box h3 {
    font-size: 22px;
    color: #ffd166;
    font-weight: 700;
    margin-bottom: 18px;
}

/* LIST */
.local-area-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.local-area-box li {
    margin-bottom: 12px;
}

.local-area-box a {
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
    display: inline-block;
}

.local-area-box a:hover {
    color: #ff3d6b;
    padding-left: 6px;
}

/* NOTE */
.local-areas-note {
    max-width: 900px;
    margin: 45px auto 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
    color: #bbb;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .local-areas-grid {
        grid-template-columns: 1fr;
    }

    .local-areas-header h2 {
        font-size: 30px;
    }
}



/* ======================================================
   INDEX HIGH PROFILE LINKS SECTION START
====================================================== */

.index-links-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8b1c50, #b5286b);
}

/* HEADER */
.local-areas-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.local-areas-header .local-badge {
    display: inline-block;
    background: #e9a915;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.local-areas-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.local-areas-header h2 span {
    color: #ffd36a;
}

.local-areas-header p {
    font-size: 16px;
    color: #f1dbe5;
    line-height: 1.7;
}

/* GRID */
.index-links-grid.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* BOX */
.index-links-box {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.index-links-box:hover {
    transform: translateY(-6px);
}

/* BOX TITLE */
.index-links-box h3 {
    background: linear-gradient(135deg, #e9a915, #ffbe2e);
    color: #ffffff;
    padding: 16px 22px;
    font-size: 21px;
    font-weight: 700;
}

/* LIST */
.index-links-list {
    list-style: none;
    padding: 22px 26px;
    margin: 0;
    max-height: 340px;
    overflow-y: auto;
}

/* LIST ITEM */
.index-links-list li {
    font-size: 16px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ICON */
.index-links-list li::before {
    content: "➤";
    color: #ff3d86;
    font-size: 14px;
}

/* LINKS */
.index-links-list a {
    color: #8b1c50;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.index-links-list a:hover {
    color: #e91e63;
    padding-left: 6px;
}

/* SCROLLBAR (OPTIONAL BUT PREMIUM LOOK) */
.index-links-list::-webkit-scrollbar {
    width: 6px;
}
.index-links-list::-webkit-scrollbar-thumb {
    background: #e9a915;
    border-radius: 10px;
}

/* MOBILE */
@media (max-width: 991px) {
    .index-links-grid.two-column {
        grid-template-columns: 1fr;
    }

    .local-areas-header h2 {
        font-size: 26px;
    }
}

/* ======================================================
   INDEX HIGH PROFILE LINKS SECTION END
====================================================== */




/* ======================================================
   INDEX FAQ SECTION START
====================================================== */

.index-faq-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #050b1a, #000);
}

/* HEADING */
.index-faq-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 50px;
}

.index-faq-heading span {
    color: #ff3d6b;
}

/* ACCORDION ITEM */
.index-faq-item {
    background: transparent;
    border: none;
    margin-bottom: 18px;
}

/* BUTTON */
.index-faq-btn {
    background: linear-gradient(135deg, #7b0036, #9f1c5b);
    color: #ffd166;
    font-weight: 700;
    font-size: 16px;
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: none;
}

/* REMOVE DEFAULT BOOTSTRAP ICON */
.index-faq-btn::after {
    filter: brightness(200%);
}

/* ACTIVE STATE */
.index-faq-btn:not(.collapsed) {
    background: linear-gradient(135deg, #9f1c5b, #ff3d6b);
    color: #fff;
}

/* BODY */
.index-faq-body {
    background: #0b0b0b;
    color: #ddd;
    font-size: 15px;
    line-height: 1.8;
    border-radius: 0 0 14px 14px;
    padding: 22px;
    border: 1px solid rgba(255, 61, 107, 0.3);
}

/* MOBILE */
@media (max-width: 768px) {
    .index-faq-heading {
        font-size: 28px;
    }

    .index-faq-btn {
        font-size: 15px;
        padding: 16px;
    }
}

/* ======================================================
   INDEX FAQ SECTION END
====================================================== */



/* ======================================================
   RATE LIST SECTION
====================================================== */

.rate-section {
    background: linear-gradient(180deg, #000, #050505);
    color: #fff;
}

/* HEADING */
.rate-heading h2 {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
}

.rate-heading h2 span {
    color: #ff3d6b;
}

.rate-heading p {
    color: #ccc;
    font-size: 15px;
    margin-top: 10px;
}

.rate-badge {
    display: inline-block;
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
}

/* TABLE WRAPPER */
.rate-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
}

/* TABLE */
.rate-table {
    width: 100%;
    border-collapse: collapse;
    background: #0b0b0b;
    border-radius: 18px;
    overflow: hidden;
}

/* HEAD */
.rate-table thead {
    background: linear-gradient(135deg, #9f1c5b, #ff3d6b);
}

.rate-table th {
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    color: #ffd166;
    text-transform: uppercase;
}

/* BODY */
.rate-table td {
    padding: 15px;
    text-align: left;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.rate-table tr:hover {
    background: rgba(255,61,107,0.08);
}

/* HIGHLIGHT ROW */
.highlight-row {
    background: rgba(255, 61, 107, 0.12);
    font-weight: 700;
}

/* NOTE */
.rate-note p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.8;
}

/* MOBILE */
@media (max-width: 768px) {
    .rate-heading h2 {
        font-size: 28px;
    }

    .rate-table th,
    .rate-table td {
        font-size: 14px;
        padding: 12px;
    }
}
/* ======================================================
     RATE LIST SECTION END
====================================================== */


/* ======================================================
     SIMPLE OUTCALL CONTENT SECTION START
====================================================== */

.simple-content-section {
    background: #000; /* same as body */
}

/* HEADING */
.simple-content-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 22px;
}

.simple-content-heading span {
    color: #ff3d6b;
}

/* PARAGRAPH */
.simple-content-section p {
    font-size: 16px;
    line-height: 1.9;
    color: #ddd;
    margin-bottom: 18px;
}

/* STRONG TEXT */
.simple-content-section strong {
    color: var(--secondary);
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
    .simple-content-heading {
        font-size: 24px;
    }

    .simple-content-section p {
        font-size: 15px;
    }
}



.simple-content-section {
    background: #000;
}

.simple-content-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 22px;
}

.simple-content-heading span {
    color: #ff3d6b;
}

.simple-content-section p {
    font-size: 16px;
    line-height: 1.9;
    color: #ddd;
    margin-bottom: 18px;
}

.simple-content-section strong {
    color: var(--secondary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .simple-content-heading {
        font-size: 24px;
    }

    .simple-content-section p {
        font-size: 15px;
    }
}
/* ======================================================
     SIMPLE OUTCALL CONTENT SECTION END
====================================================== */



/* ======================================================
   FOOTER
====================================================== */
/* FOOTER TOP GOLD LINE */
.site-footer {
    position: relative; /* IMPORTANT */
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        #ffd166,
        #ffb703,
        #ffd166,
        transparent
    );
}

.site-footer {
    background: linear-gradient(135deg, #050b1a, #000);
    padding: 70px 0 30px;
    color: #ddd;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* LOGO */
.footer-logo {
    font-size: 32px;
    font-weight: 900;
    color: var(--secondary);
}

.footer-logo span {
    color: #ff3d6b;
}

/* ABOUT */
.footer-about p {
    font-size: 15px;
    line-height: 1.8;
    margin: 18px 0;
}

/* BADGES */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-badges span {
    border: 1px solid var(--secondary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--secondary);
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 18px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff3d6b;
    padding-left: 6px;
}

/* CONTACT */
.footer-contact p {
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: #22c55e;
    margin-right: 8px;
}


/* ICONS */
.footer-icons {
    margin-top: 15px;
    display: flex;
    gap: 14px;
}

.footer-icons a {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom .copyright {
    margin-top: 10px;
    color: #777;
}

/* MOBILE */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-badges,
    .footer-icons {
        justify-content: center;
    }
}











/* ======================================================
   INDEX HERO BANNER START
====================================================== */

.index-hero-banner {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url("https://images.unsplash.com/photo-1529626455594-4ff0802cfb7e")
        center / cover no-repeat;
    overflow: hidden;
}

.index-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.2)
    );
    z-index: 1;
}

.index-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #fff;
}

/* TAGLINE */
.index-hero-tagline {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff3d6b;
    margin-bottom: 12px;
}

/* TITLE */
.index-hero-title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 15px;
}

.index-hero-title span {
    color: #ff3d6b;
}

/* TEXT */
.index-hero-text {
    font-size: 17px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 30px;
}

/* BUTTONS */
.index-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.index-btn-primary {
    background: linear-gradient(135deg, #ff3d6b, #ff004c);
    color: #fff;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.index-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 61, 107, 0.4);
}

.index-btn-outline {
    border: 1px solid #ff3d6b;
    color: #ff3d6b;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.index-btn-outline:hover {
    background: #ff3d6b;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .index-hero-title {
        font-size: 38px;
    }

    .index-hero-text {
        font-size: 15px;
    }
}

/* ======================================================
   INDEX HERO BANNER END
====================================================== */


/* ======================================================
   CONTACT-US INTRO SECTION START
====================================================== */
.contact-us-intro-section{
    padding:80px 15px;
    background:#050b1a;
    color:#ddd;
    text-align:center;
}
.contact-us-title{
    font-size:40px;
    font-weight:900;
    color:#ffd166;
}
.contact-us-title span{color:#ff3d6b;}
.contact-us-text{
    max-width:800px;
    margin:15px auto;
    line-height:1.8;
}
/* ======================================================
   CONTACT-US INTRO SECTION END
====================================================== */


/* ======================================================
   CONTACT-US QUICK CARDS START
====================================================== */
.contact-us-cards-section{
    background:#0b0f1a;
    padding:70px 15px;
}
.contact-us-cards-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}
.contact-us-card{
    background:#111;
    border:2px solid #e91e63;
    border-radius:18px;
    padding:30px;
    text-align:center;
    color:#fff;
}
.contact-us-card.highlight{
    background:linear-gradient(135deg,#981e55,#701135);
}
.contact-us-card i{
    font-size:36px;
    margin-bottom:15px;
    color:#ffd166;
}
.contact-us-card a{
    color:#25d366;
    font-weight:700;
    text-decoration:none;
}
/* ======================================================
   CONTACT-US QUICK CARDS END
====================================================== */


/* ======================================================
   CONTACT-US FORM SECTION START
====================================================== */
.contact-us-form-section{
    background:#050b1a;
    padding:80px 15px;
}
.contact-us-form input,
.contact-us-form textarea{
    width:100%;
    padding:14px;
    border-radius:10px;
    border:none;
}
.contact-us-form button{
    background:#ff3d6b;
    color:#fff;
    padding:14px 40px;
    border:none;
    border-radius:30px;
    font-weight:700;
}
/* ======================================================
   CONTACT-US FORM SECTION END
====================================================== */


/* ======================================================
   CONTACT-US AVAILABILITY SECTION START
====================================================== */
.contact-us-availability-section{
    background:#0b0f1a;
    padding:60px 15px;
}
.contact-us-list{
    list-style:none;
    max-width:600px;
    margin:auto;
}
.contact-us-list li{
    padding:8px 0;
}
/* ======================================================
   CONTACT-US AVAILABILITY SECTION END
====================================================== */


/* ======================================================
   CONTACT-US PRIVACY SECTION START
====================================================== */
.contact-us-privacy-section{
    background:#981e55;
    padding:60px 15px;
    color:#fff;
    text-align:center;
}
/* ======================================================
   CONTACT-US PRIVACY SECTION END
====================================================== */


/* ======================================================
   CONTACT-US LOCATION SECTION START
====================================================== */
.contact-us-location-section{
    background:#050b1a;
    padding:60px 15px;
    color:#ddd;
}
/* ======================================================
   CONTACT-US LOCATION SECTION END
====================================================== */


/* ======================================================
   CONTACT-US FAQ SECTION START
====================================================== */
.contact-us-faq-section{
    background:#0b0f1a;
    padding:70px 15px;
}
.contact-us-faq-item{
    max-width:700px;
    margin:15px auto;
}
/* ======================================================
   CONTACT-US FAQ SECTION END
====================================================== */
