@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Noto+Sans+Bengali:wght@400;500;600;700&display=swap');

:root {
    /* Brand colors */
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-dark: #9B7B2E;
    --deep: #0A0E1A;
    --deep-2: #111827;
    --emerald: #1B6B45;
    --emerald-light: #2D9B63;
    --cream: #F5FAF0;
    --cream-2: #EBF5E0;

    /* AR Rahim brand greens */
    --brand-green: #7CB342;
    --brand-green-dark: #558B2F;
    --brand-green-light: #9CCC65;
    --brand-green-pale: #F1F8E9;

    /* Background/Foreground */
    --background: #ffffff;
    --foreground: #111827;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--deep);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

::selection {
    background: rgba(124, 179, 66, 0.3);
    color: #1F2937;
}

/* Typography utilities */
.font-display {
    font-family: 'Playfair Display', serif;
}

.font-cormorant {
    font-family: 'Cormorant Garamond', serif;
}

.font-body {
    font-family: 'Inter', sans-serif;
}

.font-bengali {
    font-family: 'Noto Sans Bengali', 'Inter', sans-serif;
}

/* Colors & Gradients Utilities */
.text-gold {
    color: var(--gold);
}

.text-gold-light {
    color: var(--gold-light);
}

.text-deep {
    color: var(--deep);
}

.text-green {
    color: var(--brand-green);
}

.text-brand {
    color: white;
}

.bg-deep {
    background-color: var(--deep);
}

.bg-gold {
    background-color: var(--gold);
}

.bg-brand {
    background-color: var(--brand-green);
}

.bg-brand-dark {
    background-color: var(--brand-green-dark);
}

.bg-cream {
    background-color: var(--cream);
}

.bg-gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 40%, var(--gold) 70%, var(--gold-dark) 100%);
}

.text-gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 40%, var(--gold) 70%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.shimmer {
    background: linear-gradient(90deg, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.float-animate {
    animation: float 4s ease-in-out infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-track {
    animation: marquee 20s linear infinite;
    display: flex;
    width: max-content;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out forwards;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glass morphism */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.glass-dark {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

/* Borders and Dividers */
.border-gold {
    border-color: var(--gold) !important;
}

.border-gold-50 {
    border-color: rgba(201, 168, 76, 0.5) !important;
}

.luxury-divider {
    display: flex;
    align-items: center;
    gap: 12px;
}

.luxury-divider::before,
.luxury-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* UI Elements */
.card-lift {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.card-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(201, 168, 76, 0.1);
}

.shadow-luxury {
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
}

.shadow-luxury-lg {
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.3);
}

.shadow-gold {
    box-shadow: 0 4px 14px 0 rgba(201, 168, 76, 0.39);
}

.shadow-gold-lg {
    box-shadow: 0 10px 25px 0 rgba(201, 168, 76, 0.5);
}

/* Header & Nav */
.main-header {
    transition: all 0.5s ease;
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.nav-link-custom {
    position: relative;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link-custom:hover {
    color: var(--gold) !important;
}

.main-header.scrolled .nav-link-custom {
    color: rgba(10, 14, 26, 0.8) !important;
}

.main-header.scrolled .nav-link-custom:hover,
.main-header.scrolled .nav-link-custom.active {
    color: var(--brand-green) !important;
}

/* Fix logo and mobile button on scroll */
.main-header #logoText,
.main-header #mobileMenuBtn {
    color: white !important;
    transition: color 0.3s ease;
}

.main-header.scrolled #logoText,
.main-header.scrolled #mobileMenuBtn {
    color: var(--deep) !important;
}


.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    transform: scaleX(1);
}

/* Mobile Menu */
#mobileMenu {
    display: none;
    background: white;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

/* Button System */
.btn-primary-custom {
    background: var(--brand-green);
    color: white !important;
    border: 2px solid var(--brand-green);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: var(--brand-green-dark);
    border-color: var(--brand-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(124, 179, 66, 0.3);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--gold) !important;
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-secondary-custom:hover {
    background: var(--gold);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 168, 76, 0.3);
}

.btn-white-custom {
    background: white;
    color: var(--deep) !important;
    border: 2px solid white;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-white-custom:hover {
    background: transparent;
    color: white !important;
    transform: translateY(-3px);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.hover-scale {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Custom Helpers */
.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.min-vh-50 {
    min-height: 50vh;
}

.min-vh-75 {
    min-height: 75vh;
}

.min-vh-80 {
    min-height: 80vh;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

/* Scroll Top Button Styling */
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: var(--gold);
    /* Uses your brand gold */
    width: 44px;
    height: 44px;
    border-radius: 12px;
    /* Matching your rounded-xl style */
    transition: all 0.4s;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.scroll-top i {
    font-size: 24px;
    color: var(--deep);
    /* Dark icon on gold background[cite: 1] */
    line-height: 0;
}

.scroll-top:hover {
    background: var(--brand-green);
    /* Changes to brand green on hover[cite: 1] */
    color: #fff;
    transform: translateY(-5px);
    /* Adds a "lift" effect[cite: 1] */
}

.scroll-top:hover i {
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/* Service Card Enhancements */
.shadow-luxury {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Floating Icon Box */
.service-icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--brand-green);
    /* The green from your image */
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

/* Glass Tagline Overlay */
.badge-glass {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* Rounded Pill Button */
.btn-brand-pill {
    background-color: var(--brand-green);
    color: white !important;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-brand-pill:hover {
    background-color: var(--deep);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 179, 66, 0.3);
}

/* Image Scale on Hover */
.group-hover-scale {
    transition: transform 0.5s ease;
}

.card:hover .group-hover-scale {
    transform: scale(1.1);
}

/* ── Packages Section ─────────────────────────────────── */
.packages-section {
    background: linear-gradient(180deg, #f8faf5 0%, #ffffff 100%);
}

.pkg-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-green);
    background: var(--brand-green-pale);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(124, 179, 66, 0.25);
}

/* Filter Buttons */
.pkg-filter-btn {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    color: #64748b;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 9px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.pkg-filter-btn:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    background: var(--brand-green-pale);
}

.pkg-filter-btn.active {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(124, 179, 66, 0.35);
}

/* Card */
.pkg-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #eef0f3;
    transition: transform 0.35s cubic-bezier(.25, .46, .45, .94), box-shadow 0.35s ease, border-color 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.10);
    border-color: rgba(124, 179, 66, 0.3);
}

.pkg-card--featured {
    border-color: var(--brand-green);
    border-width: 2px;
    box-shadow: 0 8px 30px rgba(124, 179, 66, 0.12);
}

/* Image */
.pkg-card__img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.pkg-card:hover .pkg-card__img {
    transform: scale(1.06);
}

.pkg-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--brand-green);
}

.pkg-card__img-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 26, 0.65) 0%, rgba(10, 14, 26, 0.1) 50%, transparent 100%);
}

/* Overlay badges */
.pkg-card__overlay-top {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.pkg-card__overlay-bottom {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pkg-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
}

.pkg-badge--featured {
    background: var(--brand-green);
    color: #fff;
    box-shadow: 0 3px 10px rgba(124, 179, 66, 0.4);
}

.pkg-badge--soldout {
    background: #ef4444;
    color: #fff;
}

.pkg-badge--upcoming {
    background: var(--gold);
    color: var(--deep);
}

.pkg-meta-chip {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}

/* Body */
.pkg-card__body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pkg-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--deep);
    line-height: 1.35;
    margin: 0;
    flex: 1;
}

