/********** Template CSS **********/



/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* =========================================
   GLOBAL HEADING COLOR FIX
   ========================================= */


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
    border-radius: 50px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: inherit;
}

.btn-primary {
    color: var(--bs-white);
}


/*** Navbar ***/
.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 40px 0;
    color: var(--bs-white);
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.bg-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--bs-light);
    }
}

@media (min-width: 992px) {
    .navbar.bg-dark .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 100px;
    background: rgba(0, 0, 0, 0); /* Updated to 0 opacity */
    z-index: 1;
}
.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 250px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 200px;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.webp) top center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-white);
}


/*** Title ***/
.title {
    margin-bottom: 2rem;
}

.title .title-left,
.title .title-center,
.title .title-right {
    display: inline-block;
    text-transform: uppercase;
    overflow: hidden;
}

.title .title-center {
    text-align: center;
}

.title .title-right {
    text-align: right;
}

.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
    position: relative;
    display: inline-block;
    top: -29px;
    font-size: 18px;
    font-weight: 300;
}

.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    top: 9px;
    border-bottom: 1px solid var(--bs-white);
}

.title .title-left h5::after,
.title .title-center h5::after {
    left: calc(100% + 15px);
}

.title .title-right h5::before,
.title .title-center h5::before {
    right: calc(100% + 15px);
}

.title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
    border-bottom: 1px solid var(--bs-white);
}


/*** Service ***/
.service-item {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
}

.service-item .service-img {
    position: relative;
    display: inline-block;
    width: 100%;
}

.service-item .service-img img {
    border: 5px solid #ffffff;
    border-radius: 15px;
}


.service-item.service-item-left {
    border-radius: 500px 0 0 500px;
    background: #e41779; /* Changed to custom dark red */
}

.service-item.service-item-right {
    border-radius: 0 500px 500px 0;
    background: #e41779; /* Changed to custom dark red */
}

@media (max-width: 767.98px) {
    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: #e41779; /* Changed to custom dark red */
        text-align: center;
    }
}


/*** Team ***/
.team-item {
    position: relative;
}

.team-item .team-body img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.team-item .team-name {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
}

.team-item .team-body {
    position: relative;
    overflow: hidden;
}

.team-item .team-body .team-before,
.team-item .team-body .team-after {
    position: absolute;
    content: "";
    width: 0;
    height: calc(100% - 60px);
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .5s;
}

.team-item .team-body .team-after {
    left: auto;
    right: 0;
}

.team-item .team-body .team-before {
    text-align: right;
}

.team-item:hover .team-body .team-before,
.team-item:hover .team-body .team-after {
    width: 50%;
}

.team-item .team-body .team-before span,
.team-item .team-body .team-after span {
    margin: 5px;
    color: var(--bs-white);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-body .team-before span,
.team-item:hover .team-body .team-after span {
    opacity: 1;
    transition-delay: .2s;
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--bs-dark);
    border-radius: 100px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.testimonial-item img {
    border: 3px solid #ffffff; /* Adds a solid white boundary */
    border-radius: 12px !important; /* Gives the corners a nice round effect */
}


/*** Footer ***/
@keyframes footerAnimatedBg {
	0% {
        background-position: 0 0;
    }

	100% {
        background-position: -1000px 0;
    }
}

.footer {
	background-image: url(../img/footer-bg.webp);
	background-position: 0px 0px;
    background-repeat: repeat-x;
	animation: footerAnimatedBg 50s linear infinite;
}





/* =========================
   BASE HEADER
========================= */

.custom-header {
    font-family: Arial, sans-serif;
    background-color: #e41779;
    color: #fff;
    width: 100%;
}

.custom-header * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* =========================
   HEADER LAYOUT
========================= */

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    max-width: 1400px;
    gap: 50px;
    margin: auto;
}

.logo-container {
    padding: 10px 0;
}

