/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: #f0f4f8;
}

a { text-decoration: none; }
ul { list-style: none; }

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
    background: linear-gradient(135deg, #65A845, #1e6fcf);
    color: #ffffff;
    height: 40px;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.announcement-slider {
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-item {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    white-space: nowrap;
}

.announcement-item i {
    margin-right: 10px;
    color: #ffffff;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .announcement-item {
        font-size: 0.65rem;
        padding: 0 10px;
    }
    .announcement-item i {
        margin-right: 6px;
    }
}

/* =============================================
   SITE HEADER
   ============================================= */
.site-header {
    position: fixed;
    top: 40px; /* Below announcement bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.547);
    box-shadow: none;
    /* height: 70px; */
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* Solid white navbar after scrolling */
.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    padding: 15px 0px;
    gap: 16px;
}

/* ── Logo ─────────────────────────────────── */
.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo img {
    /* height: 52px; */
    width: 150px;
    /* object-fit: contain; */
    display: block;
     
}

/* ── Desktop Nav ──────────────────────────── */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: inline-block;
    padding: 8px 14px;
    font-size: 0.93rem;
    font-weight: 500;
    color: #374151;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #1e6fcf;
    background: rgba(30, 111, 207, 0.07);
}

.dropdown-icon {
    font-size: 0.75rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

/* ── Dropdown Menu Styling ────────────────── */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    min-width: 450px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid #f1f5f9;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
}

.dropdown-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dropdown-col a {
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-col a:hover {
    color: #65A845;
    background: rgba(101, 168, 69, 0.08); /* Light green background on hover */
    padding-left: 15px;
}

/* ── Holidays Dropdown — vertical single-column with scroll ── */
.holidays-dropdown {
    min-width: 240px;
    max-height: 340px;
    overflow-y: auto;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    left: 0;
    transform: translateX(0) translateY(10px);
}

.has-dropdown:hover .holidays-dropdown {
    transform: translateX(0) translateY(0);
}

.holidays-dropdown a {
    display: block;
    color: #4b5563;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.holidays-dropdown a:hover {
    color: #65A845;
    background: rgba(101, 168, 69, 0.08);
    padding-left: 18px;
}

/* Custom scrollbar for holidays dropdown */
.holidays-dropdown::-webkit-scrollbar {
    width: 4px;
}
.holidays-dropdown::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}
.holidays-dropdown::-webkit-scrollbar-thumb {
    background: #65A845;
    border-radius: 10px;
}
.holidays-dropdown::-webkit-scrollbar-thumb:hover {
    background: #548a38;
}

/* ── Auth Buttons ─────────────────────────── */
.mobile-auth {
    display: none; /* only shown inside mobile drawer */
}

.auth-buttons {
    display: flex;
    align-items: center;
    /* gap: 10px; */
    flex-shrink: 0;
}

.btn {
    display: inline-block;
    padding: 9px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
}

.btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* Beat a Quote Button */
.btn-quote {
    background: linear-gradient(135deg, #65A845, #1e6fcf);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(101, 168, 69, 0.2);
}

.btn-quote:hover {
    background: linear-gradient(135deg, #1e6fcf, #65A845);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 111, 207, 0.3);
}

/* ── Hamburger ────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.hamburger:hover { background: rgba(0,0,0,0.06); }

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #374151;
    border-radius: 3px;
    transition: transform 0.35s ease, opacity 0.25s ease;
    transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Mobile Overlay ───────────────────────── */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 998;
    backdrop-filter: blur(2px);
}

.mobile-overlay.show { display: block; }

/* =============================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================= */
@media (max-width: 900px) {
    .nav-link {
        font-size: 0.88rem;
        padding: 7px 10px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
    /* Show hamburger, hide desktop nav & buttons */
    .hamburger { display: flex; }
    .auth-buttons { display: none; }
    .btn-signup {
        margin-left: 0px;
    }

    /* Slide-in drawer */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 80vw);
        height: 100dvh;
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 24px 32px;
        z-index: 999;
        box-shadow: -4px 0 24px rgba(0,0,0,0.15);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.open { right: 0; }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        width: 100%;
    }

    .nav-list li { width: 100%; }

    .nav-link {
        display: block;
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: 8px;
        color: #1f2937;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #1e6fcf;
        background: rgba(30, 111, 207, 0.08);
    }

    /* Mobile Dropdown Adjustments */
    .has-dropdown .dropdown-menu {
        position: static;
        width: 100%;
        min-width: unset;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding: 5px 16px 15px;
        display: none; /* Hidden by default in mobile */
        border: none;
    }

    .has-dropdown.mobile-open .dropdown-menu {
        display: block;
    }

    .has-dropdown.mobile-open .dropdown-icon {
        transform: rotate(180deg);
    }

    .dropdown-columns {
        grid-template-columns: 1fr 1fr;
        gap: 5px 10px;
    }

    .dropdown-col a {
        font-size: 0.9rem;
        padding: 8px;
    }

    /* Auth buttons inside drawer */
    .nav-menu::after {
        content: '';
        display: block;
        margin-top: 20px;
        border-top: 1px solid #e5e7eb;
    }

    /* Auth buttons inside drawer */
    .nav-menu .mobile-auth {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        width: 100%;
    }

    .nav-menu .mobile-auth .btn {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
    .site-header { padding: 12px 0px; }
    .logo img { height: 44px; }
    .header-container { padding: 0 16px; }
}

.hero {
    width: 100%;
    height: 80vh;          
    margin-top: 0;
    background-image: url('./images/banner.png');
    background-size: cover;
    background-position: center;
    margin-top: 137px; /* 97px + 40px height of announcement bar */
}

.destination-hero {
    width: 100%;
    height: 80vh;
    margin-top: 137px; /* 97px + 40px */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.destination-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.destination-hero h1 {
    position: relative;
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .destination-hero {
        height: 40vh;
        margin-top: 107px; /* 67px + 40px */
    }
    .destination-hero h1 {
        font-size: 2.5rem;
    }
}

/* =============================================
   FLIGHT SEARCH FORM
   ============================================= */

.search-section {
    width: 95%;
    max-width: 1240px;
    z-index: 10;
    margin: auto;
    margin-top: -100px;
    /* padding: 40px 0px; */
}

.search-glass-container {
    background: rgba(255, 255, 255, 0.389);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 35px;
    padding: 20px 30px 30px;
    
}

/* ── Trip Type Tabs ─────────────────────── */
.trip-type-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.tab-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #4b5563;
    padding: 8px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.tab-item i {
    font-size: 1.1rem;
    color: #1a603d; /* dark green icon */
}

.tab-item span {
    font-weight: 500;
}

.tab-item input[type="radio"] {
    display: none;
}

.tab-item.active {
    background: rgba(255, 255, 255, 0.6);
    color: #111827;
}

/* ── Search Inputs Row ──────────────────── */
.search-inputs-row {
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: stretch;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: visible;
}

.input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 15px;
    position: relative;
    border-right: 1px solid #e5e7eb;
}

.input-group:last-of-type {
    border-right: none;
}

.input-icon i {
    font-size: 1.1rem;
    color: #2b6cb0; /* blue icons */
}

.input-icon i.fa-calendar-days,
.input-icon i.fa-user-group {
    color: #1a603d; /* green variant for specific icons */
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-wrapper label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.input-wrapper input,
.input-wrapper select {
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    width: 100%;
    padding: 0;
    background: transparent;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.hidden {
    display: none !important;
}

.input-wrapper input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

/* ── Date Picker Input ──────────────────── */
.date-picker-input {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    min-width: 0;
    color: #111827;
}

/* Hide the default browser calendar icon (Chrome/Safari) */
.date-picker-input::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}

/* Show placeholder-like colour when no date is chosen */
.date-picker-input:not([value]):not(:focus) {
    color: #9ca3af;
}

.date-picker-input:focus {
    outline: none;
}

.input-suffix i {
    font-size: 0.85rem;
    color: #9ca3af;
}

/* ── Search Button ──────────────────────── */
.btn-search-flights {
    background: #65A845;
    color: #ffffff;
    border: none;
    padding: 0 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
}

.btn-search-flights:hover {
    background: #548a38;
}

.btn-search-flights:active {
    transform: scale(0.98);
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 992px)
   ============================================= */
@media (max-width: 992px) {
    .search-inputs-row {
        flex-direction: column;
        border-radius: 12px;
        overflow: hidden;
    }

    .input-group {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .btn-search-flights {
        border-radius: 0 0 12px 12px;
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .search-section {
        position: relative;
        transform: none;
        left: 0;
        width: 100%;
        margin-top: 10px;
        padding: 0 15px;
    }

    .search-glass-container {
        border-radius: 20px;
        padding: 15px;
    }
    
    .trip-type-tabs {
        justify-content: center;
    }
}
@media (max-width: 520px) {
    .hero {
        width: 100%;
        height: 180px;
        background-size: cover;
        background-position: center;
        margin-top: 110px;
    }
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features-section {
    padding: 40px 20px;
    background: #f8fafc;
}

.features-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Specific Icon Classes (keeping for structure, but removing backgrounds) */
.flight-icon { 
    background: transparent;
}
.holiday-icon { 
    background: transparent;
}
.destinations-icon { 
    background: transparent;
}

.feature-content h3 {
    margin: 0 0 4px 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
}

.feature-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
}

/* ── Responsive Features ──────────────── */
@media (max-width: 992px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 20px;
    }
}

/* =============================================
   DESTINATIONS SECTION
   ============================================= */
.destinations-section {
    padding: 50px 20px;
    background: linear-gradient(160deg, #f0f7ed 0%, #ffffff 50%, #f0f7ed 100%);
    position: relative;
    overflow: hidden;
}

.destinations-container {
    max-width: 1240px;
    margin: 0 auto;
}


/* Obsolete destination card styles removed - now using .package-card */

.view-all-container {
    text-align: center;
}

.btn-view-all {
    display: inline-block;
    background: #65A845;
    color: #fff;
    padding: 14px 40px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-view-all:hover {
    background: #548a38;
}

/* ── Responsive Destinations ─────────── */
@media (max-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-section {
        padding: 60px 20px;
    }

    .destination-info h3 {
        font-size: 1.2rem;
    }
}

/* =============================================
   WHY CHOOSE FLYRISE SECTION
   ============================================= */
.why-choose-section {
    position: relative;
    background: linear-gradient(160deg, #f0f7ed 0%, #ffffff 50%, #f0f7ed 100%);
    padding: 50px 20px;
    overflow: hidden;
}

/* Decorative glowing background orbs */
.why-choose-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
    opacity: 0.18;
}
.why-choose-orb-1 {
    width: 500px;
    height: 500px;
    background: #65A845;
    top: -100px;
    left: -100px;
}
.why-choose-orb-2 {
    width: 400px;
    height: 400px;
    background: #1e6fcf;
    bottom: -80px;
    right: -80px;
}

.why-choose-inner {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header */
.why-choose-header {
    text-align: center;
    margin-bottom: 70px;
}

.why-choose-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(101,168,69,0.12), rgba(30,111,207,0.08));
    color: #65A845;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(101,168,69,0.3);
    margin-bottom: 18px;
}

.why-choose-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #1a2e1a;
    margin-bottom: 16px;
    line-height: 1.25;
}

.why-choose-header h2 span {
    background: linear-gradient(90deg, #65A845, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-header p {
    font-size: 1.05rem;
    color: #555;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 3-column grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(101,168,69,0.08);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(101,168,69,0.15);
}

/* Each feature item */
.why-choose-item {
    position: relative;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #ffffff;
    transition: background 0.4s ease;
    overflow: hidden;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #65A845, #1e6fcf);
    transition: height 0.45s cubic-bezier(0.23,1,.32,1);
    border-radius: 0 2px 2px 0;
}

.why-choose-item:hover {
    background: #f6fbf3;
}

.why-choose-item:hover::before {
    height: 100%;
}

/* Icon + Number row */
.wc-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wc-icon-wrap i {
    font-size: 2rem;
    color: #65A845;
    transition: transform 0.35s ease, color 0.35s ease;
    filter: drop-shadow(0 0 8px rgba(101,168,69,0.4));
}

.why-choose-item:hover .wc-icon-wrap i {
    transform: scale(1.15);
    color: #7fd45a;
}

.wc-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0,0,0,0.06);
    letter-spacing: -1px;
    line-height: 1;
    user-select: none;
    transition: color 0.4s ease;
}

.why-choose-item:hover .wc-num {
    color: rgba(101,168,69,0.15);
}

/* Thin divider line */
.wc-line {
    height: 1px;
    background: #e8e8e8;
    width: 40px;
    transition: width 0.4s ease, background 0.4s ease;
}

.why-choose-item:hover .wc-line {
    width: 80px;
    background: #65A845;
}

/* Text */
.wc-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a2e1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.wc-text p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.75;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-choose-section {
        padding: 60px 16px;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .why-choose-item {
        padding: 30px 24px;
    }
    .why-choose-header {
        margin-bottom: 45px;
    }
}

.why-book-section {
    padding: 20px 0px 10px 0px;
    background: #ffffff;
}

.why-book-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}

.why-book-content {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
    width: 56%;
}
.why-book-content .section-header p{
    font-size: 2.5rem;
    font-weight: 400;
    color: #1e293b;
    margin-bottom: 10px;
}

.why-book-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-book-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.list-icon {
    font-size: 1.5rem;
    color: #2b6cb0;
    margin-top: 5px;
}

.list-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #65A845; /* Green titles as requested */
    margin: 0 0 5px 0;
}