.pkg-card__price {
    text-align: right;
    flex-shrink: 0;
}

.pkg-card__price-from {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 2px;
}

.pkg-card__price-amount {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-green-dark);
    white-space: nowrap;
}

.pkg-card__desc {
    font-size: 0.83rem;
    color: #64748b;
    margin: 8px 0 12px;
    line-height: 1.5;
}

.pkg-card__includes {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 8px;
    flex: 1;
}

.pkg-card__includes li {
    font-size: 0.78rem;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 5px;
    line-height: 1.4;
}

.pkg-card__includes li i {
    color: var(--brand-green);
    font-size: 0.8rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pkg-card__actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-pkg-primary {
    flex: 1;
    background: var(--brand-green);
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-pkg-primary:hover {
    background: var(--brand-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 179, 66, 0.35);
}

.btn-pkg-secondary {
    background: transparent;
    color: var(--gold-dark) !important;
    border: 1.5px solid var(--gold);
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-pkg-secondary:hover {
    background: var(--gold);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 168, 76, 0.3);
}

.btn-pkg-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--brand-green-dark) !important;
    border: 2px solid var(--brand-green);
    border-radius: 50px;
    padding: 13px 36px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pkg-outline:hover {
    background: var(--brand-green);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(124, 179, 66, 0.3);
    transform: translateY(-3px);
}

/* ── Gallery Section ─────────────────────────────── */
.gallery-section {
    background: var(--deep);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M30 0L60 30L30 60L0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
    pointer-events: none;
}

.gallery-section .pkg-eyebrow {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-light);
    border-color: rgba(201, 168, 76, 0.3);
}

.gallery-section h2 {
    color: #fff !important;
}

.gallery-section p.text-muted {
    color: rgba(255, 255, 255, 0.55) !important;
}

/* Masonry-style CSS Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item--tall {
    grid-row: span 2;
}

/* Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(.25, .46, .45, .94);
    display: block;
}

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

/* Overlay */
.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 26, 0.88) 0%, rgba(10, 14, 26, 0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item__overlay {
    opacity: 1;
}

.gallery-item__overlay-inner {
    padding: 16px;
    width: 100%;
}

.gallery-item__play,
.gallery-item__zoom {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: background 0.2s;
}

.gallery-item:hover .gallery-item__play,
.gallery-item:hover .gallery-item__zoom {
    background: var(--brand-green);
    border-color: var(--brand-green);
}

.gallery-item__title {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.3;
}

.gallery-item__cat {
    font-size: 0.7rem;
    color: var(--gold-light);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Lightbox ─────────────────────────────────────── */
.glb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 15, 0.97);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.glb-overlay.glb--open {
    display: flex;
}

.glb-content {
    max-width: 90vw;
    max-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glb-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: glbIn 0.3s ease;
}

.glb-content iframe {
    width: min(900px, 90vw);
    height: min(506px, 55vw);
    border: none;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: glbIn 0.3s ease;
}

@keyframes glbIn {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

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

.glb-caption {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    font-weight: 500;
    pointer-events: none;
}

.glb-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.glb-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.glb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.glb-nav:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
}

.glb-prev {
    left: 18px;
}

.glb-next {
    right: 18px;
}

.testi-section {
    background: linear-gradient(135deg, #f8faf5 0%, #fff 50%, #f1f8e9 100%);
    position: relative;
    overflow: hidden;
}

.testi-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.testi-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Card */
.testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px 28px;
    border: 1.5px solid #eef0f3;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.testi-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(124, 179, 66, 0.3);
}

.testi-card__quote {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 3rem;
    line-height: 1;
    color: rgba(124, 179, 66, 0.12);
}

.testi-card__stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testi-card__text {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-card__footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.testi-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--brand-green-pale);
    flex-shrink: 0;
}