.text-logo {
    font-family: 'Tan Kindred', serif;
    font-weight: bold;
    font-size: 25px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: font-size 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.text-logo:hover {
    color: #ffc107;
}

/* =========================
   NAVIGATION (DESKTOP)
========================= */

.main-nav {
    background: #e41779;
    border-bottom: 1px solid #7a0e2a;
}

.nav-menu {
    display: flex;
    align-items: center;
    padding: 0;
    list-style: none;
    margin: auto;
}

.nav-menu a {
    display: block;
    padding: 15px 18px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}

.nav-menu a:hover,
.nav-menu li.active a {
    background: #e41779;
}

/* =========================================
   WHATSAPP & CALL BUTTONS (GLOBAL)
   ========================================= */
.btn-whatsapp-solid {
    background-color: #25D366 !important;
    border: 2px solid #128C7E !important;
    color: #ffffff !important;
    border-radius: 8px !important; /* Adds the requested curve */
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important; /* Prevents text from folding */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-whatsapp-solid:hover {
    background-color: #128C7E !important;
    border-color: #075E54 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

@media (min-width: 901px) {
    body {
        /* Allow image to tuck slightly under the header to guarantee 0px gap */
        padding-top: 48px !important; 
    }
    .custom-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        transition: transform 0.3s ease-in-out; /* Makes the hide/show smooth */
    }

    /* Applies cover effect on desktop without a strict "fixed" pixel height */
    .hero-main-img {
        object-fit: cover !important;
        max-height: 85vh !important; /* Prevents the image from being taller than the screen */
        width: 100% !important;
        filter: brightness(0.6); /* Adds the requested dark fade */
        /* Fades the edges smoothly into the dark background */
        -webkit-mask-image: radial-gradient(ellipse at center, black 55%, transparent 100%);
        mask-image: radial-gradient(ellipse at center, black 55%, transparent 100%);
    }
}


/* =========================================
   FLOATING CONTACT BUTTONS
   ========================================= */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 28px;
    text-decoration: none;
    transition: transform 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
}

.Whatsapp-float {
    background-color: #25D366; /* Official WhatsApp Green */
    animation: pulse-Whatsapp 2s infinite;
}

.call-float {
    background-color: #007bff; /* Phone Blue */
    animation: pulse-call 2s infinite;
    animation-delay: 1s; /* Alternating pulse */
}

@keyframes pulse-Whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-call {
    0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 123, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* =========================================
   FAQ ACCORDION CUSTOM STYLES
   ========================================= */
.custom-accordion .accordion-item {
    border: 1px solid #333;
    overflow: hidden;
}
.custom-accordion .accordion-button {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    box-shadow: none !important;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
}
.custom-accordion .accordion-button:not(.collapsed) {
    color: #e41779 !important; /* Primary Theme Color */
    background-color: #111111 !important;
}
.custom-accordion .accordion-button::after,
.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1); /* Forces the dropdown arrow to be white */
}
.custom-accordion .accordion-body {
    background-color: #0d0d0d;
    color: #d1d5db;
    line-height: 1.6;
    padding: 1.25rem 1.5rem;
}

/* =========================================
   KEYWORD LOCATION BOXES
   ========================================= */
.keyword-box {
    border: 1px solid #ffffff;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100%;
}

.keyword-box:hover {
    background-color: #ffffff;
    color: #e41779;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.keyword-box i {
    font-size: 16px;
    color: #ffc107;
    transition: all 0.3s ease;
}

.keyword-box:hover i {
    color: #e41779;
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(228, 23, 121, 0.2);
    border-color: #e41779;
}