.list-text p {
    font-size: 0.95rem;
    color: #64748b; /* Grey descriptions */
    line-height: 1.5;
    margin: 0;
}

.why-book-image {
    width: 40%;
    overflow: hidden;
    height: 300px;
    border-top-left-radius: 75px;
    border-top:10px solid white;
    border-left:10px solid white;
box-shadow: -2px -2px 12px rgba(0, 0, 0, 0.10);
}

.why-book-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Responsive Why Book ─────────────── */
@media (max-width: 992px) {
    .why-book-container {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .why-book-content {
        width: 100%;
        margin-bottom: 40px;
    }

    .why-book-image {
        width: 100%;
        height: auto;
        min-height: 250px;
        border-top-left-radius: 40px; /* Adjusted for mobile */
    }

    .why-book-content .section-header p {
        font-size: 2rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .why-book-content .section-header p {
        font-size: 1.6rem;
    }

    .why-book-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .list-icon {
        margin-bottom: 10px;
    }
}


/* =============================================
   FOOTER SECTION — Premium 4-column
   ============================================= */
.site-footer {
    background: #040f1a;
    color: #ffffff;
    position: relative;
}

/* Top grid area */
.footer-top {
    max-width: 1240px;
    margin: 0 auto;
    padding: 70px 20px 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}

/* ── Col 1: Brand ─────────────────── */

.footer-brand .footer-logo img {
    width: 140px;
    margin-bottom: 20px;
    filter: brightness(1.1);
}

.footer-brand-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin-bottom: 28px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background: #65A845;
    border-color: #65A845;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(101,168,69,0.4);
}

/* ── Col 2 & 3: Link Columns ──────── */

.footer-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 2px solid #65A845;
    display: inline-block;
    letter-spacing: 0.3px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-link-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-link-list li a i {
    font-size: 0.65rem;
    color: #65A845;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.footer-link-list li a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-link-list li a:hover i {
    transform: translateX(3px);
}

/* ── Col 4: Contact ───────────────── */

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(101,168,69,0.12);
    border: 1px solid rgba(101,168,69,0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #65A845;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-list li:hover .footer-contact-icon {
    background: #65A845;
    color: #fff;
    box-shadow: 0 4px 14px rgba(101,168,69,0.35);
}

.footer-contact-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 3px;
}

.footer-contact-value {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* ── Bottom Bar ───────────────────── */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    background: rgba(0,0,0,0.25);
}

.footer-bottom-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom-inner p {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.footer-bottom-inner p span {
    color: #65A845;
    font-weight: 600;
}

.footer-bottom-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(101,168,69,0.1);
    border: 1px solid rgba(101,168,69,0.25);
    color: #65A845;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
}

.footer-bottom-badge i {
    font-size: 0.85rem;
}

/* ── Responsive Footer ──────────── */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-top {
        padding: 50px 20px 40px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}
/* =============================================
   CONTACT PAGE STYLES
   ============================================= */
.contact-section {
    padding: 100px 20px;
    background: #f8fafc;
}

.contact-container {
    max-width: 1240px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

/* ── Contact Info ───────────────────────── */
.info-header {
    margin-bottom: 40px;
}

.info-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-header p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-box {
    width: 55px;
    height: 55px;
    background: #e0f2fe;
    color: #1e6fcf;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.info-item:hover .icon-box {
    background: #1e6fcf;
    color: #ffffff;
    transform: rotate(10deg);
}

.text-box h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 4px;
}

.text-box p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.4;
}

.social-box h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 20px;
}

.contact-social-links {
    display: flex;
    gap: 15px;
}