.testi-card__avatar--placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testi-card__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--deep);
    margin: 0 0 3px;
}

.testi-card__meta {
    font-size: 0.75rem;
    color: var(--brand-green-dark);
    font-weight: 600;
    margin: 0;
}

.testi-swiper .swiper-slide-active .testi-card {
    background: var(--brand-green-pale);
    border-color: var(--brand-green);
    box-shadow: 0 16px 40px rgba(124, 179, 66, 0.15);
}

/* Swiper overrides */
.testi-swiper {
    padding-bottom: 48px !important;
}

.testi-pagination {
    bottom: 0 !important;
}

.testi-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s;
}

.testi-pagination .swiper-pagination-bullet-active {
    background: var(--brand-green);
    width: 24px;
    border-radius: 4px;
}

/* Nav buttons */
.testi-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.testi-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: var(--deep);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-btn:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
    box-shadow: 0 4px 14px rgba(124, 179, 66, 0.35);
}

.faq-section {
    background: #fff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.active,
.faq-item:hover {
    border-color: rgba(124, 179, 66, 0.4);
}

.faq-item.active {
    box-shadow: 0 6px 24px rgba(124, 179, 66, 0.1);
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-btn:hover {
    background: var(--brand-green-pale);
}

.faq-item.active .faq-btn {
    background: var(--brand-green-pale);
}

.faq-btn span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--deep);
    line-height: 1.4;
}

.faq-icon {
    color: var(--brand-green);
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    display: none;
    padding: 0 22px 20px;
    background: var(--brand-green-pale);
}

.faq-item.active .faq-body {
    display: block;
}

.faq-body p {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.75;
    margin: 0;
    padding-top: 4px;
}

.form-control:focus {
    border-color: #7CB342;
    box-shadow: 0 0 0 0.25rem rgba(124, 179, 66, 0.25);
}

/* ── Service Detail Page ──────────────────────────────── */
.svc-long-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.9;
}

.svc-long-desc h2,
.svc-long-desc h3,
.svc-long-desc h4 {
    color: var(--deep);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.svc-long-desc ul {
    padding-left: 1.2rem;
}

.svc-long-desc ul li {
    margin-bottom: 6px;
}

.svc-included-card {
    background: var(--brand-green-pale);
    border: 1.5px solid rgba(124, 179, 66, 0.25);
    border-radius: 20px;
    padding: 28px;
}

.svc-included-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.svc-included-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svc-include-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--deep);
    border: 1px solid rgba(124, 179, 66, 0.15);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.svc-include-item:hover {
    border-color: var(--brand-green);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.12);
}

.svc-include-item__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-green);
    flex-shrink: 0;
}

/* Process Steps */
.svc-process-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svc-process-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    padding-bottom: 28px;
}

.svc-process-item:last-child {
    padding-bottom: 0;
}

.svc-process-item__num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 14px rgba(124, 179, 66, 0.35);
}

.svc-process-item__line {
    position: absolute;
    left: 21px;
    top: 44px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--brand-green-light), transparent);
}

.svc-process-item:last-child .svc-process-item__line {
    display: none;
}

.svc-process-item__body {
    padding-top: 10px;
}

/* Sidebar */
.svc-sidebar {
    position: sticky;
    top: 100px;
}

.svc-cta-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.svc-cta-card__top {
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
    padding: 24px;
}

.svc-cta-card__body {
    background: #fff;
    padding: 24px;
    border: 1.5px solid rgba(124, 179, 66, 0.15);
    border-top: none;
    border-radius: 0 0 20px 20px;
}

.svc-cta-call {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--brand-green-pale);
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s;
}

.svc-cta-call:hover {
    background: rgba(124, 179, 66, 0.2);
}

.svc-cta-call i {
    color: var(--brand-green);
    font-size: 1.1rem;
}

.svc-sidebar-box {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
}

.svc-other-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 4px;
}

.svc-other-item:hover {
    background: var(--brand-green-pale);
    transform: translateX(4px);
}

.svc-other-item__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* ── Package Detail Page ──────────────────────────────── */

/* Hero badges */
.pkg-detail-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pkg-detail-badge--gold {
    background: rgba(201, 168, 76, 0.2);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.4);
}

.pkg-detail-badge--green {
    background: rgba(124, 179, 66, 0.2);
    color: var(--brand-green-light);
    border: 1px solid rgba(124, 179, 66, 0.4);
}

.pkg-detail-badge--red {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.pkg-detail-badge--blue {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.pkg-detail-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
}

/* Hero Price Box */
.pkg-hero-price-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 24px;
    min-width: 240px;
    text-align: center;
}

.pkg-hero-price-old {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.pkg-hero-price-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pkg-hero-price-from {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pkg-hero-price-amt {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.1;
}

.pkg-hero-price-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-top: 4px;
}

.pkg-hero-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 0.2s;
}

.pkg-hero-call:hover {
    color: var(--brand-green-light);
}

/* Sticky Nav */
.pkg-sticky-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 2px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 0;
}

.pkg-sticky-nav .container-xxl {
    overflow-x: auto;
}

.pkg-sticky-link {
    display: inline-block;
    padding: 16px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: all 0.2s;
}

.pkg-sticky-link:hover,
.pkg-sticky-link.active {
    color: var(--brand-green);
    border-bottom-color: var(--brand-green);
}

/* Prose */
.pkg-detail-prose {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.9;
}

.pkg-detail-prose h2,
.pkg-detail-prose h3 {
    color: var(--deep);
    margin-top: 1.5rem;
}

.pkg-detail-prose ul {
    padding-left: 1.2rem;
}

.pkg-detail-prose ul li {
    margin-bottom: 6px;
}