.pricing-card.premium {
    background-color: #e41779;
    border-color: #e41779;
    transform: scale(1.05); /* Highlight the middle card */
    z-index: 2;
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.pricing-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    font-size: 15px;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-card.premium .pricing-list li {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.pricing-price {
    font-weight: 700;
    color: #ffc107;
    font-size: 16px;
}

@media (max-width: 991.98px) {
    .pricing-card.premium {
        transform: scale(1);
    }
    .pricing-card.premium:hover {
        transform: translateY(-5px);
    }
}
/* =========================
   MOBILE BUTTON
========================= */

.mobile-menu-toggle {
    display: none;
    font-size: 22px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
}

/* =========================
   MOBILE STYLES
========================= */

@media (max-width: 900px) {

    body {
        padding-top: 61px !important; /* Exact height of the mobile header */
    }

    .custom-header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    .nav-container {
        padding: 10px 15px;
    }

    .text-logo {
        font-size: 20px;
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: -15px !important; /* Increased space to clearly pull it away from the right edge */
    }

    /* slide menu */
    .nav-menu {
        position: absolute;
        top: 100%; /* Start directly below the header */
        margin-top: -1px; /* Pulls the menu up slightly to close any small gaps */
        left: -100%;
        width: 50%;
        height: calc(100vh - 61px); /* Full viewport height minus header */
        background: #e41779;
        flex-direction: column;
        justify-content: flex-start; /* Align items to the top instead of centering them */
        align-items: flex-start; /* Align content to the left side */
        margin: 0;
        transition: 0.3s ease;
        z-index: 999; 
        display: flex;
        overflow-y: auto; /* Allow scrolling within the menu if content is long */
    }

    .nav-menu.show {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 15px 20px;
        border-bottom: 1px solid #7a0e2a;
        width: 100%;
        text-align: left;
        display: block;
    }
}


/* header cloesl */







/* footer  */
/* Footer Base Styles */
.site-footer {
    background-color: #1a2530; /* Dark slate matching the image */
    color: #ffffff;
    padding: 60px 20px 40px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    border-top: 1px solid #33475b; /* Optional: adds a subtle line above the footer */
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 30px;
    margin-bottom: 10px;
}

.social-icons a {
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    transition: opacity 0.2s ease-in-out;
}

.social-icons a:hover {
    opacity: 0.7;
}

/* Logo */
.footer-logo {
    margin-bottom: -5px;
}

.logo-img {
    height: 35px; /* Adjust based on your actual logo file */
    width: auto;
}

.footer-logo .text-logo {
    color: #e41779;
}

/* Copyright Notice */
.footer-copyright p {
    margin: 0;
    font-size: 14px;
    color: #b0c0d0; /* Slightly muted gray/blue text */
    letter-spacing: 0.5px;
}

/* Bottom Links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.footer-links a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline; /* Matches the links in the image */
    text-underline-offset: 4px; /* Gives the underline some breathing room */
}

.footer-links a:hover {
    color: #ff7a59; /* Optional: HubSpot orange hover effect */
}

.footer-links .separator {
    color: #b0c0d0;
    font-weight: 300;
}

/* Footer Disclaimer */
.footer-disclaimer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #33475b;
    font-size: 12px;
    color: #8898aa;
    text-align: justify;
    line-height: 1.6;
    width: 100%;
}

.footer-disclaimer strong {
    color: #e41779;
}

/* footer cloes */







/* =========================================================
   RECOMMENDED ESCORTS SECTION STYLES
   ========================================================= */

.escort-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.escort-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(140, 30, 58, 0.2);
    border-color: #e41779;
}


.escort-name {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.escort-price {
    color: #ffc107; /* Whatsapprning yellow/gold */
    font-weight: 700;
    font-size: 15px;
}

.escort-img-wrapper {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.escort-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
}

.escort-img-wrapper .img-secondary {
    opacity: 0;
}

.escort-card:hover .img-primary {
    opacity: 0;
}

.escort-card:hover .img-secondary {
    opacity: 1;
}

.status-badge {
    position: absolute;
    bottom: 15px;
    top: auto;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 15;
}

.dot-green {
    width: 8px;
    height: 8px;
    background-color: #28a745;
    border-radius: 50%;
    box-shadow: 0 0 6px #28a745;
}

.dot-red {
    width: 8px;
    height: 8px;
    background-color: #dc3545;
    border-radius: 50%;
    box-shadow: 0 0 6px #dc3545;
}

.rating-badge {
    position: absolute;
    bottom: 15px;
    top: auto;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #fff;
    z-index: 15;
}

.price-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    padding: 15px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 10;
    color: #fff;
    font-size: 13px;
}