.contact-social-links a {
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.contact-social-links a:hover {
    background: #65A845;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ── Contact Form ───────────────────────── */
.contact-form-wrapper {
    background: #ffffff;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
}

.form-input-container {
    position: relative;
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.form-input-container i {
    color: #94a3b8;
    font-size: 1rem;
    margin-right: 15px;
}

.form-input-container input,
.form-input-container textarea {
    width: 100%;
    border: none;
    background: transparent;
    padding: 15px 0;
    font-family: inherit;
    font-size: 1rem;
    color: #1e293b;
    outline: none;
}

.textarea-container {
    align-items: flex-start;
    padding-top: 15px;
}

.textarea-container i {
    margin-top: 5px;
}

.form-input-container:focus-within {
    background: #ffffff;
    box-shadow: 0 0 0 2px #1e6fcf;
}

.form-input-container:focus-within i {
    color: #1e6fcf;
}

.btn-send {
    width: 100%;
    background: linear-gradient(135deg, #1e6fcf, #1a5cad);
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-send:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 111, 207, 0.2);
}

.btn-send i {
    transition: transform 0.3s ease;
}

.btn-send:hover i {
    transform: translate(5px, -5px);
}

/* ── Responsive Contact ────────────────── */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .contact-social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 15px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .info-header h2 {
        font-size: 2rem;
    }
    
    .contact-form .form-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   ABOUT US PAGE STYLES
   ============================================= */
.about-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(101, 168, 69, 0.12), rgba(30, 111, 207, 0.1));
    color: #65A845;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

/* ── Intro Section ──────────────────────── */
.about-intro-section {
    padding: 100px 20px;
    background: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-intro-text p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 16px;
}

.intro-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.stat-item h3 {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e6fcf, #65A845);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
    margin: 0;
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    height: 480px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.image-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #ffffff;
    border-radius: 20px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    z-index: 10;
}

.image-badge i {
    font-size: 2rem;
    color: #65A845;
}

.image-badge span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
}

/* ── Mission Section ────────────────────── */
.about-mission-section {
    padding: 100px 20px;
    background: #f8fafc;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-header-center p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.mission-card {
    background: #ffffff;
    padding: 35px 28px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e0f2fe, #dcfce7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #1e6fcf;
    margin: 0 auto 22px;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    background: linear-gradient(135deg, #1e6fcf, #65A845);
    color: #ffffff;
}

.mission-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.7;
}

/* ── Team Section ───────────────────────── */
.about-team-section {
    padding: 100px 20px;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: #f8fafc;
    border-radius: 25px;
    padding: 45px 30px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.team-card:hover {
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.team-avatar {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1e6fcf, #65A845);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #ffffff;
    margin: 0 auto 20px;
}

.team-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.team-role {
    font-size: 0.9rem;
    color: #65A845;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
}

/* ── CTA Section ────────────────────────── */
.about-cta-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.cta-box {
    background: linear-gradient(135deg, #1e293b 0%, #1e6fcf 60%, #65A845 100%);
    border-radius: 30px;
    padding: 70px 50px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 22px;
    opacity: 0.9;
}

.cta-box h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 35px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #1e293b;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #65A845;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-cta i { transition: transform 0.3s ease; }
.btn-cta:hover i { transform: translateX(5px); }

/* ── Responsive About ─────────────────── */
@media (max-width: 1100px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-intro-image img {
        height: 350px;
    }

    .image-badge {
        left: 10px;
        bottom: -15px;
    }

    .intro-stats {
        justify-content: center;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-intro-section,
    .about-mission-section,
    .about-team-section {
        padding: 60px 15px;
    }

    .about-intro-text h2,
    .section-header-center h2 {
        font-size: 2rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 50px 25px;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }
}

/* =============================================
   BEAT A QUOTE PAGE STYLES
   ============================================= */
.quote-form-section {
    background-color: #f0f4f8; /* Site body background */
    padding: 100px 20px;
    margin-top: 80px; /* Offset for fixed header */
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-form-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); /* Soft premium shadow */
    text-align: center;
}

.quote-form-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #1e6fcf, #65A845);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-package-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.form-group {
    width: 100%;
}

.form-group.full {
    grid-column: span 2;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1.5px solid #e5e7eb;
    background: #fdfdfd;
    font-size: 1rem;
    font-family: inherit;
    color: #374151;
    outline: none;
    transition: all 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1e6fcf;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(30, 111, 207, 0.1);
}

.btn-submit-package {
    background: linear-gradient(135deg, #65A845, #1e6fcf);
    color: #ffffff;
    border: none;
    padding: 16px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 10px 20px rgba(101, 168, 69, 0.2);
}

.btn-submit-package:hover {
    background: linear-gradient(135deg, #1e6fcf, #65A845);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(30, 111, 207, 0.3);
}

@media (max-width: 768px) {
    .quote-form-section {
        padding: 60px 15px;
        margin-top: 70px;
    }
    
    .quote-form-container {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .quote-form-container h1 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full,
    .form-group.half {
        grid-column: span 1;
    }
    
    .btn-submit-package {
        width: 100%;
        padding: 14px 20px;
    }
}
.trust-section{
    padding:60px 20px 40px;
    background:#f0f4f8;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.trust-card{
    background:white;
    padding:25px 10px;
    border-radius:10px;
    text-align:center;
    transition:all .35s ease;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    border-top:4px solid #65A845;
    position:relative;
}

.trust-card .icon{
    font-size:32px;
    color:#65A845;
    margin-bottom:15px;
}

.trust-card h3{
    font-size:20px;
    margin-bottom:8px;
    color:#222;
}

.trust-card p{
    font-size:14px;
    color:#666;
}
.trust-card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 20px 40px rgba(0,0,0,0.15);
}





/* ===== HOLIDAY PACKAGES SECTION ===== */
.holiday-packages-section {
    padding: 40px 20px;
    background: linear-gradient(160deg, #f0f7ed 0%, #ffffff 50%, #f0f7ed 100%);
    position: relative;
    overflow: hidden;
}

.holiday-packages-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(101,168,69,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.holiday-packages-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(101,168,69,0.10) 0%, transparent 70%);
    pointer-events: none;
}

.packages-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.packages-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #1a2e1a;
    margin-bottom: 14px;
    line-height: 1.3;
}

.packages-header h2 span {
    color: #65A845;
}

.packages-header p {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.packages-header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.packages-header-line::before,
.packages-header-line::after {
    content: '';
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #65A845);
}

.packages-header-line::after {
    background: linear-gradient(90deg, #65A845, transparent);
}

.packages-header-line span {
    width: 10px;
    height: 10px;
    background: #65A845;
    border-radius: 50%;
    display: inline-block;
}

/* ---- Packages Slider (JS Transform Version) ---- */
.packages-slider-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden; /* Hide horizontal overflow completely */
    padding: 20px 0;
    /* cursor: grab; */
}

.packages-slider-wrapper:active {
    cursor: grabbing;
}

.packages-grid {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    user-select: none;
}

.package-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.35s cubic-bezier(.23,1.2,.32,1), box-shadow 0.35s ease;
    position: relative;
    border: 1px solid rgba(101,168,69,0.13);
    flex: 0 0 calc(20% - 16px); /* Shows ~5 cards with gap */
    min-width: 200px;
}

.package-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 44px rgba(101,168,69,0.18);
}

.package-img-wrap {
    width: 100%;
    height: 185px;
    overflow: hidden;
    position: relative;
}

.package-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(10,35,5,0.45) 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0.65;
}

.package-card:hover .package-img-wrap::after {
    opacity: 0.85;
}

.package-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    pointer-events: none;
}

.package-card:hover .package-card-img {
    transform: scale(1.08);
}

/* Card inner - matches reference image layout */
.package-card-inner {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.package-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin: 0 0 2px;
}

.package-card-name {
    font-size: 0.9rem;
    color: #555;
    font-weight: 400;
    margin: 0 0 6px;
    line-height: 1.4;
}

.pkg-divider {
    height: 1px;
    background: #e8e8e8;
    margin: 6px 0;
}

.package-price {
    font-size: 1.2rem;
    color: #333;
    font-weight: 400;
    margin: 0 0 10px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.package-price strong {
    font-size: 1.45rem;
    color: #65A845;
    font-weight: 700;
}

/* View Package Button - full width, pill shape */
.btn-view-package {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 18px;
    background: linear-gradient(135deg, #65A845, #4e8c34);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(101,168,69,0.25);
}

.btn-view-package::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    transition: left 0.5s ease;
}

.btn-view-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(101,168,69,0.42);
    background: linear-gradient(135deg, #72be50, #57a03a);
}

.btn-view-package:hover::after {
    left: 100%;
}

.btn-view-package i {
    transition: transform 0.28s ease;
}

.btn-view-package:hover i {
    transform: translateX(4px);
}

/* View All Packages Button */
.packages-cta {
    text-align: center;
    margin-top: 36px;
    position: relative;
    z-index: 1;
}

.btn-view-all-packages {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 38px;
    background: transparent;
    color: #65A845;
    border: 2px solid #65A845;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.4px;
    position: relative;
    overflow: hidden;
    transition: color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.btn-view-all-packages::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #65A845, #4e8c34);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(.23,1,.32,1);
    z-index: 0;
}

.btn-view-all-packages span,
.btn-view-all-packages i {
    position: relative;
    z-index: 1;
}

.btn-view-all-packages:hover {
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(101,168,69,0.3);
}

.btn-view-all-packages:hover::before {
    transform: scaleX(1);
}

.btn-view-all-packages i {
    transition: transform 0.35s ease;
}

.btn-view-all-packages:hover i {
    transform: rotate(45deg);
}

@media (max-width: 1200px) {
    .package-card {
        flex: 0 0 calc(25% - 15px); /* ~4 cards */
    }
}

@media (max-width: 1024px) {
    .package-card {
        flex: 0 0 calc(33.33% - 14px); /* ~3 cards */
    }
}

@media (max-width: 768px) {
    .holiday-packages-section {
        padding: 50px 16px;
    }
    .package-card {
        flex: 0 0 calc(50% - 10px); /* ~2 cards */
    }
    .package-img-wrap {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .package-card {
        flex: 0 0 85%; /* ~1 card + hint of next */
    }
}

/* ---- Umrah Section Enhancements ---- */
.umrah-packages-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9fdf7 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.umrah-title span {
    color: #65A845;
}

.umrah-card {
    border: 1px solid rgba(101,168,69,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.umrah-card:hover {
    border-color: #65A845;
    box-shadow: 0 20px 40px rgba(101,168,69,0.15);
}

.umrah-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #65A845;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-umrah {
    background: #65A845;
}

.btn-umrah:hover {
    background: linear-gradient(135deg, #65A845, #4e8c34);
    box-shadow: 0 8px 22px rgba(101,168,69,0.3);
}

.btn-umrah-all {
    color: #65A845;
    border-color: #65A845;
}

.btn-umrah-all:hover {
    border-color: #65A845;
}

.btn-umrah-all::before {
    background: linear-gradient(135deg, #65A845, #4e8c34);
}

/* =============================================
   CTA BANNER SECTION
   ============================================= */
.cta-banner-section {
    position: relative;
    /* background: linear-gradient(135deg, #042619 0%, #0a2a4a 45%, #0c1a0e 100%); */
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
}

/* Glowing orbs */
.cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
}
.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(101, 168, 69, 0.22);
    top: -150px;
    left: -100px;
    animation: cta-pulse 6s ease-in-out infinite alternate;
}
.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(30, 111, 207, 0.2);
    bottom: -120px;
    right: -80px;
    animation: cta-pulse 7s ease-in-out infinite alternate-reverse;
}

@keyframes cta-pulse {
    0%   { transform: scale(1);   opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 1;   }
}

/* Dot grid overlays */
.cta-dots {
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.cta-dots-left  { left: 0; }
.cta-dots-right { right: 0; }

.cta-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

/* Animated plane icon */
.cta-banner-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(101,168,69,0.25), rgba(30,111,207,0.2));
    border: 1px solid rgba(101,168,69,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    animation: cta-float 3.5s ease-in-out infinite;
}
.cta-banner-icon i {
    font-size: 1.8rem;
    color: #65A845;
    filter: drop-shadow(0 0 10px rgba(101,168,69,0.6));
}

@keyframes cta-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* Heading */
.cta-banner-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: black;
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.cta-banner-heading span {
    background: linear-gradient(90deg, #65A845, #4ecdc4, #1e6fcf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtext */
.cta-banner-text {
    font-size: 1.05rem;
    color: rgba(24, 23, 23, 0.65);
    line-height: 1.85;
    max-width: 600px;
    margin: 0 auto 44px;
}

/* Button row */
.cta-banner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Primary button */
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 38px;
    background: linear-gradient(135deg, #65A845, #4e8c34);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(101,168,69,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.55s ease;
}

.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(101,168,69,0.45);
}

.cta-btn-primary:hover::after { left: 100%; }

.cta-btn-primary i {
    transition: transform 0.3s ease;
}
.cta-btn-primary:hover i { transform: rotate(-15deg) scale(1.1); }

/* Ghost button */
.cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: #e57127;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #e57127;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    backdrop-filter: blur(4px);
}

.cta-btn-ghost::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #e57027d2;
    transform: scaleX(0);
    transform-origin: left;
    color: white;
    transition: transform 0.4s cubic-bezier(0.23,1,.32,1);
    border-radius: 50px;
}

.cta-btn-ghost:hover {
    border-color: #e57027b8;
    color: white;
    transform: translateY(-4px);
}
.cta-btn-ghost:hover::before { transform: scaleX(1); }
.cta-btn-ghost i { transition: transform 0.3s ease; }
.cta-btn-ghost:hover i { transform: rotate(10deg) scale(1.1); }

/* Responsive */
@media (max-width: 640px) {
    .cta-banner-section { padding: 70px 20px; }
    .cta-banner-actions { flex-direction: column; gap: 14px; }
    .cta-btn-primary,
    .cta-btn-ghost { width: 100%; justify-content: center; }
    .cta-dots { display: none; }
}
.cta-btn-ghost:hover .ctn-btn-ghost-span {
    color: white !important;
}

/* =============================================
   FLIGHT INFO SECTION
   ============================================= */
.flight-info-section {
    padding: 60px 20px;
    background: #ffffff;
}

.flight-info-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    background: linear-gradient(135deg, rgba(101, 168, 69, 0.04), rgba(30, 111, 207, 0.04));
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.flight-info-content {
    flex: 1;
}

.flight-info-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
}

.flight-info-content p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 25px;
}