/* Info Strip */
.pkg-info-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pkg-info-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
}

.pkg-info-chip--yes {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.pkg-info-chip--warn {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

/* Included/Excluded Boxes */
.pkg-inc-box {
    border-radius: 16px;
    padding: 24px;
    height: 100%;
}

.pkg-inc-box--yes {
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
}

.pkg-inc-box--no {
    background: #fff5f5;
    border: 1.5px solid #fecaca;
}

.pkg-inc-box__header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--deep);
}

.pkg-inc-box--yes .pkg-inc-box__header {
    color: #166534;
}

.pkg-inc-box--no .pkg-inc-box__header {
    color: #991b1b;
}

.pkg-inc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkg-inc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.5;
}

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

/* Hotel Cards */
.pkg-hotel-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pkg-hotel-card:hover {
    border-color: var(--brand-green);
    box-shadow: 0 8px 24px rgba(124, 179, 66, 0.12);
}

.pkg-hotel-card__city {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--brand-green-pale);
    color: var(--brand-green-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pkg-hotel-chip {
    display: inline-flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--deep);
}

/* Itinerary */
.pkg-itinerary {
    display: flex;
    flex-direction: column;
}

.pkg-itin-item {
    display: grid;
    grid-template-columns: 80px 32px 1fr;
    gap: 0 16px;
    padding-bottom: 24px;
}

.pkg-itin-item:last-child {
    padding-bottom: 0;
}

.pkg-itin-item__day {
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    padding: 8px 4px;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

.pkg-itin-item__connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 6px;
}

.pkg-itin-item__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand-green);
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--brand-green);
    flex-shrink: 0;
}

.pkg-itin-item__line {
    flex: 1;
    width: 2px;
    background: linear-gradient(180deg, var(--brand-green-light), transparent);
    margin-top: 4px;
}

.pkg-itin-item:last-child .pkg-itin-item__line {
    display: none;
}

.pkg-itin-item__content {
    padding-top: 2px;
}

/* Departure Dates */
.pkg-date-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-green-pale);
    border: 1.5px solid rgba(124, 179, 66, 0.3);
    color: var(--brand-green-dark);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
}

/* Gallery Thumbs */
.pkg-gallery-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 140px;
    cursor: pointer;
}

.pkg-gallery-thumb img {
    transition: transform 0.4s ease;
}

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

.pkg-gallery-thumb__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 20, 10, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.pkg-gallery-thumb:hover .pkg-gallery-thumb__overlay {
    opacity: 1;
}

/* Sidebar */
.pkg-detail-sidebar {
    position: sticky;
    top: 70px;
}

.pkg-sidebar-price-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.pkg-sidebar-price-card__top {
    background: linear-gradient(135deg, var(--deep-2), #1a2a1a);
    padding: 28px 24px;
}

.pkg-sidebar-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.pkg-sidebar-price-card__body {
    background: #fff;
    padding: 24px;
    border: 1.5px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 20px 20px;
}

.pkg-summary-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
}

.pkg-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.88rem;
    color: #64748b;
    gap: 8px;
}

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

.pkg-summary-row strong {
    color: var(--deep);
    text-align: right;
}

.pkg-related-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 4px;
}

.pkg-related-item:hover {
    background: var(--brand-green-pale);
    transform: translateX(4px);
}

.pkg-related-item__img {
    width: 56px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.pkg-related-item__img--placeholder {
    width: 56px;
    height: 48px;
    border-radius: 10px;
    background: var(--brand-green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pkg-related-item__info {
    flex: 1;
    min-width: 0;
}

/* Hajj Rules Image Section */
.rules-img-wrap {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rules-img-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

footer {
    position: relative;
}

.footer-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.footer-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 6, 0.88);
    z-index: 1;
}

.svc-pkg-card {
    transition: all 0.25s ease;
    border-color: #e8e8e8 !important;
}

.svc-pkg-card:hover {
    border-color: var(--brand-green) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* ── Notice Board ─────────────────────────── */
.notice-board-section {
    background: #f4f6f8;
}

/* Sidebar */
.notice-sidebar {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.notice-sidebar__top {
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
    padding: 24px 20px;
    text-align: center;
}

.notice-sidebar__top h4,
.notice-sidebar__top p {
    color: #fff !important;
}

.notice-sidebar__top p {
    opacity: 0.75;
}

.notice-sidebar__icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin: 0 auto 12px;
}

.notice-sidebar__filters {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.notice-filter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.notice-filter-btn:hover {
    background: #f0f0f0;
    color: var(--deep);
}

.notice-filter-btn.active {
    background: linear-gradient(135deg, rgba(85, 139, 47, 0.1), rgba(124, 179, 66, 0.08));
    color: var(--brand-green-dark);
    border-left: 3px solid var(--brand-green);
}

.notice-filter-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.notice-filter-count {
    margin-left: auto;
    background: #f0f0f0;
    color: #888;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
}

.notice-filter-btn.active .notice-filter-count {
    background: var(--brand-green);
    color: #fff;
}

.notice-sidebar__cta {
    margin: 0 16px 16px;
    background: linear-gradient(135deg, #f8fff4, #edf7e4);
    border: 1px solid #c8e6c9;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--brand-green-dark);
    position: relative;
    cursor: pointer;
}

/* Accordion */
.notice-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notice-accordion-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: box-shadow 0.2s;
}

.notice-accordion-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
}

.notice-accordion-item--pinned {
    background: linear-gradient(90deg, #fffdf5, #fff);
}

.notice-accordion-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 20px;
    cursor: pointer;
    gap: 12px;
    text-align: left;
}

.notice-accordion-btn__left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.notice-pin {
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}

.notice-cat-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.notice-cat-dot--updates {
    background: #0d6efd;
}

.notice-cat-dot--important {
    background: #dc3545;
}

.notice-cat-dot--hajj {
    background: #198754;
}

.notice-cat-dot--umrah {
    background: #C9A84C;
}

.notice-cat-dot--general {
    background: #adb5bd;
}

.notice-cat-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 10px;
    border-radius: 50px;
}

.notice-cat-label--updates {
    background: #e8f0fe;
    color: #0d6efd;
}

.notice-cat-label--important {
    background: #fde8e8;
    color: #dc3545;
}

.notice-cat-label--hajj {
    background: #e8f5e9;
    color: #198754;
}

.notice-cat-label--umrah {
    background: #fff8e1;
    color: #856404;
}

.notice-cat-label--general {
    background: #f0f0f0;
    color: #6c757d;
}

.notice-meta-date {
    font-size: 11px;
    color: #bbb;
}

.notice-accordion-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--deep);
    display: block;
    line-height: 1.3;
}