.escort-card:hover .price-overlay {
    transform: translateY(0);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.header {
    font-weight: bold;
    color: #e41779; /* Primary red */
    border-bottom: 1px solid #e41779;
    margin-bottom: 5px;
}

.card-footer-custom {
    display: block;
    padding: 15px;
    background: #0d0d0d;
    border-top: 2px solid #e41779;
}

.location-info {
    display: flex;
    flex-direction: column;
}

.location-info .location {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.location-info .figure {
    color: #a0a0a0;
    font-size: 12px;
}

.favorite-btn {
    background: transparent;
    border: 1px solid #e41779;
    color: #e41779;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    cursor: pointer;
}

.favorite-btn:hover {
    background: #e41779;
    color: #fff;
}

/* =========================================================
   ESCORT CAROUSEL CUSTOM STYLES
   ========================================================= */

.escort-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.escort-carousel .owl-nav .owl-prev,
.escort-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a !important;
    color: #fff !important;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
    border: 1px solid #333 !important;
}

.escort-carousel .owl-nav .owl-prev:hover,
.escort-carousel .owl-nav .owl-next:hover {
    background: #e41779 !important;
    border-color: #e41779 !important;
}

.escort-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.escort-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: #333 !important;
    margin: 0 5px;
    border-radius: 50%;
    transition: 0.3s;
}

.escort-carousel .owl-dot.active {
    background: #ffffff !important;
    width: 25px;
    border-radius: 10px;
}

/* =========================================================
   MOBILE PARAGRAPH ALIGNMENT (JUSTIFY)
   ========================================================= */
@media (max-width: 767.98px) {
    p {
        text-align: justify !important;
    }
}

/* =========================================
   LOCATION CARDS STYLES
   ========================================= */

.location-card {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255,255,255,0.1);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    border-color: #ffc107;
}

.loc-img-wrapper {
    width: 100%;
    height: 220px;
}

.loc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-card:hover .loc-img {
    transform: scale(1.1);
}

.loc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.loc-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(140, 30, 58, 0.9); /* Primary Red Background Strip */
    padding: 12px;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.loc-info i {
    color: #ffc107; /* Whatsapprning yellow for the map pin */
    font-size: 18px;
    transition: all 0.3s ease;
}

.location-card:hover .loc-info {
    background-color: #ffc107; /* Strip turns yellow on hover */
    color: #000000; /* Text turns black on hover */
}

.location-card:hover .loc-info i {
    color: #000000; /* Icon turns black on hover */
}

.loc-main-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.2rem;
}

.loc-subtitle {
    color: #ffc107;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: -5px;
}