.flight-info-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #ffffff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.info-badge i {
    color: #65A845;
}

.flight-info-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    height: 350px;
}

.flight-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .flight-info-container {
        flex-direction: column;
        padding: 30px 20px;
    }
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
    padding: 60px 20px 80px;
    background: #f8fafc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.faq-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: transparent;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    color: #65A845;
}

.faq-question i {
    font-size: 0.9rem;
    color: #9ca3af;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question {
    color: #1e6fcf;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #1e6fcf;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #ffffff;
}

.faq-answer-content {
    padding: 0 25px 20px;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

/* =============================================
   UMRAH PACKAGE CARD SECTIONS
   ============================================= */

/* Section wrapper */
.umrah-pkg-section {
    padding: 70px 20px;
    position: relative;
}

.umrah-3star {
    background: #f0f4f8;
}

.umrah-4star {
    background: linear-gradient(160deg, #f0f7ed 0%, #ffffff 60%, #eef5ff 100%);
}

.umrah-5star {
    background: linear-gradient(160deg, #fffbf0 0%, #ffffff 60%, #fff8e7 100%);
}

/* Container */
.umrah-pkg-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
}
@media screen and (max-width: 1350px) {
    .umrah-pkg-container {
        max-width: 95%;
        margin: auto;
    }
}
/* Section heading */
.umrah-pkg-heading {
    text-align: center;
    margin-bottom: 48px;
}

.umrah-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.umrah-stars i {
    font-size: 1.2rem;
    color: #65A845;
}

.umrah-stars-gold i {
    color: #d4a017;
}

.umrah-pkg-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.umrah-pkg-heading h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #65A845, #1e6fcf);
    border-radius: 3px;
    margin: 10px auto 0;
}

.umrah-5star .umrah-pkg-heading h2::after {
    background: linear-gradient(90deg, #d4a017, #f0c040);
}

.umrah-pkg-heading p {
    font-size: 1rem;
    color: #64748b;
    margin-top: 14px;
}

/* Cards grid */
.umrah-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ── Slider layout (replaces old grid) ───── */
.upc-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 0 0 4px;   /* room for card shadow at bottom */
    cursor: grab;
    user-select: none;
}

.upc-slider-wrapper:active {
    cursor: grabbing;
}

.upc-slider-track {
    display: flex;
    flex-wrap: nowrap;
    will-change: transform;
    align-items: stretch;
}

/* Keep old grid selector so nothing breaks if referenced elsewhere */
.umrah-cards-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 28px;
}