.notice-accordion-chevron {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #888;
    flex-shrink: 0;
    transition: all 0.25s;
}

.notice-accordion-btn[aria-expanded="true"] .notice-accordion-chevron {
    background: var(--brand-green);
    color: #fff;
    transform: rotate(180deg);
}

.notice-accordion-body {
    padding: 0 20px 20px 20px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.8;
    border-top: 1px dashed #eee;
    padding-top: 16px;
}

.notice-cta-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
    color: #fff;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(85, 139, 47, 0.25);
}

.notice-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(85, 139, 47, 0.35);
    color: #fff;
}

@media (max-width: 991px) {
    .notice-sidebar {
        position: static;
    }
}

/* ── Team Section ─────────────────────────── */
.team-section {
    background: #f8f9fa;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.team-card__img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.team-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card__img {
    transform: scale(1.04);
}

.team-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ccc;
    background: linear-gradient(135deg, #f5f5f5, #ececec);
}

.team-card__board-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--gold), #e8c96a);
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 50px;
}

.team-card__board-badge--mgmt {
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
    color: #fff;
}

.team-card__body {
    padding: 20px;
}

.team-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 4px;
}

.team-card__role {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.team-card__bio {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 12px;
}

.team-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.team-card__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
}

.team-card__link--wa {
    background: #e8f5e9;
    color: #198754;
}

.team-card__link--wa:hover {
    background: #198754;
    color: #fff;
}

.team-card__link--ph {
    background: #e8f0fe;
    color: #0d6efd;
}

.team-card__link--ph:hover {
    background: #0d6efd;
    color: #fff;
}

.team-card__link--imo {
    background: #fff3e0;
    color: #e65100;
}

.team-card__link--imo:hover {
    background: #e65100;
    color: #fff;
}

/* ── Blog Cards ─────────────────────────── */
.blog-filter-btn {
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: var(--brand-green);
    color: #fff;
    border-color: var(--brand-green);
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.blog-card__img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__img {
    transform: scale(1.05);
}

.blog-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
    background: #f5f5f5;
}

.blog-card__featured {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--gold), #e8c96a);
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

.blog-card__cat {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--brand-green);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 50px;
}

.blog-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__date {
    font-size: 11px;
    color: #bbb;
    margin-bottom: 8px;
    display: block;
}

.blog-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card__excerpt {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 12px;
}

.blog-card__read {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-green);
    margin-top: auto;
}

/* ── Blog Detail ─────────────────────────── */
.blog-detail-prose {
    font-size: 1rem;
    line-height: 1.9;
    color: #444;
}

.blog-detail-prose h2,
.blog-detail-prose h3,
.blog-detail-prose h4 {
    color: var(--deep);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-detail-prose p {
    margin-bottom: 1.25rem;
}

.blog-detail-prose img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1rem 0;
}

.blog-detail-prose ul,
.blog-detail-prose ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.blog-detail-prose blockquote {
    border-left: 4px solid var(--brand-green);
    padding: 12px 20px;
    background: #f8fff4;
    border-radius: 0 8px 8px 0;
    color: #555;
    font-style: italic;
    margin: 1.5rem 0;
}

/* ── Service Package Card v3 ── */
.svc-pkg-card-v3 {
    display: flex;
    align-items: stretch;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid #eee;
    transition: all 0.35s ease;
    position: relative;
}

.svc-pkg-card-v3:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(85, 139, 47, 0.18);
    border-color: var(--brand-green);
}

.svc-pkg-card-v3--featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fffdf5 0%, #fff 100%);
}

.svc-pkg-card-v3--featured:hover {
    border-color: var(--gold);
    box-shadow: 0 16px 48px rgba(201, 168, 76, 0.2);
}

/* Image */
.svc-pkg-card-v3__img-wrap {
    position: relative;
    width: 160px;
    flex-shrink: 0;
    overflow: hidden;
}

.svc-pkg-card-v3__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.svc-pkg-card-v3:hover .svc-pkg-card-v3__img-wrap img {
    transform: scale(1.07);
}

.svc-pkg-card-v3__img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.svc-pkg-card-v3__popular-badge {
    position: absolute;
    top: 12px;
    left: -2px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 0 50px 50px 0;
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.4);
}

.svc-pkg-card-v3__status-badge {
    position: absolute;
    bottom: 10px;
    left: 8px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

.svc-pkg-card-v3__status-badge--danger {
    background: #dc3545;
    color: #fff;
}

.svc-pkg-card-v3__status-badge--warning {
    background: #ffc107;
    color: #000;
}

/* Body */
.svc-pkg-card-v3__body {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.svc-pkg-card-v3__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep);
    margin: 0;
    line-height: 1.3;
}