.loc-description {
    color: #d1d5db;
    font-size: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.loc-link {
    color: #ffc107;
    text-decoration: underline;
}

.loc-link:hover {
    color: #ffffff;
}

/* =========================================
   BLOG CARDS STYLES
   ========================================= */
.blog-card {
    display: block;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    border-color: #e41779;
}

.blog-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-title-wrapper {
    background-color: #0d0d0d;
    border-top: 2px solid #e41779;
}

.blog-title {
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #ffc107 !important; /* Text changes to yellow on hover */
}



/* cloes  csss?????? */












/* =========================================
   SURPRISE BAG SECTION
   ========================================= */

/* Main Container Background */
.surprise-wrapper {
    background-color: #691313;
    border-radius: 12px;
    padding: 50px;
}

/* Typography */
.surprise-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fcd34d; /* Amber/Yellow color */
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.surprise-title .highlight-red {
    color: #f87171; /* Coral/Red color */
}

.surprise-desc {
    color: #e2e8f0; /* Light gray text */
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Yellow Button */
.btn-surprise {
    display: inline-block;
    background-color: #f59e0b; /* Orange/Yellow */
    color: #000000;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-surprise:hover {
    color: #000000;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* 3x3 Grid Category Boxes */
.cat-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    aspect-ratio: 1 / 1; /* Makes the box a perfect square */
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.cat-box:hover {
    transform: translateY(-5px);
}

/* Icons inside the boxes */
.cat-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    /* Forces colored images to become pure white */
    filter: brightness(0) invert(1);
}

/* Specifically forces the icon in the yellow box to be black */
.black-icon {
    filter: brightness(0) !important;
}

/* Text inside the boxes */
.cat-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
}

/* Box Background Colors based on image */
.bg-blue { background-color: #3b82f6; }
.bg-pink { background-color: #ec4899; }
.bg-red { background-color: #ef4444; }
.bg-yellow { background-color: #eab308; }
.bg-dark-blue { background-color: #2563eb; }
.bg-light-blue { background-color: #0ea5e9; }
.bg-teal { background-color: #0d9488; }
.bg-rose { background-color: #f43f5e; }
.bg-green { background-color: #22c55e; }

/* Responsive adjustments for Mobile */
@media (max-width: 768px) {
    .surprise-wrapper {
        padding: 30px 20px;
    }
    .surprise-title {
        font-size: 2rem;
    }
    .cat-title {
        font-size: 12px;
    }
}




/* cloes css34343 */













/* =========================================
   CUSTOM PROFILE CARDS (8-Grid Layout)
   ========================================= */

.custom-profile-card {
    background-color: #1a2530; /* The requested Dark Blue/Grey color */
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Slight subtle border */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.custom-profile-card:hover {
    transform: translateY(-5px);
    border-color: #ff4757; /* Slight red glow on hover (optional) */
}

/* Image Section & Badge */
.card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Makes the image a perfect square */
    overflow: hidden;
}

.card-img-wrapper .profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-verified {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff3366; /* Vibrant red */
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

/* Body Content */
.card-body-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Pushes buttons to the bottom automatically */
}

.card-body-content .profile-name {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    /* Limit title to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-body-content .profile-desc {
    color: #94a3b8; /* Light slate/grey text */
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
    /* Limit description to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Location & Time Meta Data */
.profile-meta {
    display: flex;
    gap: 15px;
    color: #cbd5e1;
    font-size: 11px;
    margin-bottom: 20px;
    margin-top: auto; /* Pushes it down right above the buttons */
    align-items: center;
}

.profile-meta i {
    margin-right: 4px;
}

.text-success {
    color: #10b981 !important; /* Brighter green for the icons */
}

/* Buttons Wrapper */
.profile-buttons {
    display: flex;
    gap: 10px; /* Space between the two buttons */
    width: 100%;
}

/* Common Button Styles */
.btn-call-action, .btn-Whatsapp-action {
    flex: 1; /* Makes them exactly 50% width each */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.btn-call-action:hover, .btn-Whatsapp-action:hover {
    opacity: 0.85;
}

.btn-call-action {
    background-color: #ef4444; /* Red button */
}

.btn-Whatsapp-action {
    background-color: #10b981; /* Green WhatsApp button */
}

/* Global Spacing Overrides */
.mt-minus-40 {
    margin-top: -40px !important;
    position: relative;
    z-index: 10;
}

/* =========================================
   MOBILE SPECIFIC OVERRIDES (< 768px)
   ========================================= */
@media (max-width: 767.98px) {
    /* Hero Image adjustments */
    .hero-main-img {
        min-height: 250px !important;
        max-height: 250px !important;
        filter: brightness(0.6); /* Adds the requested dark fade */
        /* Fades the edges smoothly into the dark background */
        -webkit-mask-image: radial-gradient(ellipse at center, black 55%, transparent 100%);
        mask-image: radial-gradient(ellipse at center, black 55%, transparent 100%);
    }

    /* Justify text for the main heading */
    .text-justify-mobile {
        text-align: justify !important;
    }

        /* Restrict main headlines to 2-3 lines max on mobile */
        .title h1,
        .surprise-title,
        .loc-main-title,
        .service-text h3 {
            font-size: 1.5rem !important;
            line-height: 1.3 !important;
            display: -webkit-box !important;
            -webkit-line-clamp: 3 !important;
            -webkit-box-orient: vertical !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
        }

        .title h1.display-4 {
            font-size: 1.75rem !important;
        }

    /* Crush the massive top/bottom empty space across all sections on mobile */
    .py-5, .pt-5, .pb-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    .mt-4, .mt-5 {
        margin-top: 1rem !important;
    }
    .mb-4, .mb-5 {
        margin-bottom: 1.5rem !important;
    }

    /* Reduce top space of specific sections via negative margin */
    .mob-mt-minus-60 {
        margin-top: -60px !important;
        position: relative;
        z-index: 10;
    }

    /* Stop buttons from overflowing screen on mobile */
    .btn-whatsapp-solid {
        padding-left: 8px !important;
        padding-right: 8px !important;
        font-size: 13px !important;
    }

    /* Hide Escort Carousel Nav (Prev/Next) on Mobile */
    .escort-carousel .owl-nav {
        display: none !important;
    }
}




/* cloes kjflkdfj */