/* ============================================================
   KHUSIYAL SERVICES — Custom Stylesheet
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Brand Gradient Colors (from logo) */
    --purple: #4B0082;
    --purple-mid: #8B5CF6;
    --purple-light: #A78BFA;
    --blue: #3B82F6;
    --blue-light: #60A5FA;
    --green: #10B981;
    --green-brand: #00A651;
    --green-light: #34D399;
    --amber: #F59E0B;
    --pink: #EC4899;

    /* Neutrals */
    --dark: #18181B;
    --gray: #52525B;
    --muted: #71717A;
    --light: #F8FAFC;
    --border: #E4E4E7;

    /* Gradients */
    --grad-brand: linear-gradient(135deg, #4B0082, #1E6B3A 50%, #00A651);
    --grad-hero: linear-gradient(150deg, #4C1D95 0%, #3730A3 30%, #1E40AF 60%, #065F46 100%);
    --grad-dark: linear-gradient(170deg, #1E1B4B 0%, #312E81 50%, #1A1A2E 100%);
    --grad-footer: linear-gradient(180deg, #0F0A2A 0%, #1E1B4B 50%, #1A1A2E 100%);
    --grad-nav: linear-gradient(90deg, #6C3CE1, #4A90D9 50%, #2ECC71);
    --grad-purple: linear-gradient(135deg, #8B5CF6, #6366F1);
    --grad-blue: linear-gradient(135deg, #3B82F6, #60A5FA);
    --grad-green: linear-gradient(135deg, #10B981, #34D399);
    --grad-amber: linear-gradient(135deg, #F59E0B, #FBBF24);
    --grad-pink: linear-gradient(135deg, #EC4899, #F472B6);

    /* Typography */
    --ff-heading: 'Plus Jakarta Sans', sans-serif;
    --ff-body: 'Plus Jakarta Sans', sans-serif;

    /* Misc */
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 4px 20px rgba(0, 0, 0, .06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .08);
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
}


/* ---------- Global Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--ff-body);
    color: var(--dark);
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 56px 0;
    }
}


/* ---------- Logo ---------- */
.navbar-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

#mainNav.scrolled .navbar-logo {
    height: 38px;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}


/* ---------- Navbar ---------- */
#mainNav {
    background: var(--grad-nav);
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1050;
}

#mainNav.scrolled {
    padding: 8px 0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, .15);
}

#mainNav .nav-link {
    font-weight: 500;
    font-size: 15px;
    color: rgba(255, 255, 255, .78);
    padding: .5rem 1rem;
    transition: var(--transition);
    border-radius: 8px;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, .1);
}

.btn-cta-nav {
    background: #fff;
    color: var(--purple) !important;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 24px;
    border-radius: 24px;
    transition: var(--transition);
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, .3);
    background: #fff;
    color: var(--purple) !important;
}


/* ---------- Floating Language Toggle ---------- */
.lang-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1060;
    animation: langFloatIn .5s ease .8s both;
}

@keyframes langFloatIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

button.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grad-nav);
    border: none;
    color: rgba(255, 255, 255, .85);
    font-family: var(--ff-heading);
    font-weight: 500;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1.4;
    box-shadow: 0 4px 20px rgba(75, 0, 130, .35);
}

button.lang-switch:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(75, 0, 130, .45);
}

button.lang-switch i {
    font-size: 16px;
    opacity: .9;
}

.lang-label {
    opacity: .5;
    transition: opacity .3s ease, color .3s ease;
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
}

.lang-label.active {
    opacity: 1;
    color: #fff;
    font-weight: 700;
}

.lang-divider {
    opacity: .3;
    font-weight: 300;
    margin: 0 2px;
    font-size: 12px;
}

@media (max-width: 480px) {
    .lang-float {
        bottom: 16px;
        right: 16px;
    }

    button.lang-switch {
        padding: 10px 16px;
        font-size: 13px;
        gap: 6px;
    }

    button.lang-switch i {
        font-size: 14px;
    }
}

/* ---------- Mobile Navbar ---------- */
@media (max-width: 991.98px) {
    .navbar-logo {
        height: 38px;
    }
}

@media (max-width: 575.98px) {
    .navbar-logo {
        height: 32px;
    }
}


/* ---------- Carousel Header ---------- */
.carousel-header {
    padding-top: 72px;
    /* offset for fixed navbar */
}