.svc-pkg-card-v3__metas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.svc-pkg-card-v3__meta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.svc-pkg-card-v3__meta--green {
    background: #e8f5e9;
    color: #2e7d32;
}

.svc-pkg-card-v3__meta--blue {
    background: #e3f2fd;
    color: #1565c0;
}

.svc-pkg-card-v3__meta--gold {
    background: #fff8e1;
    color: #856404;
}

/* Price */
.svc-pkg-card-v3__price-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 28px;
    background: linear-gradient(160deg, var(--brand-green-dark) 0%, var(--brand-green) 100%);
    min-width: 160px;
    text-align: center;
}

.svc-pkg-card-v3--featured .svc-pkg-card-v3__price-wrap {
    background: linear-gradient(160deg, var(--gold-dark) 0%, var(--gold) 100%);
}

.svc-pkg-card-v3__from {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.svc-pkg-card-v3__price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.svc-pkg-card-v3__btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.2s;
    margin-top: 4px;
}

.svc-pkg-card-v3:hover .svc-pkg-card-v3__btn {
    background: #fff;
    color: var(--brand-green-dark);
}

.svc-pkg-card-v3--featured:hover .svc-pkg-card-v3__btn {
    color: var(--gold-dark);
}

/* ── Related Package Card ── */
.rel-pkg-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    transition: all 0.3s ease;
    position: relative;
}

.rel-pkg-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.rel-pkg-card__img-wrap {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.rel-pkg-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rel-pkg-card:hover .rel-pkg-card__img-wrap img {
    transform: scale(1.07);
}

.rel-pkg-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.rel-pkg-card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 20, 10, 0.85) 0%, rgba(5, 20, 10, 0.2) 55%, transparent 100%);
}

.rel-pkg-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: #1a1a1a;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    z-index: 2;
}

.rel-pkg-card__overlay-title {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.rel-pkg-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
    gap: 8px;
    padding: 5px;
}

.rel-pkg-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 50px;
}

.rel-pkg-card__meta--white {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.rel-pkg-card__price-box {
    text-align: right;
    flex-shrink: 0;
}

.rel-pkg-card__from {
    display: block;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rel-pkg-card__price {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.team-card__view-hint {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-green);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #e0e0e0;
}

.team-modal-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1.5px solid transparent;
}

.team-modal-contact-item--blue {
    background: #e3f2fd;
    border-color: #bbdefb;
}

.team-modal-contact-item--green {
    background: #e8f5e9;
    border-color: #c8e6c9;
}

.team-modal-contact-item--orange {
    background: #fbe9e7;
    border-color: #ffccbc;
}

.team-modal-contact-item:hover {
    transform: translateX(4px);
    filter: brightness(0.96);
}

.team-modal-contact-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.team-modal-contact-item__label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    font-weight: 600;
}

.team-modal-contact-item__value {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* ── Ziyarat Box ── */
.pkg-ziyarat-box {
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid rgba(124, 179, 66, 0.2);
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pkg-ziyarat-box__header {
    background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.pkg-ziyarat-box__header i {
    font-size: 1rem;
    opacity: 0.9;
}

.pkg-ziyarat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px 20px;
    background: var(--brand-green-pale);
}

.pkg-ziyarat-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    background: #fff;
    color: var(--brand-green-dark);
    border: 1.5px solid rgba(124, 179, 66, 0.35);
    box-shadow: 0 2px 6px rgba(124, 179, 66, 0.1);
    transition: all 0.2s ease;
}

.pkg-ziyarat-item:hover {
    background: var(--brand-green);
    color: #fff;
    border-color: var(--brand-green);
}

.pkg-ziyarat-item i {
    color: var(--brand-green);
    font-size: 11px;
}

.pkg-ziyarat-item:hover i {
    color: #fff;
}

.custom-inquiry-card {
    background: #fff;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.1);
}

.ciq-left-desc {
    max-width: 440px;
}

.ciq-img-wrap {
    position: relative;
    min-height: 300px;
    height: 100%;
}

.ciq-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.ciq-success-alert {
    background: var(--brand-green-pale);
    border-left: 4px solid var(--brand-green) !important;
}

.ciq-date-hint {
    font-size: 11px;
    color: #6c757d;
}

.ciq-anytime-note {
    color: var(--brand-green);
}

.ciq-days-input {
    width: 60px;
}

.ciq-whatsapp-label {
    cursor: pointer;
}

/* Step indicator */
.ciq-steps {
    display: flex;
    align-items: center;
    gap: 0;
}

.ciq-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ciq-step__dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e9ecef;
    color: #aaa;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.ciq-step.active .ciq-step__dot {
    background: var(--brand-green);
    color: #fff;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.35);
}

.ciq-step.done .ciq-step__dot {
    background: var(--brand-green-dark);
    color: #fff;
}

.ciq-step__label {
    font-size: 13px;
    font-weight: 600;
    color: #aaa;
    transition: color 0.3s;
}

.ciq-step.active .ciq-step__label,
.ciq-step.done .ciq-step__label {
    color: var(--deep);
}

.ciq-step-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-green), rgba(201, 168, 76, 0.4));
    margin: 0 12px;
}

/* Radio buttons */
.ciq-radio-label {
    cursor: pointer;
    display: block;
}

.ciq-radio-label input[type="radio"] {
    display: none;
}

.ciq-radio-box {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--deep);
    transition: all 0.25s;
}

.ciq-radio-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #ccc;
    flex-shrink: 0;
    position: relative;
    transition: all 0.25s;
}

.ciq-radio-label input:checked + .ciq-radio-box {
    border-color: var(--brand-green);
    background: var(--brand-green-pale);
}

