:root {
    --primary-color: #e0006c;
    --primary-dark-color: #a0004a;
    --primary-light-color: #ff79ba;
    --black-dark: #000;
    --primary-gradient: linear-gradient(90deg, #e0006c 0%, #a0004a 100%);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
}

/* .hero-banner {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(224, 0, 108, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

@media (max-width: 991px) {
    .hero-banner {
        height: 40vh;
    }
} */

/* =========================
   HERO BANNER STYLES
   ========================= */
.hero-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* prevents CLS before image loads */
    max-height: 70vh;
    /* limits height on desktops */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    contain: layout paint;
    /* isolates rendering area */
    isolation: isolate;
    /* separates stacking context */
}

/* Hero Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    will-change: transform, opacity;
    transition: opacity 1.2s ease, transform 1.2s ease;
    opacity: 0;
}

.hero-bg[src] {
    opacity: 1;
}

/* Overlay (semi-transparent gradient) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(224, 0, 108, 0.45), rgba(0, 0, 0, 0.25));
    z-index: 1;
    pointer-events: none;
    /* improves interactivity */
}

/* Hero Text Content */
.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    will-change: opacity, transform;
    animation: fadeUp 1s ease forwards;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin: 0;
}

/* Fade-up animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Tweaks */
@media (max-width: 991px) {
    .hero-banner {
        aspect-ratio: 3 / 2;
        max-height: 60vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* Navbar css */
.custom-navbar {
    background: var(--black-dark);
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(224, 0, 108, 0.08);
    position: relative;
    z-index: 10;
}

.navbar-logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-decoration: none;
}

.navbar-logo img {
    height: 48px;
    margin-right: 12px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 0;
    position: relative;
    /* Ensure stacking context for dropdowns */
}

.navbar-menu li {
    list-style: none;
    position: relative;
}

.navbar-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.navbar-menu a.active,
.navbar-menu a:focus,
.navbar-menu a:hover {
    color: #fff;
    background: var(--primary-color);
}

/* Dropdown */
.navbar-menu .dropdown {
    position: relative;
}

.navbar-menu .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 4px 16px rgba(224, 0, 108, 0.10);
    border-radius: 0;
    overflow: hidden;
    z-index: 100;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
}

.navbar-menu .dropdown:hover .dropdown-menu,
.navbar-menu .dropdown:focus-within .dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.navbar-menu .dropdown-menu a {
    color: var(--primary-color);
    background: none;
    border-radius: 0;
    padding: 8px 16px;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    width: 100%;
}

.navbar-menu .dropdown-menu a:hover,
.navbar-menu .dropdown-menu a.active {
    background: var(--primary-color);
    color: #fff;
}

@media screen and (min-width:1200px) and (max-width:1368px) {
    .custom-navbar {
        padding: 0.4rem 1.5rem;
    }

    .navbar-menu {
        gap: 1.2rem;
    }

    .navbar-menu a {
        font-size: 14px;
        padding: 6px 12px;
    }
}

/* Responsive */
@media (max-width: 576px) {
    .custom-navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.7rem 1rem;
    }

    .navbar-menu {
        padding-left: 0;
        width: 100%;
        gap: 0.5rem;
        margin-top: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar-menu a {
        font-size: 12px;
        padding: 4px 8px;
    }


    .navbar-logo {
        font-size: 1.5rem;
        margin: auto;
        display: flex;
        justify-content: center;
    }

    .navbar-menu .dropdown-menu {
        min-width: 100%;

    }

    .navbar-menu .dropdown:hover .dropdown-menu,
    .navbar-menu .dropdown:focus-within .dropdown-menu {
        display: block;
    }

    .navbar-menu .dropdown-menu a {
        padding: 4px 8px;
        font-size: 12px;
    }
}

/* Extra: Add a subtle hover effect for the navbar */
.custom-navbar {
    transition: box-shadow 0.2s;
}

.custom-navbar:hover {
    box-shadow: 0 4px 24px rgba(224, 0, 108, 0.15);
}

/* first content css */
h1 {
    font-size: 30px;
}

.section-padding {
    padding: 50px 0;
}

.first-content-center {
    background: var(--primary-gradient);
    /* fallback for old browsers */
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark-color) 100%);
}

.first-content-center .container {
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 12px rgba(224, 0, 108, 0.10);
    border-radius: 8px;
    padding-top: 25px;

}