#heroCarousel {
    position: relative;
}

#heroCarousel .carousel-item {
    height: 85vh;
    min-height: 520px;
    max-height: 800px;
}

.carousel-img-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.carousel-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(30, 27, 75, .88) 0%,
            rgba(30, 27, 75, .6) 50%,
            rgba(6, 95, 70, .4) 100%);
}

.carousel-caption-custom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 8%;
    z-index: 2;
    max-width: 650px;
}

.carousel-caption-custom .carousel-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
    width: fit-content;
}

.carousel-caption-custom h2 {
    font-family: var(--ff-heading);
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.carousel-caption-custom p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, .75);
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.6;
}

/* Carousel indicators */
#heroCarousel .carousel-indicators {
    bottom: 28px;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .5);
    background: transparent;
    opacity: .6;
    transition: var(--transition);
}

#heroCarousel .carousel-indicators .active {
    background: var(--purple-mid);
    border-color: var(--purple-mid);
    opacity: 1;
    transform: scale(1.2);
}

/* Carousel arrows */
.carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 18px;
    transition: var(--transition);
}

.carousel-arrow:hover {
    background: var(--grad-purple);
    transform: scale(1.08);
}

.carousel-control-prev,
.carousel-control-next {
    width: 64px;
    opacity: 1;
}


/* ---------- Hero Buttons (shared) ---------- */
.btn-hero-primary {
    background: var(--grad-purple);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 36px;
    border-radius: 28px;
    border: none;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(139, 92, 246, .4);
    color: #fff;
}

.btn-hero-outline {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    padding: 14px 36px;
    border-radius: 28px;
    border: 1.5px solid rgba(255, 255, 255, .25);
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, .15);
    color: #fff;
    transform: translateY(-3px);
}


/* ---------- Hero Badge (shared) ---------- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-badge i {
    color: #FCD34D;
}

.hero-title {
    font-family: var(--ff-heading);
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, .72);
    margin-bottom: 32px;
    max-width: 560px;
    line-height: 1.65;
}


/* ---------- Stats Bar ---------- */
.stats-bar {
    background: var(--grad-dark);
    padding: 40px 0;
}

.stat-box {
    text-align: center;
}

.stat-box .stat-number {
    display: inline;
    font-family: var(--ff-heading);
    font-weight: 800;
    font-size: 2.2rem;
    color: #fff;
    line-height: 1;
}

.stat-box .stat-plus {
    font-family: var(--ff-heading);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--purple-mid);
}

.stat-box .stat-label {
    display: block;
    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
    margin-top: 6px;
    font-weight: 500;
}


/* ---------- Section Headers ---------- */
.section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--purple-mid);
    background: linear-gradient(90deg, rgba(139, 92, 246, .1), rgba(99, 102, 241, .1));
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.section-badge.badge-light {
    color: var(--purple-light);
    background: rgba(255, 255, 255, .1);
}

.section-title {
    font-family: var(--ff-heading);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--dark);
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}


/* ---------- Services Section ---------- */
.services-section {
    background: var(--light);
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(139, 92, 246, .12);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.icon-purple {
    background: var(--grad-purple);
}

.icon-blue {
    background: var(--grad-blue);
}

.icon-green {
    background: var(--grad-green);
}

.icon-amber {
    background: var(--grad-amber);
}

.icon-pink {
    background: var(--grad-pink);
}

.service-title {
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.service-desc {
    color: var(--muted);
    font-size: .93rem;
    line-height: 1.6;
    margin-bottom: 0;
}


/* ---------- About Section ---------- */
.about-section {
    background: #fff;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-text {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.75;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: .95rem;
    color: var(--dark);
}

.about-feature-item i {
    color: var(--green);
    font-size: 18px;
}

.btn-primary-gradient {
    background: var(--grad-purple);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(139, 92, 246, .35);
    color: #fff;
}


/* ---------- Why Choose Us Section ---------- */
.why-section {
    background: var(--grad-dark);
}

.why-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, .15);
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: scale(1.12);
}

.icon-grad-purple {
    background: var(--grad-purple);
}

.icon-grad-blue {
    background: var(--grad-blue);
}

.icon-grad-green {
    background: var(--grad-green);
}

.icon-grad-amber {
    background: var(--grad-amber);
}

.why-title {
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 10px;
}

.why-desc {
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
    line-height: 1.55;
    margin: 0;
}