.ciq-radio-label input:checked + .ciq-radio-box .ciq-radio-dot {
    border-color: var(--brand-green);
    background: var(--brand-green);
    box-shadow: inset 0 0 0 3px #fff;
}

/* Date type buttons */
.ciq-date-btn {
    flex: 1;
    padding: 10px 8px;
    border-radius: 10px;
    border: 1.5px solid #222;
    background: #111827;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.ciq-date-btn.active {
    background: var(--brand-green);
    border-color: var(--brand-green);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

/* Counter buttons */
.ciq-counter-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1.5px solid #dee2e6;
    background: #f8f9fa;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.ciq-counter-btn:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
}

/* Responsive */
@media (max-width: 991.98px) {
    .ciq-img-wrap {
        height: 260px;
    }

    .ciq-left-desc {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .custom-inquiry-card {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .ciq-img-wrap {
        height: 200px;
    }

    .ciq-step__label {
        font-size: 11px;
    }

    .ciq-step__dot {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .ciq-date-btn {
        padding: 8px 4px;
        font-size: 12px;
    }

    .ciq-days-input {
        width: 50px;
    }
}

/* ── Airlines Slider ──────────────────────────── */
.airlines-swiper {
    padding-bottom: 10px;
}

.airline-slide-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.airline-slide-card:hover {
    border-color: var(--brand-green);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(124, 179, 66, 0.15);
}

.airline-slide-card img {
    width: 100%;
    height: 80px;
    object-fit: contain;
}

.airline-slide-placeholder {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--brand-green);
    opacity: 0.4;
}

.airline-slide-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--deep);
    text-align: center;
    margin: 0;
}

/* ── Hotels Slider ────────────────────────────── */
.hotels-swiper {
    padding-bottom: 40px;
}

.hotel-slide-card {
    background: #fff;
    border: 1.5px solid rgba(201, 168, 76, 0.15);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.hotel-slide-card:hover {
    transform: translateY(-5px);
}

.hotel-slide-card__img {
    height: 180px;
    overflow: hidden;
    background: var(--brand-green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-slide-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hotel-slide-card:hover .hotel-slide-card__img img {
    transform: scale(1.06);
}

.hotel-slide-placeholder {
    font-size: 3rem;
    color: var(--brand-green);
    opacity: 0.35;
}

.hotel-slide-card__body {
    padding: 18px 20px;
}

.hotel-slide-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}

.hotel-slide-card__location {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-green);
    margin-bottom: 8px;
}

.hotel-slide-card__details {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.hotels-pagination {
    margin-top: 10px;
}

/* ── Swiper Pagination & Navigation Override ─── */
.swiper-pagination-bullet {
    background: var(--brand-green);
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    background: var(--brand-green);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--brand-green);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: var(--brand-green);
}

.swiper-scrollbar-drag {
    background: var(--brand-green);
}

/* ── Sticky Side Contact Buttons ── */
.sticky-side-btns {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    margin: 0;
}

/* Only change this one property in .sticky-side-btn */
.sticky-side-btn {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 14px 16px;
    color: white !important;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    max-width: 52px;
    white-space: nowrap;
    box-shadow: -3px 3px 12px rgba(0, 0, 0, 0.2);
    margin-right: 0;
    margin-left: auto;
    align-self: flex-end;
    transition: max-width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                gap 0.4s ease,
                background 0.3s ease;
}

.sticky-side-btn:hover {
    max-width: 180px;
    gap: 10px;
}

.sticky-side-btn__label {
    font-size: 0.88rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.25s ease 0.15s,
                transform 0.25s ease 0.15s;
    pointer-events: none;
    user-select: none;
}

.sticky-side-btn:hover .sticky-side-btn__label {
    opacity: 1;
    transform: translateX(0);
}

.sticky-side-btn--whatsapp {
    background: var(--brand-green);
}

.sticky-side-btn--whatsapp:hover {
    background: var(--brand-green-dark);
}

.sticky-side-btn--call {
    background: var(--gold);
}

.sticky-side-btn--call:hover {
    background: var(--gold-dark);
}

.sticky-side-btn--email {
    background: var(--deep);
}

.sticky-side-btn--email:hover {
    background: var(--gold);
}

@media (max-width: 768px) {
    .sticky-side-btn {
        padding: 11px 13px;
        font-size: 1rem;
    }
}

/* Select2 Main */
.select2-container {
    width: 100% !important;
}

.select2-container .select2-selection--single {
    height: 48px !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 14px !important;
    padding: 0 14px !important;
    display: flex !important;
    align-items: center !important;
    background: #fff !important;
    transition: all .2s ease;
    box-shadow: none !important;
}

/* Text */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #495057 !important;
    line-height: normal !important;
    padding-left: 0 !important;
    font-size: 14px;
    font-weight: 500;
}

/* Arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 12px !important;
}

/* Focus */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #86b7fe !important;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,.15) !important;
}

/* Dropdown */
.select2-dropdown {
    border: 1px solid #dee2e6 !important;
    border-radius: 14px !important;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

/* Search */
.select2-search--dropdown {
    padding: 10px;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #dee2e6 !important;
    border-radius: 10px !important;
    padding: 10px 12px !important;
    font-size: 14px;
}

/* Options */
.select2-results__option {
    padding: 10px 14px !important;
    font-size: 14px;
    transition: .15s;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #0d6efd !important;
    color: #fff !important;
}

/* Selected */
.select2-container--default .select2-results__option[aria-selected=true] {
    background: #f1f3f5 !important;
    color: #212529 !important;
}

/* Placeholder */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #adb5bd !important;
}