/* Individual card – width is set by JS */
.umrah-pkg-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.umrah-pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(30, 111, 207, 0.14);
    border-color: rgba(101, 168, 69, 0.3);
}

.umrah-pkg-card-luxury:hover {
    border-color: rgba(212, 160, 23, 0.4);
    box-shadow: 0 18px 40px rgba(212, 160, 23, 0.15);
}

/* Image area */
.upc-image-wrap {
    position: relative;
    overflow: hidden;
    height: 210px;
}

.upc-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.umrah-pkg-card:hover .upc-image-wrap img {
    transform: scale(1.06);
}

/* Badge */
.upc-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #65A845;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.upc-badge-blue {
    background: #1e6fcf;
}

.upc-badge-gold {
    background: linear-gradient(135deg, #d4a017, #f5c842);
    color: #1e293b;
}

/* Card body */
.upc-body {
    padding: 20px 20px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Card title */
.upc-title {
    font-size: 0.97rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.45;
    margin-bottom: 16px;
    min-height: 44px;
}

/* Hotel rows */
.upc-hotels {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.upc-hotel-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    padding: 10px 14px;
    transition: background 0.2s ease;
}

.upc-hotel-row:hover {
    background: #f0f7ed;
    border-color: rgba(101, 168, 69, 0.2);
}

.upc-hotel-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.makkah-icon {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

.madina-icon {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.upc-hotel-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.upc-hotel-info {
    display: flex;
    flex-direction: column;
}

.upc-hotel-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}

.upc-nights {
    font-size: 0.78rem;
    color: #65A845;
    font-weight: 600;
    margin-top: 2px;
}

/* Package inclusions chip row */
.upc-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #f0f7ed, #eef5ff);
    border-radius: 10px;
    border: 1px solid rgba(101, 168, 69, 0.15);
    margin-top: 2px;
}

.upc-includes span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #1e293b;
    background: #ffffff;
    border: 1px solid rgba(101, 168, 69, 0.2);
    border-radius: 20px;
    padding: 3px 10px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.upc-includes span i {
    font-size: 0.68rem;
    color: #65A845;
}

.umrah-5star .upc-includes {
    background: linear-gradient(135deg, #fffbf0, #fff8e7);
    border-color: rgba(212, 160, 23, 0.2);
}

.umrah-5star .upc-includes span {
    border-color: rgba(212, 160, 23, 0.25);
}

.umrah-5star .upc-includes span i {
    color: #d4a017;
}

/* Footer row with price + button */
.upc-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

/* Price tag */
.upc-price-tag {
    background: #1e6fcf;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 30px;
    white-space: nowrap;
    flex-shrink: 0;
}

.upc-price-tag span {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

.upc-price-gold {
    background: linear-gradient(135deg, #c8900f, #d4a017);
    color: #ffffff;
}

/* View Details button */
.upc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f5c842, #e8b800);
    color: #1e293b;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    flex: 1;
    justify-content: center;
}

.upc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(229, 184, 0, 0.35);
    color: #1e293b;
}

.upc-btn i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.upc-btn:hover i {
    transform: translateX(3px);
}

.upc-btn-gold {
    background: linear-gradient(135deg, #d4a017, #f5c842);
    color: #1e293b;
}

.upc-btn-gold:hover {
    box-shadow: 0 6px 18px rgba(212, 160, 23, 0.4);
}

/* ── Slider arrows ───────────────────────── */
.upc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.14);
    color: #1e293b;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.upc-arrow:hover {
    background: #65A845;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(101,168,69,0.35);
    transform: translateY(-50%) scale(1.08);
}

.upc-arrow-prev { left: -18px; }
.upc-arrow-next { right: -18px; }

/* Gold arrows for 5★ section */
.umrah-5star .upc-arrow:hover {
    background: linear-gradient(135deg, #d4a017, #f5c842);
    color: #1e293b;
    box-shadow: 0 6px 20px rgba(212,160,23,0.35);
}

/* ── Slider dots ─────────────────────────── */
.upc-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.upc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}

.upc-dot.active {
    background: #65A845;
    width: 28px;
    border-radius: 6px;
    transform: none;
}

.upc-dot:hover:not(.active) {
    background: #94a3b8;
    transform: scale(1.2);
}

.umrah-5star .upc-dot.active {
    background: linear-gradient(90deg, #d4a017, #f5c842);
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 600px) {
    .umrah-pkg-section {
        padding: 50px 16px;
    }

    .umrah-pkg-heading h2 {
        font-size: 1.6rem;
    }

    /* Tuck arrows in tighter on small screens */
    .upc-arrow-prev { left: 4px; }
    .upc-arrow-next { right: 4px; }
    .upc-arrow {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }

    .upc-image-wrap {
        height: 180px;
    }

    .upc-footer {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
   .hero{
    margin-top: 110px;
   }
    .header-container {
        padding: 0 20px !important;
        height: auto !important;
    }
    .logo img {
        height: 48px !important;
        width: auto !important;
    }
    .hamburger {
        height: 40px;
        display: flex;
        align-items: center;
    }
    
    .destination-hero {
        margin-top: 70px !important;
    }

    /* Horizontal scroll for search tabs on mobile */
    .trip-type-tabs {
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-bottom: 15px;
    }
    .trip-type-tabs::-webkit-scrollbar {
        display: none;
    }
    .tab-item {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        padding: 6px 14px !important;
        font-size: 0.85rem !important;
    }
}

/* ── Holiday SEO Content ────────────────── */
.holiday-seo-content {
    padding: 40px 0;
    background: #f0f4f8;
    /* border-top: 1px solid #e2e8f0; */
    /* border-bottom: 1px solid #e2e8f0; */
}

.holiday-seo-content .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.seo-content-header {
    text-align: center;
    margin-bottom: 10px;
}

.seo-sub {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #65A845;
    margin-bottom: 12px;
    display: inline-block;
}

.seo-content-header h2 {
    font-size: 2.2rem;
    color: #111827;
    margin-bottom: 10px;
}


.seo-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* gap: 10px; */
}

.seo-p-wrap p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .holiday-seo-content { padding: 60px 0; }
    .seo-content-header h2 { font-size: 1.8rem; }
    .seo-content-grid { grid-template-columns: 1fr; gap: 20px; }
}

        .faq-section {
            position: relative;
            padding: 10px 0 50px;
            overflow: hidden;
            color: black;
        }

        .faq-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        /* Header */
        .faq-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .faq-label {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #65A845;
            background: rgba(101,168,69,0.12);
            padding: 6px 18px;
            border-radius: 50px;
            margin-bottom: 18px;
        }

        .faq-header h2 {
            font-size: 2.4rem;
            font-weight: 700;
            color: black;
            margin-bottom: 14px;
            line-height: 1.2;
        }

        .faq-header h2 span {
            background: linear-gradient(135deg, #65A845, #1e6fcf);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .faq-header p {
            font-size: 1rem;
            color: black;
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.65;
        }

        /* Two-column grid */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        /* Each item */
        .faq-item {
            background: rgba(255, 255, 255, 0.164);
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 16px;
            height: max-content;
            overflow: hidden;
            transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
        }

        .faq-item:hover {
            background: rgba(255,255,255,0.07);
            border-color: rgba(101,168,69,0.4);
            box-shadow: 0 8px 32px rgba(101,168,69,0.12);
        }

        .faq-item.open {
            border-color: rgba(101,168,69,0.55);
            background: rgba(101,168,69,0.06);
        }

        /* Button */
        .faq-btn {
            width: 100%;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 20px 22px;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: 'Poppins', sans-serif;
        }

        .faq-num {
            font-size: 0.7rem;
            font-weight: 800;
            color: #65A845;
            background: rgba(101,168,69,0.15);
            border-radius: 6px;
            padding: 3px 8px;
            flex-shrink: 0;
            margin-top: 2px;
            letter-spacing: 0.5px;
        }

        .faq-q {
            flex: 1;
            font-size: 0.95rem;
            font-weight: 600;
            color: black;
            line-height: 1.45;
            transition: color 0.2s;
        }

        .faq-item.open .faq-q,
        .faq-item:hover .faq-q {
            color: rgb(9, 9, 9);
        }

        .faq-icon {
            font-size: 0.85rem;
            color: #64748b;
            flex-shrink: 0;
            margin-top: 3px;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            color: #65A845;
        }

        /* Body */
        .faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
            padding: 0 22px;
        }

        .faq-item.open .faq-body {
            max-height: 400px;
            padding: 0 22px 20px;
        }

        .faq-body p {
            font-size: 0.91rem;
            color: black;
            line-height: 1.75;
            margin: 0 0 12px;
        }

        .faq-body p:last-child { margin-bottom: 0; }

        /* Chips inside answers */
        .faq-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }

        .faq-chips span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.12);
            color: black;
            font-size: 0.78rem;
            font-weight: 500;
            padding: 5px 12px;
            border-radius: 50px;
        }

        .faq-chips span i { color: #65A845; font-size: 0.72rem; }

        /* Bottom CTA strip */
        .faq-cta-strip {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 52px;
            padding: 28px 32px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 18px;
        }

        .faq-cta-strip p {
            font-size: 1rem;
            color: #94a3b8;
            margin: 0;
        }

        .faq-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: linear-gradient(135deg, #65A845, #1e6fcf);
            color: #fff;
            font-size: 0.92rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 18px rgba(101,168,69,0.3);
        }

        .faq-cta-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 8px 26px rgba(101,168,69,0.45);
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .faq-grid { grid-template-columns: 1fr; }
            .faq-header h2 { font-size: 1.8rem; }
            .faq-cta-strip { flex-direction: column; text-align: center; }
        }

        .dubai-pkg-section {
            padding: 40px 0 80px;
            background: linear-gradient(160deg, #f0f4f8 0%, #e8f0fb 100%);
            position: relative;
            overflow: hidden;
        }

        .dubai-pkg-section::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(101,168,69,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .dubai-pkg-container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .dubai-pkg-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .dubai-pkg-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #65A845, #1e6fcf);
            color: #fff;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 6px 18px;
            border-radius: 50px;
            margin-bottom: 16px;
        }

        .dubai-pkg-title {
            font-size: 2.4rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .dubai-pkg-subtitle {
            font-size: 1rem;
            color: #64748b;
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ── Slider Wrapper ── */
        .dubai-slider-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

        .dubai-slider-track {
            display: flex;
            gap: 24px;
            transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        /* ── Card ── */
        .dubai-pkg-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0,0,0,0.08);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            flex: 0 0 calc((100% - 48px) / 3);
            min-width: calc((100% - 48px) / 3);
        }

        .dubai-pkg-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 40px rgba(0,0,0,0.14);
        }

        /* ── Card Image ── */
        .dubai-card-img-wrap {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .dubai-card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .dubai-pkg-card:hover .dubai-card-img-wrap img {
            transform: scale(1.06);
        }

        .dubai-card-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: linear-gradient(135deg, #65A845, #4a8c32);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 5px 12px;
            border-radius: 50px;
            text-transform: uppercase;
        }

        .dubai-badge-blue {
            background: linear-gradient(135deg, #1e6fcf, #1558a8);
        }

        /* ── Card Body ── */
        .dubai-card-body {
            padding: 20px 22px 22px;
        }

        .dubai-card-stars {
            display: flex;
            gap: 3px;
            margin-bottom: 10px;
        }

        .dubai-card-stars i {
            color: #f59e0b;
            font-size: 0.88rem;
        }

        .dubai-card-title {
            font-size: 1.08rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 8px;
            line-height: 1.35;
        }

        .dubai-card-location {
            font-size: 0.85rem;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 14px;
        }

        .dubai-card-location i {
            color: #1e6fcf;
        }

        /* ── Amenities ── */
        .dubai-card-amenities {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }

        .dubai-card-amenities span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: #f0f4f8;
            color: #374151;
            font-size: 0.75rem;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 50px;
        }

        .dubai-card-amenities span i {
            color: #1e6fcf;
            font-size: 0.75rem;
        }

        /* ── Divider ── */
        .dubai-card-divider {
            height: 1px;
            background: #e5e7eb;
            margin-bottom: 16px;
        }

        /* ── Footer Row ── */
        .dubai-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .dubai-card-nights {
            font-size: 0.88rem;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .dubai-card-nights i {
            color: #65A845;
        }

        .dubai-card-price {
            font-size: 0.9rem;
            color: #475569;
        }

        .dubai-card-price strong {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
        }

        /* ── CTA Button ── */
        .dubai-card-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #1e6fcf, #1558a8);
            color: #fff;
            font-size: 0.92rem;
            font-weight: 600;
            border-radius: 12px;
            transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            text-decoration: none;
        }

        .dubai-card-btn:hover {
            background: linear-gradient(135deg, #65A845, #4a8c32);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(101,168,69,0.35);
            color: #fff;
        }

        .dubai-card-btn i {
            transition: transform 0.25s ease;
        }

        .dubai-card-btn:hover i {
            transform: translateX(4px);
        }

        /* ── Arrows ── */
        .dubai-slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: #ffffff;
            border: none;
            box-shadow: 0 4px 16px rgba(0,0,0,0.14);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e6fcf;
            font-size: 1rem;
            transition: background 0.25s, color 0.25s, box-shadow 0.25s;
            display: none;
        }

        .dubai-slider-arrow:hover {
            background: linear-gradient(135deg, #65A845, #1e6fcf);
            color: #fff;
            box-shadow: 0 6px 20px rgba(30,111,207,0.25);
        }

        .dubai-arrow-prev { left: 12px; }
        .dubai-arrow-next { right: 12px; }

        /* ── Dots ── */
        .dubai-slider-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 32px;
        }

        .dubai-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #cbd5e1;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s, width 0.3s;
            border: none;
        }

        .dubai-dot.active {
            background: linear-gradient(135deg, #65A845, #1e6fcf);
            width: 28px;
            border-radius: 5px;
        }

        /* ── Responsive ── */
        @media (max-width: 900px) {
            .dubai-pkg-card {
                flex: 0 0 calc((100% - 24px) / 2);
                min-width: calc((100% - 24px) / 2);
            }
        }

        @media (max-width: 600px) {
            .dubai-pkg-title { font-size: 1.8rem; }
            .dubai-pkg-card {
                flex: 0 0 100%;
                min-width: 100%;
            }
            .dubai-slider-arrow { display: none; }
        }

        /* ================================================
           DETAILED SEO CONTENT (BALI & OTHERS)
        ================================================ */
        .seo-detailed-section {
            padding: 60px 0;
            background: #f8fafc;
        }

        .seo-detailed-container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .seo-detailed-grid {
            /* display: grid; */
            /* grid-template-columns: 320px 1fr; */
            /* gap: 60px; */
            align-items: start;
        }

        /* Sidebar */
        .seo-sidebar {
            position: sticky;
            top: 100px;
            background: #f8fafc;
            padding: 30px;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
        }

        .seo-sidebar-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #65A845;
        }

        .seo-nav {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .seo-nav-link {
            font-size: 0.9rem;
            color: #64748b;
            text-decoration: none;
            padding: 10px 18px;
            border-radius: 10px;
            transition: all 0.3s ease;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .seo-nav-link i {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        .seo-nav-link:hover {
            color: #1e6fcf;
            background: rgba(30, 111, 207, 0.05);
        }

        .seo-nav-link.active {
            color: #fff;
            background: linear-gradient(135deg, #65A845, #1e6fcf);
            box-shadow: 0 4px 15px rgba(101, 168, 69, 0.25);
        }

        .seo-nav-link.active i {
            opacity: 1;
        }

        /* Content Area */
        .seo-main-content {
            background: #f8fafc;
        }

        .seo-scroll-container {
            height: 700px;
            overflow-y: auto;
            padding-right: 35px;
            scroll-behavior: smooth;
        }

        .seo-scroll-container::-webkit-scrollbar {
            width: 8px;
        }

        .seo-scroll-container::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 10px;
        }

        .seo-scroll-container::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, #65A845, #1e6fcf);
            border-radius: 10px;
        }

        .seo-content-block {
            margin-bottom: 60px;
        }

        .seo-content-block:last-child {
            margin-bottom: 0;
            padding-bottom: 50px;
        }

        .seo-content-block h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 24px;
            line-height: 1.25;
        }

        .seo-content-block h3 {
            font-size: 1.45rem;
            font-weight: 700;
            color: #1e293b;
            margin: 35px 0 18px;
        }

        .seo-content-block p {
            font-size: 1.08rem;
            color: #475569;
            line-height: 1.85;
            margin-bottom: 22px;
        }

        .seo-content-block ul {
            list-style: none;
            padding: 0;
            margin: 25px 0;
        }

        .seo-content-block li {
            position: relative;
            padding-left: 32px;
            margin-bottom: 15px;
            font-size: 1.08rem;
            color: #475569;
            line-height: 1.6;
        }

        .seo-content-block li i {
            position: absolute;
            left: 0;
            top: 4px;
            color: #65A845;
            font-size: 1.1rem;
        }

        .seo-highlight-box {
            background: linear-gradient(135deg, rgba(101, 168, 69, 0.05), rgba(30, 111, 207, 0.05));
            border-left: 5px solid #65A845;
            padding: 35px;
            border-radius: 0 20px 20px 0;
            margin: 35px 0;
        }

        .seo-highlight-box p {
            margin-bottom: 0;
            font-style: italic;
            color: #334155;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .seo-detailed-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .seo-sidebar {
                position: static;
                padding: 24px;
            }
            .seo-nav {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 10px;
            }
            .seo-nav-link {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
            .seo-scroll-container {
                height: auto;
                max-height: 800px;
                padding-right: 0;
            }
            .seo-content-block h2 {
                font-size: 1.8rem;
            }
        }

/* ================================================
   SEO CONTENT SECTION (STICKY NAV & SCROLL-SPY)
   Pattern from Egypt & Antalya pages
================================================ */
.seo-content-section {
    background: #f8fafc;
    padding: 70px 0 80px;
    border-top: 1px solid #e2e8f0;
}

.seo-content-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.seo-nav-col {
    position: sticky;
    top: 100px;
    
}

.seo-nav-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.seo-nav-label i { color: #65A845; }

.seo-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.seo-nav-link {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: #64748b;
    padding: 7px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    text-decoration: none;
}

.seo-nav-link:hover,
.seo-nav-link.active {
    color: #1e6fcf;
    background: rgba(30,111,207,0.07);
    border-left-color: #65A845;
}

.seo-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    background: linear-gradient(135deg, #65A845, #1e6fcf);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.seo-nav-cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.seo-content-col {
    max-height: 700px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 14px;
    scroll-behavior: smooth;
}

/* Custom scrollbar for SEO column */
.seo-content-col::-webkit-scrollbar {
    width: 6px;
}
.seo-content-col::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}
.seo-content-col::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #65A845, #1e6fcf);
    border-radius: 10px;
}
.seo-content-col::-webkit-scrollbar-thumb:hover {
    background: #65A845;
}

.seo-block {
    padding: 40px 0;
    border-bottom: 1px solid #e2e8f0;
}

.seo-block:last-child { border-bottom: none; }

.seo-block-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #65A845;
    background: rgba(101,168,69,0.1);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.seo-h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.seo-block p {
    font-size: 0.97rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 14px;
}

.seo-block p:last-child { margin-bottom: 0; }

.seo-block ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.seo-block ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.seo-block ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #65A845;
}

/* Specific component for grouped content */
.seo-dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.seo-dest-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.seo-dest-item:hover {
    border-color: #65A845;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.seo-dest-name {
    display: block;
    font-weight: 700;
    color: #1e293b;
    font-size: 1.05rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.seo-dest-name i { color: #65A845; font-size: 0.9rem; }

@media (max-width: 992px) {
    .seo-content-wrap {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
    .seo-nav-col { display: none; }
    .seo-content-col { max-height: none; padding-right: 0; }
}

@media (max-width: 600px) {
    .seo-h2 { font-size: 1.35rem; }
    .seo-content-section { padding: 40px 0 50px; }
}