/* ---------- Booking Section ---------- */
.booking-section {
    background: linear-gradient(135deg, #F5F3FF, #EFF6FF 50%, #ECFDF5);
}

.booking-form-card,
.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.form-card-title {
    font-family: var(--ff-heading);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.form-label {
    font-weight: 600;
    font-size: .82rem;
    color: var(--gray);
}

.form-control,
.form-select {
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--light);
    padding: 12px 16px;
    font-size: .95rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--purple-mid);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, .12);
    background: #fff;
}

.btn-submit {
    background: var(--grad-brand);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 24px;
    border-radius: 14px;
    border: none;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(75, 0, 130, .3);
    color: #fff;
}


/* ---------- Gallery Section (index) ---------- */
.gallery-section {
    background: #fff;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .65), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: .85rem;
}


/* ---------- Gallery Page Specific ---------- */
.gallery-hero {
    position: relative;
    background: var(--grad-hero);
    padding: 160px 0 80px;
}

.gallery-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 40%, rgba(139, 92, 246, .2), transparent 60%);
    z-index: 1;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.filter-btn {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, .2);
}

.filter-btn.active {
    background: #fff;
    color: var(--purple);
    font-weight: 600;
    border-color: #fff;
}

.gallery-page-grid {
    background: var(--light);
}

.gallery-page-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-page-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-page-item:hover img {
    transform: scale(1.06);
}

.gallery-page-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-page-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
}

/* Gallery filter animation */
.gallery-col {
    transition: opacity .4s ease, transform .4s ease;
}

.gallery-col.hidden {
    opacity: 0;
    transform: scale(.85);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}


/* ---------- CTA Banner ---------- */
.cta-banner {
    background: var(--grad-hero);
    padding: 80px 0;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, .2), transparent 50%);
}

.cta-title {
    font-family: var(--ff-heading);
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 12px;
    position: relative;
}

.cta-subtitle {
    color: rgba(255, 255, 255, .7);
    font-size: 1.1rem;
    margin-bottom: 32px;
    position: relative;
}


/* ---------- Contact Section ---------- */
.contact-section {
    background: var(--light);
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow);
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}


/* ---------- Footer ---------- */
.site-footer {
    background: var(--grad-footer);
    padding: 60px 0 28px;
}

.footer-brand {
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
}

.footer-desc {
    color: rgba(255, 255, 255, .5);
    font-size: .9rem;
    line-height: 1.65;
    max-width: 300px;
}

.footer-heading {
    font-family: var(--ff-heading);
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-size: .9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact li {
    color: rgba(255, 255, 255, .5);
    font-size: .9rem;
}

.footer-contact i {
    color: rgba(255, 255, 255, .35);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .65);
    font-size: 16px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--grad-purple);
    color: #fff;
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, .08);
    margin: 24px 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, .4);
    font-size: .82rem;
}

.text-pink {
    color: #F472B6 !important;
}


/* ---------- Back to Top ---------- */
.btn-back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--grad-brand);
    color: #fff;
    border: none;
    font-size: 18px;
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(75, 0, 130, .3);
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(75, 0, 130, .45);
    color: #fff;
}


/* ---------- Responsive Adjustments ---------- */
@media (max-width: 991.98px) {
    #navMenu {
        background: rgba(30, 27, 75, .97);
        backdrop-filter: blur(16px);
        border-radius: 16px;
        margin-top: 12px;
        padding: 20px;
    }

    .carousel-caption-custom {
        padding: 40px 6%;
        max-width: none;
        text-align: center;
        align-items: center;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 767.98px) {

    .hero-title,
    .carousel-caption-custom h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    #heroCarousel .carousel-item {
        height: 70vh;
        min-height: 420px;
    }

    .stat-box .stat-number,
    .stat-box .stat-plus {
        font-size: 1.7rem;
    }

    .booking-form-card,
    .contact-form-card {
        padding: 24px;
    }

    .contact-info-card {
        padding: 16px;
    }

    .site-footer {
        padding: 40px 0 20px;
    }

    .gallery-hero {
        padding: 130px 0 60px;
    }
}

@media (max-width: 575.98px) {
    .service-card {
        padding: 24px 20px;
    }

    .carousel-caption-custom h2 {
        font-size: 1.7rem;
    }

    .carousel-caption-custom p {
        font-size: .95rem;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}