.main-heading {
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.heading-highlight {
    color: var(--primary-color);
    background: #fff;
    display: inline-block;
    padding: 8px 28px;
    margin: 25px 0;
    margin-top: 0;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.heading-highlight2 {
    background: var(--primary-color);
    color: #fff;
    display: inline-block;
    padding: 8px 28px;
    margin: 25px 0;
    margin-top: 0;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.para-text {
    color: #fff;
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    text-align: justify;
}

.para-text2 {
    color: #000;
    font-weight: 500;
    line-height: 1.6;
    font-size: 14px;
    text-align: justify;
}

.anchar-link {
    color: var(--primary-light-color);
    text-decoration: none;
    font-weight: 800;
}

.anchar-link:hover {
    color: #f9f6fa;
    text-decoration: underline;
}

.anchar-link2 {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 800;
}

.anchar-link2:hover {
    color: #000000;
    text-decoration: underline;
}

.photo-content-section .photo-content-img-col img {
    border: 6px solid var(--primary-dark-color);
}

.bg-content-section .bg-img-box img {
    border: 6px solid #fff;
}

/* main btn */
/* From Uiverse.io by mrhyddenn */
.main-btn {
    position: relative;
    margin: 0;
    padding: 1em 1.6em;
    outline: none;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    background-color: var(--primary-color);
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    font-family: inherit;
    z-index: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
    width: max-content;
}

.main-btn:hover {
    animation: sh0 0.5s ease-in-out both;
}

@keyframes sh0 {
    0% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }

    25% {
        transform: rotate(7deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(-7deg) translate3d(0, 0, 0);
    }

    75% {
        transform: rotate(1deg) translate3d(0, 0, 0);
    }

    100% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }
}

.main-btn:hover span {
    animation: storm 0.7s ease-in-out both;
    animation-delay: 0.06s;
}

.main-btn::before,
.main-btn::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
    z-index: -1;
    transform: translate(100%, -25%) translate3d(0, 0, 0);
}

.main-btn:hover::before,
.main-btn:hover::after {
    opacity: 0.15;
    transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.main-btn:hover::before {
    transform: translate3d(50%, 0, 0) scale(0.9);
}

.main-btn:hover::after {
    transform: translate(50%, 0) scale(1.1);
}

/* end main btn */
@media screen and (max-width:576px) {

    h1,
    .main-heading {
        font-size: 20px;
    }


    .para-text {
        font-size: 12px;

    }

    .para-text2 {
        font-size: 12px;
    }

    .heading-highlight {
        padding: 6px 14px;
    }

    .row-reverse-mobile {
        flex-direction: column-reverse;
    }

    .section-padding {
        padding: 30px 0;
    }

    .photo-content-section .photo-content-img-col img {
        border: 3px solid var(--primary-dark-color);
    }

    .bg-content-section .bg-img-box img {
        border: 3px solid #fff;
    }

}

/* Profile section css */
.profile-section {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.profile-card {
    background: var(--primary-dark-color);
    border: 3px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(224, 0, 108, 0.2);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.profile-img-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.verified-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: #FFF;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    padding: 4px 10px 4px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.12);
    z-index: 2;
}

.profile-info {
    padding: 16px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.profile-type {
    color: #FFF;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.profile-details-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* pushes left and right apart */
    gap: 12px;
    flex-wrap: wrap;
}

.profile-name-age {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-name {
    color: #e4dfdf;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

.profile-age {
    color: #aaa;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 0;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(18, 140, 126, 0.15);
    transition: background 0.3s, box-shadow 0.3s;
}

.whatsapp-btn svg {
    display: block;
    margin: auto;
}

.whatsapp-btn:hover {
    background: linear-gradient(90deg, #128c7e 0%, #25d366 100%);
    box-shadow: 0 4px 16px rgba(18, 140, 126, 0.25);
    color: #fff;
    text-decoration: none;
}

.call-btn {
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #e0006c 0%, #a0004a 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 0;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(224, 0, 108, 0.15);
    transition: background 0.3s, box-shadow 0.3s;
}

/* Add call-btn hover effect */
.call-btn:hover {
    background: linear-gradient(90deg, #a0004a 0%, #e0006c 100%);
    box-shadow: 0 4px 16px rgba(224, 0, 108, 0.25);
    color: #fff;
    text-decoration: none;
}

/* responsive tweaks */
@media (max-width: 991px) {
    .profile-cards-row {
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .profile-card {
        max-width: 100%;
    }
}

/* photo content  section */
.photo-content-section {
    background: transparent;
}

.photo-content-img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: block;
}

@media screen and (max-width:576px) {
    .photo-content-img {
        width: 100%;
        height: auto;
    }
}

/* bg content section */
.bg-content-section {
    background: var(--primary-dark-color);
}

/* service card section */
.services-section {
    background: #000;
}

.service-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(224, 0, 108, 0.13), 0 1.5px 8px rgba(160, 0, 74, 0.08);
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 48px !important;
    padding-bottom: 36px !important;
    transition: transform 0.35s cubic-bezier(.22, 1, .36, 1), box-shadow 0.35s cubic-bezier(.22, 1, .36, 1), background 0.35s;
    z-index: 1;
    color: #444;
}

.service-icon {
    position: relative;
    z-index: 2;
    background: var(--primary-gradient);
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 22px auto;
    box-shadow: 0 4px 24px rgba(224, 0, 108, 0.18), 0 1.5px 8px rgba(160, 0, 74, 0.10);
    border: 4px solid #fff;
    transition: background 0.3s, transform 0.3s;
}

.service-icon svg {
    color: #fff;
    width: 60px;
    height: 60px;
    transition: color 0.3s, transform 0.3s;
}

.service-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    z-index: 2;
    position: relative;
    text-shadow: 0 2px 8px rgba(224, 0, 108, 0.08);
    transition: color 0.3s;
}

.service-card p {
    font-size: 1rem;
    z-index: 2;
    position: relative;
    transition: color 0.3s;
}

/* Card color variations */
.service-card-offer .service-icon,
.service-card-vip .service-icon {
    background: linear-gradient(90deg, var(--primary-dark-color) 0%, var(--primary-color) 100%);
}

.service-card-offer h5,
.service-card-vip h5 {
    color: var(--primary-dark-color);
}

.service-card-24hr .service-icon,
.service-card-satisfaction .service-icon {
    background: var(--primary-gradient);
}

.service-card-24hr h5,
.service-card-satisfaction h5 {
    color: var(--primary-color);
}

/* Hover effect: move, shadow, background */
.service-card:hover {
    transform: translateY(-18px) scale(1.045) rotate(-1deg);
    box-shadow: 0 16px 48px rgba(224, 0, 108, 0.22), 0 4px 24px rgba(160, 0, 74, 0.13);
    background: var(--primary-color);
    color: #fff;
}

.service-card:hover h5,
.service-card:hover p {
    color: #fff;
}

.service-card:hover .service-icon {
    background: #fff;
    transform: scale(1.13) rotate(8deg);
}

.service-card:hover .service-icon svg {
    color: var(--primary-color);
    transform: scale(1.12) rotate(-8deg);
}

/* Special hover for VIP & Offer cards */
.service-card-vip:hover {
    background: var(--primary-dark-color);
}

.service-card-vip:hover .service-icon svg {
    color: var(--primary-dark-color);
}

.service-card-offer:hover {
    background: var(--primary-dark-color);
}

.service-card-offer:hover .service-icon svg {
    color: var(--primary-dark-color);
}

/* Hover title spacing */
.service-card:hover h5 {
    letter-spacing: 1.5px;
    text-shadow: 0 4px 16px rgba(224, 0, 108, 0.13);
}

/* Responsive tweaks */


@media (max-width: 767px) {
    .service-card {
        min-height: 0;
        margin-bottom: 18px;
        padding-top: 36px !important;
        padding-bottom: 24px !important;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 575px) {
    .service-card {
        border-radius: 14px;
        padding: 24px 10px 18px 10px !important;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }

    .service-icon svg {
        width: 24px;
        height: 24px;
    }

    .service-card p {
        font-size: 14px;
    }
}

/* Hotel cards css */
.hotel-section {
    background: var(--primary-dark-color);
}

.hotel-card {
    background: #fff;
    border: 2px solid #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-card:hover .hotel-img {
    transform: scale(1.1);
}

.hotel-img {
    object-fit: cover;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    width: 100%;
    display: block;
}

.hotel-badge {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark-color));
    color: #fff;
    font-size: 14px;
    z-index: 2;
    letter-spacing: 1px;
    border: 1px solid #fff;
}

.hotel-name-overlay {
    left: 0;
    bottom: 0;
    top: auto;
    z-index: 2;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #e0006c5c;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    text-shadow: 0 2px 8px var(--primary-dark-color);
    letter-spacing: 1px;
    backdrop-filter: blur(2px);
    padding-bottom: 0.7rem !important;
    padding-top: 0.7rem !important;
}

/* FAQ section */
.faq-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.faq-accordion .accordion-item {
    background: var(--primary-dark-color, #18122B);
    border-radius: 8px;
    margin-bottom: 16px;
    border: 2px solid var(--primary-color, #E0006C);
    overflow: hidden;
}

.faq-accordion .accordion-header .accordion-button {
    background: var(--primary-dark-color, #18122B);
    color: #fff;
    font-weight: 600;
    box-shadow: none;
}

.faq-accordion .accordion-header .accordion-button:not(.collapsed) {
    color: var(--primary-color, #E0006C);
    background: #232323;
}

.faq-accordion .accordion-body {
    color: #fff;
    background: transparent;
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.15rem var(--primary-color, #E0006C);
}

@media (max-width: 576px) {
    .faq-section {
        padding: 30px 0;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 10px;
    }

    .faq-accordion .accordion-header .accordion-button,
    .faq-accordion .accordion-body {
        font-size: 14px;
    }
}

/* blog section css */
.blog-section {
    background: var(--primary-gradient);
}

.blog-heading {
    color: var(--primary-color, #E0006C);
    font-weight: 700;
}



.blog-card {
    background: #232323;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 24px 0 rgba(224, 0, 108, 0.13), 0 1.5px 8px 0 rgba(0, 0, 0, 0.10);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;

}

.blog-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 16px 48px 0 rgba(224, 0, 108, 0.22), 0 2px 12px 0 rgba(0, 0, 0, 0.13);
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 2rem 2rem;
    box-shadow: 0 2px 12px 0 rgba(224, 0, 108, 0.10);
}

.blog-img {
    object-fit: cover;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s;
    border-bottom: 0;
    border-radius: 0 0 2rem 2rem;
    filter: grayscale(10%) brightness(0.98);
}

.blog-card:hover .blog-img {
    transform: scale(1.08) rotate(-1deg);
    filter: grayscale(0%) brightness(1.05);
}

.blog-date-badge {
    z-index: 3;
    background: linear-gradient(90deg, var(--primary-color, #E0006C) 60%, #fff 100%);
    border-radius: 16px 0 16px 16px;
    padding: 0.35rem 1.1rem 0.35rem 0.9rem;
    box-shadow: 0 2px 8px rgba(224, 0, 108, 0.10);
    font-size: 14px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.blog-date {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 0.3em;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.13);
}

.blog-date i,
.blog-date svg {
    font-size: 14px;
    margin-right: 0.3em;
    color: #fff;
    opacity: 0.85;
}

.blog-title {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1.25rem;
}

.blog-desc {
    color: #d1cbe1;
    margin-bottom: 1.2rem;
    font-size: 14px;
    display: none;
}

.blog-link {
    color: var(--primary-color, #E0006C);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
    letter-spacing: 0.2px;
}

.blog-link:hover {
    text-decoration: underline;
    color: #fff;
}

.blog-card .p-3 {
    padding-top: 1.5rem !important;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@media (max-width: 576px) {


    .blog-date-badge {
        font-size: 12px;
        padding: 0.22rem 0.7rem 0.22rem 0.5rem;
        min-width: 90px;
    }
}

/* Location css */
.location-section {
    background: #000;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    justify-items: center;
    align-items: stretch;
    margin-bottom: 1rem;
}

.location-badge {
    text-decoration: none;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--primary-color, #E0006C), var(--primary-dark-color, #18122B));
    color: #fff;
    border: 1.5px solid #fff;
    box-shadow: 0 2px 8px rgba(224, 0, 108, 0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    padding: 0 0.5rem;
    /* white-space: nowrap; */
    /* prevent wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-badge:hover,
.location-badge:focus {
    background: #fff;
    color: var(--primary-color, #E0006C);
    border: 1.5px solid var(--primary-color, #E0006C);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(224, 0, 108, 0.15);
}



@media (max-width: 576px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }

    .location-badge {
        font-size: 12px;
        height: 40px;
        border-radius: 10px;
        padding: 0 0.3rem;
    }
}

/*------------- footer icons css ---------------------*/
.fixed-icons {
    position: fixed;
    bottom: 4px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 1000;
}

.fixed-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: #222;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
    font-size: 1.5rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    border: none;
    text-decoration: none;
}

.fixed-icons a.call-icon {
    background: #34B7F1;
    color: #fff;
}

.fixed-icons a.whatsapp-icon {
    background: #25d366;
    color: #fff;
}

.fixed-icons a .fa-telegram,
.fixed-icons a .fab.fa-telegram {
    color: #fff;
}



@media screen and (max-width: 600px) {
    .fixed-icons {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100vw;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 0;
        /* background: rgba(20, 20, 20, 0.97); */
        padding: 0 0 0 0;
        z-index: 1200;
        box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.13);

    }

    .fixed-icons a {
        width: 100%;
        height: 32px;
        border-radius: 0;
        margin: 0;
        flex: 1 1 0;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        background: none;
        box-shadow: none;
        transition: background 0.2s, color 0.2s;
        display: flex;
    }

    .fixed-icons a:last-child {
        border-right: none;
    }

    .fixed-icons a.call-icon {
        background: #34B7F1;
        color: #fff;
    }

    .fixed-icons a.whatsapp-icon {
        background: #25d366;
        color: #fff;
    }

    .fixed-icons a .fa-telegram,
    .fixed-icons a .fab.fa-telegram {
        color: #ffffff;
    }

    .fixed-icons a:hover {
        filter: brightness(1.1);
        transform: none;
    }
}

/* CTA section css */
.cta-section {
    position: relative;
    background: url('../images/cta.webp') center center/cover no-repeat;
    height: 380px;
    display: flex;
    align-items: center;
    min-height: 380px;
    margin-bottom: 24px;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-heading {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.cta-subheading {
    color: #f1f1f1;
    font-size: 1.2rem;
    margin-bottom: 35px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    font-size: 1.1rem;
    padding: 12px 32px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: all 0.2s;
}

.cta-btn-call {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 51, 102, 0.2);
    border: 1px solid var(--primary-color);
}

.cta-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.2);
    border: 1px solid #25D366;
}

.cta-btn-telegram {
    background: #0088cc;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.2);
    border: 1px solid #0088cc;
}

.cta-btn:hover {
    color: #fff;
    border-color: #fff;
    filter: brightness(1.1);
    transform: translateY(-2px) scale(1.04);
    text-decoration: none;
}

@media (max-width: 767px) {
    .cta-section {
        height: 450px;

    }

    .cta-content {
        display: block;
        height: auto;
    }

    .cta-btn-group {
        flex-direction: column;
        gap: 15px;
    }

    .cta-btn {
        font-size: 14px;
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
    }

    .cta-heading {
        font-size: 1.6rem;
    }

    .cta-subheading {
        font-size: 1rem;
    }
}

/* Footer css */
.custom-footer {
    background: linear-gradient(90deg, #18122B 0%, #E0006C 100%);
    color: #fff;
    padding-bottom: 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.footer-logo {
    width: 140px;
    filter: drop-shadow(0 2px 8px rgba(224, 0, 108, 0.15));
}

.footer-desc {
    font-size: 0.95rem;
    color: #f3e9f7;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.6rem;
}

.footer-links a,
.footer-contact a {
    color: #f3e9f7;
    text-decoration: none;
    font-size: 0.96rem;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffd2eb;
    text-decoration: underline;
}

.footer-contact-label {
    font-weight: 600;
    margin-right: 0.3rem;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    font-size: 0.96rem;
    color: #f3e9f7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #e0d6e6;
}

@media (max-width: 576px) {
    .custom-footer {
        margin-bottom: 32px;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-title {
        font-size: 1rem;
    }
}

/* Escort rate section css */
.rate-table-section {
    background: var(--black-dark);
}

.rate-table-custom {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(224, 0, 108, 0.08);
}

.rate-table-custom th,
.rate-table-custom td {
    padding: 20px 18px;
    font-size: 1rem;
}

.rate-table-custom td span {
    font-weight: 600;
    color: var(--primary-color, #e0006c);
}

.rate-table-custom th {
    background: var(--primary-gradient, linear-gradient(90deg, #e0006c 0%, #a0004a 100%));
    color: #fff;
    font-weight: 600;
    border: none;
    font-size: 1.13rem;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
}

.rate-table-custom tr {
    transition: background 0.2s;
}

.rate-table-custom tr td:first-of-type {
    font-weight: 700;
}

.rate-table-custom tbody tr:nth-child(even) {
    background: rgb(221, 221, 222);
}

.rate-table-custom td {
    color: var(--primary-dark-color, #a0004a);
    border: none;
    transition: color 0.2s;
}

/* Hover effect for table cells */
.rate-table-custom tbody tr:hover td {
    background: rgb(221, 221, 221);
    transition: color 0.2s;
}

/* Optional: Add a subtle box-shadow on row hover */
.rate-table-custom tbody tr:hover {
    box-shadow: 0 2px 12px rgba(224, 0, 108, 0.13);
    z-index: 1;
    position: relative;
}

@media (max-width: 767px) {
    .rate-table-section {
        padding: 28px 0 20px 0;
    }

    .rate-table-custom th,
    .rate-table-custom td {
        padding: 12px 8px;
        font-size: 14px;
    }

    .rate-table-custom th {
        font-size: 14px;
    }
}

/* Contact page css */
.contact-section {
    background: var(--black-dark);
    box-shadow: 0 6px 32px rgba(224, 0, 108, 0.10);
    overflow: hidden;
}

.contact-row-custom {
    min-height: 420px;
}

.contact-left-col {
    background: linear-gradient(135deg, #e0006c 0%, #a0004a 100%);
    color: #fff;
    border-radius: 16px 0 0 16px;
    box-shadow: 0 2px 16px rgba(224, 0, 108, 0.08);
    position: relative;
    z-index: 2;
}

.contact-info-box {
    padding: 32px 18px 32px 0;
}

.contact-desc {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.7;
}

.contact-highlight {
    display: inline-block;
    background: rgba(255, 255, 255, 0.13);
    color: #ffd2eb;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    margin-top: 10px;
}

.contact-details-list svg {
    margin-right: 0;
    color: var(--primary-color, #e0006c);
    display: block;
}

.contact-icon-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(224, 0, 108, 0.08);
    margin-right: 8px;
}

.contact-details-list li {
    display: flex;
    align-items: center;
}

.contact-details-list span,
.contact-details-list a {
    font-size: 1rem;
    color: #fff;
}

.contact-details-list .contact-icon-bg svg {
    width: 18px;
    height: 18px;
    color: var(--primary-color, #e0006c);
}

.contact-form-box {
    background: #fff;
    padding: 40px 32px;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 2px 12px rgba(224, 0, 108, 0.06);
    min-height: 100%;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--primary-dark-color, #a0004a);
    margin-bottom: 6px;
}

.contact-input {
    border: 1.5px solid var(--primary-color, #e0006c);
    border-radius: 8px;
    font-size: 1rem;
    padding: 10px 14px;
    color: var(--primary-dark-color, #a0004a);
    background: #f9f6fa;
    transition: border-color 0.2s;
}

.contact-input:focus {
    border-color: var(--primary-dark-color, #a0004a);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(224, 0, 108, 0.08);
}

.contact-btn {
    margin-top: 10px;
    width: 100%;
    background: var(--primary-gradient, linear-gradient(90deg, #e0006c 0%, #a0004a 100%));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(224, 0, 108, 0.10);
    border: none;
    transition: background 0.2s, color 0.2s;
}


.contact-btn:hover {
    background: var(--primary-color, #e0006c);
    color: #fff;
}

@media (max-width: 991.98px) {


    .contact-left-col,
    .contact-form-box {
        border-radius: 14px 14px 0 0 !important;
    }

    .contact-row-custom {
        flex-direction: column;
        gap: 20px;
    }

    .contact-left-col,
    .contact-form-box {
        min-height: unset;
    }

    .contact-info-box {
        padding: 28px 10px 18px 10px;
    }

    .contact-form-box {
        padding: 28px 10px;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        margin-top: 18px;
        margin-bottom: -18px;
    }

    .contact-left-col,
    .contact-form-box {
        border-radius: 12px !important;
    }

    .contact-info-box {
        padding: 0;
        padding-bottom: 20px;
    }

    .contact-desc {
        font-size: 14px;
    }

}