/* ── Hot Deals Section ─────────────────────────── */
.hotdeals-section {
    background: linear-gradient(160deg, #f4fbee 0%, #ffffff 50%, #fffdf2 100%);
    position: relative;
    overflow: hidden;
}

.hotdeals-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-green), var(--gold), var(--brand-green), transparent);
}

/* ── Layout: timer left, cards right ── */
.hotdeals-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: start;
}

/* ── Timer Panel ── */
.hotdeals-timer-panel {
    position: sticky;
    top: 100px;
}

.hotdeals-timer-inner {
    background: linear-gradient(170deg, var(--brand-green-dark) 0%, var(--brand-green) 60%, #4caf50 100%);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(124, 179, 66, 0.35);
    position: relative;
    overflow: hidden;
}

.hotdeals-timer-inner::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
}

.hotdeals-timer-inner::after {
    content: '';
    position: absolute;
    bottom: -30px; left: -30px;
    width: 90px; height: 90px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.hotdeals-alarm-icon {
    font-size: 2.4rem;
    color: rgba(255,255,255,0.95);
    display: block;
    margin-bottom: 8px;
    animation: hdPulse 2s ease-in-out infinite;
}

@keyframes hdPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

.hotdeals-timer-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
}

.hotdeals-timer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.hotdeals-timer-box {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    padding: 12px 8px 10px;
    backdrop-filter: blur(6px);
}

.hotdeals-timer-num {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
}

.hotdeals-timer-label {
    display: block;
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    text-transform: uppercase;
}

.hotdeals-timer-footer {
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

/* ── Discount ribbon on card ── */
.hotdeals-pkg-card {
    position: relative;
}

.hotdeals-ribbon {
    position: absolute;
    top: 14px;
    left: -2px;
    z-index: 10;
    background: linear-gradient(135deg, #e53935, #ef5350);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px 5px 14px;
    border-radius: 0 6px 6px 0;
    letter-spacing: 0.5px;
    box-shadow: 2px 2px 10px rgba(229, 57, 53, 0.35);
}

.hotdeals-ribbon--hot {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--deep);
}

.hotdeals-old-price {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 500;
    margin-top: 1px;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .hotdeals-layout {
        grid-template-columns: 1fr;
    }

    .hotdeals-timer-panel {
        position: static;
    }

    .hotdeals-timer-inner {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 18px 20px;
        flex-wrap: nowrap;
        justify-content: center;
        text-align: center;
    }

    .hotdeals-timer-heading {
        display: none;
    }

    .hotdeals-alarm-icon {
        margin-bottom: 0;
        font-size: 1.8rem;
        flex-shrink: 0;
    }

    .hotdeals-timer-grid {
        grid-template-columns: repeat(4, 1fr);
        margin-bottom: 0;
        gap: 6px;
        flex: 1;
    }

    .hotdeals-timer-footer {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hotdeals-timer-inner {
        gap: 10px;
        padding: 16px 14px;
    }

    .hotdeals-alarm-icon {
        font-size: 1.5rem;
    }

    .hotdeals-timer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
        flex: 1;
    }

    .hotdeals-timer-num {
        font-size: 1.3rem;
    }

    .hotdeals-timer-box {
        padding: 8px 4px 7px;
    }

    .hotdeals-timer-label {
        font-size: 7.5px;
    }
}

/* ── Welcome Popup Modal ─────────────────────────── */
.popup-modal-dialog {
    max-width: 780px;
    margin: 1rem auto;
}

.popup-modal-content {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    min-height: 420px;
    position: relative;
}

/* Close button */
.popup-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 100;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.15);
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}

.popup-close-btn:hover {
    background: rgba(0,0,0,0.35);
    transform: rotate(90deg);
}

/* Image side */
.popup-img-side {
    height: 100%;
    min-height: 420px;
    position: relative;
    overflow: hidden;
}

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

.popup-modal-content:hover .popup-img {
    transform: scale(1.04);
}

/* Offer badge over image */
.popup-offer-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e53935, #ef5350);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.45);
    letter-spacing: 0.5px;
}

/* Mobile badge */
.popup-offer-badge-mobile {
    display: none;
    background: linear-gradient(135deg, #e53935, #ef5350);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    width: fit-content;
}

/* Content side */
.popup-content-side {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background: #fff;
    min-height: 420px;
}

.popup-brand-mark {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-green);
    background: var(--brand-green-pale);
    border: 1px solid rgba(124, 179, 66, 0.25);
    padding: 5px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 16px;
}

.popup-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--deep);
    line-height: 1.25;
    margin-bottom: 10px;
}

.popup-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-green-dark);
    margin-bottom: 10px;
}

.popup-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 0;
}

.popup-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--brand-green), rgba(201,168,76,0.4), transparent);
    margin: 20px 0;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-green);
    color: #fff !important;
    border: none;
    border-radius: 12px;
    padding: 13px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.popup-cta-btn:hover {
    background: var(--brand-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 179, 66, 0.4);
}

.popup-dismiss-btn {
    background: transparent;
    border: 1.5px solid #e2e8f0;
    color: #94a3b8;
    border-radius: 12px;
    padding: 11px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.popup-dismiss-btn:hover {
    border-color: #cbd5e1;
    color: #64748b;
}

.popup-once-note {
    font-size: 11px;
    color: #aaa;
    margin-top: 12px;
    margin-bottom: 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 767.98px) {
    .popup-modal-dialog {
        max-width: 95vw;
        margin: 1rem auto;
    }

    .popup-content-side {
        padding: 30px 24px;
        min-height: unset;
    }

    .popup-offer-badge-mobile {
        display: inline-flex;
        align-items: center;
    }

    .popup-title {
        font-size: 1.35rem;
    }
}