/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 0;
    background: transparent;
}
h1, h2, h3 { line-height: 1.2; margin-bottom: 0.5em; }
a { color: #0d6efd; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }
.mt-2 { margin-top: 0.75rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0.25rem;
}
.btn-primary {
    background: white;
    color: black;
    border: 2px solid black;
}
.btn-primary:hover {
    background: white;
    border-color: red;
    color: red;
    text-decoration: none;
}
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: #000; }
.btn-secondary {
    background: white;
    color: black;
    border: 1px solid red;
}
.btn-link { color: red; font-weight: 600; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-xl {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 60px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.35);
    transition: all 0.3s ease;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}
.btn-xl:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(13, 110, 253, 0.45); }
.btn-outline-dark {
    background: transparent;
    color: red;
    border: 2px solid red;
}
.btn-outline-dark:hover { background: #fff; color: #0d6efd; border-color: #fff; }
.btn-outline-dark i { margin-right: 0.5rem; }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline-light:hover { background: #fff; color: #1a1a2e; }
.btn-block { display: block; width: 100%; }

/* ===== TOP INFO BAR ===== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.82rem;
    color: #495057;
    z-index: 1001;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.top-bar.hide { transform: translateY(-100%); }
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.top-bar-contact { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; color: #555; }
.contact-item { display: inline-flex; align-items: center; gap: 0.35rem; white-space: nowrap; }
.contact-item i { color: #0d6efd; font-size: 0.8rem; width: 16px; text-align: center; }
.contact-item a { color: #495057; text-decoration: none; transition: color 0.2s; }
.contact-item a:hover { color: #0d6efd; text-decoration: underline; }
.contact-divider { color: #dee2e6; margin: 0 0.25rem; user-select: none; }
.phone-sep { color: #888; margin: 0 1px; }
.top-bar-social { display: flex; align-items: center; gap: 0.6rem; }

/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icon.fb { background: #1877f2; }
.social-icon.x-twitter { background: #000000; }
.social-icon.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.li { background: #0a66c2; }
.social-icon:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

/* ===== MAIN HEADER ===== */
.site-header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    /* box-shadow: 0 2px 15px rgba(0,0,0,0.08); */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}
.site-header.glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.site-header .container { transition: padding 0.3s ease; }
.site-header.glass .container { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo img { width: 12vw; vertical-align: middle; transition: transform 0.3s ease; }
.site-header.glass .logo img { transform: scale(0.9); }

/* Main Navigation */
.main-nav { display: flex; align-items: center; gap: 1.5rem; }
.main-nav ul { list-style: none; display: flex; gap: 2rem; }
.main-nav a {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0d6efd;
    transition: width 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a:focus::after { width: 100%; }
.main-nav a:hover { color: #0d6efd; }

/* Book a Trip CTA Button */
.btn-book-trip {
    background: white;
    color: black !important;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: none;
    cursor: pointer;
}
.btn-book-trip::before {
    content: '\f072';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
}
.btn-book-trip:hover {
    background: linear-gradient(135deg, #ffe44d, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}
.btn-book-trip::after { display: none !important; }

/* Nav Toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle .bar { display: block; width: 25px; height: 3px; margin: 5px auto; background: #1a1a1a; transition: 0.3s; }
.nav-toggle.active .bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== PUSH MAIN CONTENT BELOW FIXED HEADERS ===== */
main {
    padding-top: 0px;
    transition: padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
body.top-bar-hidden main { padding-top: 70px; }

/* ===== ANIMATED SLIDER HERO WITH GLASSMORPHISM ===== */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    margin-top: 0;
    height: 100vh;
}
body.top-bar-hidden .hero-slider { height: calc(100vh - 70px); }

.slides-container { position: relative; width: 100%; height: 100%; }

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}
.slide.active { opacity: 1; z-index: 2; }

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 10s ease;
}
.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.45) 100%);
}

/* Slide Content - LEFT ALIGNED ON DESKTOP */
.slide-content.container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    width: 75vw;
}

/* ===== GLASSMORPHISM CARD ===== */
.glass-card {
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-radius: 24px;
    padding: 0.5rem 0.5rem;
    max-width: 100%;
    width: 100%;
    color: #fff;
    animation: glassFadeIn 0.9s ease-out both;
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transform: skewX(-20deg);
    animation: glassShimmer 6s ease-in-out infinite;
}
@keyframes glassShimmer {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}
@keyframes glassFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.glass-card__tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.35);
    color: #ffd700;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
}
.glass-card__title { font-size: 2.4rem; font-weight: 700; line-height: 1.2; margin-bottom: 1rem; color: #fff; }
.glass-card__title span {
    color: red;
    background-color: white;
    padding: 5px;
    border-radius: 12px;
}
.glass-card__text { font-size: 1.05rem; line-height: 1.7; opacity: 0.9; margin-bottom: 2rem; color: rgba(255, 255, 255, 0.9); }
.glass-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    background: white;
    color: black;
    border: none;
    /* box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3); */
    transition: all 0.3s ease;
    text-decoration: none;
}
.glass-card__btn:hover {
    transform: translateY(-1px);
    background: white;
    color: red;
	text-decoration: none
}
.glass-card__btn i { transition: transform 0.3s ease; }
.glass-card__btn:hover i { transform: translateX(4px); }

/* ===== SLIDER DOTS ===== */
.slider-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.dot.active {
    background: #ffd700;
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}
.dot:hover { background: rgba(255, 255, 255, 0.7); }

/* ===== SLIDER ARROWS ===== */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.05);
}
.slider-arrow.prev { left: 25px; }
.slider-arrow.next { right: 25px; }

/* ===== SECTION DIVIDER HERO ===== */
.hero-divider {
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
    margin: 2rem 0;
}
.hero-divider h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero-divider .hero-sub { font-size: 1.2rem; margin-bottom: 2rem; }

/* ===== PAGE HERO (GENERIC) ===== */
.page-hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 15rem 0;
    text-align: center;
}
.page-hero h1 { font-size: 2.8rem; margin-bottom: 1rem; line-height: 1.2; }
.page-hero h1 span { color: red; }
.page-hero .lead { font-size: 1.15rem; max-width: 700px; margin: 0 auto; opacity: 0.95; }
.hero-label {
    display: inline-block;
    background: white;
    color: #1a1a1a;
    padding: 6px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

/* ===== HOME PAGE SECTIONS ===== */
/* Services Overview */
.services-overview { padding: 5rem 0; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.card img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: 0.5rem; }
.card-body p { color: #666; font-size: 0.9rem; margin-bottom: 1rem; }

/* Travel Packages */
.travel-packages { padding: 5rem 0; background: #f8f9fa; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.2rem; color: #1a1a1a; margin-bottom: 0.75rem; }
.section-header h2 strong { color: red; }
.section-subtitle { max-width: 700px; margin: 0 auto; color: #555; font-size: 1.05rem; line-height: 1.7; }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.package-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.package-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.package-badge {
    position: absolute;
    top: 15px;
    left: -5px;
    background: #ff6b35;
    color: #fff;
    padding: 6px 20px 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 4px 4px 0;
    z-index: 2;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}
.package-badge-new { background: #10b981; }
.package-image { height: 220px; overflow: hidden; }
.package-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.package-card:hover .package-image img { transform: scale(1.08); }
.package-body { padding: 1.5rem; }
.package-duration {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.package-body h3 { font-size: 1.15rem; margin-bottom: 0.75rem; color: #1a1a1a; }
.package-body p { color: #666; font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.5rem; }
.package-footer { display: flex; justify-content: space-between; align-items: flex-end; border-top: 1px solid #e9ecef; padding-top: 1rem; }
.package-price .from { display: block; font-size: 0.75rem; color: #888; text-transform: uppercase; }
.package-price .amount { font-size: 1.6rem; font-weight: 700; color: #0d6efd; line-height: 1; }
.package-price .per { display: block; font-size: 0.75rem; color: #888; }
.insurance-reminder { background: #e7f1ff; border-radius: 10px; padding: 1rem 1.5rem; color: #1a1a1a; display: inline-block; }
.insurance-reminder a { font-weight: 600; }

/* Safari Showcase */
.safari-showcase { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; }
.safari-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-attachment: fixed; }
.safari-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 60%); }
.safari-content { position: relative; z-index: 2; }
.safari-text { max-width: 650px; color: #fff; }
.safari-label {
    display: inline-block;
    background: white;
    color: black;
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.safari-text h2 { font-size: 2.5rem; line-height: 1.3; margin-bottom: 1.5rem; }
.safari-text h2 span { color: red; }
.safari-text p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; opacity: 0.95; }
.safari-stats { display: flex; gap: 3rem; margin-bottom: 2.5rem; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 2.2rem; font-weight: 700; color: white; line-height: 1; }
.stat-label { font-size: 0.85rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.5px; }

/* Travel Adventures */
.travel-adventures { padding: 5rem 0; }
.adventures-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 1.25rem; }
.adventure-item {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.adventure-item:hover { transform: scale(1.02); }
.adventure-large { grid-row: span 2; grid-column: span 1; }
.adventure-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
}
.adventure-caption h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.adventure-caption p { font-size: 0.9rem; opacity: 0.9; margin-bottom: 1rem; }
.adventure-cta { font-size: 1.1rem; }
.adventure-cta a { font-weight: 600; }

/* World Destinations */
.world-destinations { padding: 5rem 0; background: #f8f9fa; }
.destinations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.destination-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.destination-card:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.destination-image { position: relative; height: 200px; overflow: hidden; }
.destination-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.destination-card:hover .destination-image img { transform: scale(1.06); }
.destination-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0d6efd;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.destination-body { padding: 1.5rem; }
.destination-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: #1a1a1a; }
.destination-body p { color: #666; font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.destinations-cta h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* About Preview */
.about-preview { padding: 5rem 0; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.two-column .text h2 { font-size: 2rem; margin-bottom: 1rem; }
.two-column .text p { color: #495057; line-height: 1.8; margin-bottom: 1.5rem; }
.two-column .image img { border-radius: 16px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

/* Testimonial */
.testimonial { padding: 4rem 0; background: #f8f9fa; }
.testimonial blockquote { font-size: 1.3rem; font-style: italic; color: #495057; max-width: 700px; margin: 0 auto 1rem; }
.testimonial cite { font-weight: 600; color: #1a1a1a; }

/* ===== ENHANCED FOOTER ===== */
.site-footer { background: #0d1117; color: #c9d1d9; margin-top: 0; overflow: hidden; }
/* ===== AIRLINE PARTNERS STRIP ===== */
.footer-airlines {
    background: white;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 2rem 0;
    overflow: hidden;
}
.airlines-title {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8b949e;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.airlines-track {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.airlines-slide {
    display: flex;
    gap: 3rem;
    align-items: center;
    animation: scrollAirlines 25s linear infinite;
    width: max-content;
}

.airlines-slide img {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.airlines-slide img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

@keyframes scrollAirlines {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.footer-airlines:hover .airlines-slide {
    animation-play-state: paused;
}

/* ===== FOOTER MAIN ===== */
.footer-main {
    padding: 4rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: red;
    border-radius: 2px;
}

/* Brand Column */
.footer-logo {
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #8b949e;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social .social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Links Columns */
.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.6rem;
}

.footer-links a,
.footer-services a {
    color: #8b949e;
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before,
.footer-services a::before {
    content: '▸';
    position: absolute;
    left: -18px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ffd700;
}

.footer-links a:hover,
.footer-services a:hover {
    color: #ffd700;
    padding-left: 18px;
    text-decoration: none;
}

.footer-links a:hover::before,
.footer-services a:hover::before {
    opacity: 1;
    left: 0;
}

/* Contact Column */
.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    font-size: 0.88rem;
    color: #8b949e;
    line-height: 1.5;
}

.footer-contact-list li i {
    color: white;
    font-size: 0.85rem;
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: #8b949e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* ===== ACCREDITATIONS BAR ===== */
.footer-accreditations {
    background: #161b22;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 0;
}

.accreditations-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.accred-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #8b949e;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.accred-item:hover {
    color: #fff;
}

.accred-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.3);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.accred-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ===== FOOTER BOTTOM BAR ===== */
.footer-bottom {
    background: #0d1117;
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0;
    padding-bottom: 0;
}

.footer-bottom p {
    color: #6e7681;
    font-size: 0.82rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom-links a {
    color: #6e7681;
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.footer-divider {
    color: #30363d;
    font-size: 0.8rem;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .airlines-slide {
        gap: 2rem;
    }
    
    .airlines-slide img {
        height: 28px;
    }
    
    .accreditations-row {
        gap: 1.5rem;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .accreditations-row {
        gap: 1rem;
    }
    
    .accred-item {
        font-size: 0.72rem;
        gap: 0.4rem;
    }
    
    .accred-item img {
        height: 30px;
    }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5); animation: none; }
.whatsapp-float:active { transform: scale(0.95); }
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
}
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #1a1a1a;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid #1a1a1a;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ================================================================ */
/*                      RESPONSIVE STYLES                           */
/* ================================================================ */

@media (max-width: 1200px) {
    .glass-card { max-width: 520px; padding: 2rem 2.5rem; }
    .glass-card__title { font-size: 2rem; }
}

@media (max-width: 992px) {
    .hero-slider { height: calc(100vh - 100px); min-height: 480px; }
    body.top-bar-hidden .hero-slider { height: calc(100vh - 65px); }
    .glass-card { max-width: 460px; padding: 2rem; }
    .glass-card__title { font-size: 1.8rem; }
    .slide-content.container { padding-left: 4%; padding-right: 4%; }
    
    .two-column { grid-template-columns: 1fr; }
    .adventures-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 250px 250px 250px; }
    .adventure-large { grid-row: span 1; grid-column: span 2; }
    .history-grid { grid-template-columns: 1fr; gap: 2rem; }
    .history-stats { grid-template-columns: repeat(2, 1fr); }
    .leader-card { grid-template-columns: 1fr; text-align: center; }
    .leader-accolades { justify-content: center; }
    .accounts-list { justify-content: center; }
    .overview-grid { grid-template-columns: 1fr; }
    .insurance-features-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .portal-cta-card { grid-template-columns: 1fr; }
    .portal-cta-visual { height: 250px; order: -1; }
    .portal-cta-content { padding: 2rem; }
    .portal-cta-content h2 { font-size: 1.6rem; }
    .btn-xl { font-size: 1rem; padding: 0.9rem 1.8rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-sidebar { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
    .map-info-card { max-width: 100%; }
    .service-card-inner { grid-template-columns: 1fr !important; gap: 1.5rem; padding: 2rem; }
    .service-card-full.reverse .service-card-inner { grid-template-columns: 1fr !important; }
    .service-icon-wrapper { flex-direction: row; justify-content: flex-start; gap: 1rem; }
    .service-card-full.reverse .service-icon-wrapper { order: 1 !important; }
    .service-image { order: -1 !important; margin-bottom: 0.5rem; }
    .service-features { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 2rem; }
}

@media (max-width: 768px) {
    main { padding-top: 130px; }
    body.top-bar-hidden main { padding-top: 65px; }
    
    .top-bar-inner { flex-direction: column; text-align: center; gap: 0.35rem; }
    .top-bar-contact { justify-content: center; flex-wrap: wrap; row-gap: 0.25rem; }
    .contact-divider { display: none; }
    .contact-item { font-size: 0.75rem; }
    .top-bar-social { justify-content: center; }
    .social-icon { width: 28px; height: 28px; font-size: 0.75rem; }
    
    .main-nav { flex-wrap: wrap; }
    .nav-toggle { display: block; }
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        padding: 1.5rem;
        gap: 1rem;
        z-index: 999;
    }
    .main-nav ul.active { display: flex; }
    .main-nav li a { font-size: 1.1rem; padding: 0.5rem 0; }
    .btn-book-trip { order: -1; margin-right: auto; padding: 0.5rem 1.2rem; font-size: 0.82rem; }
    .nav-toggle { margin-left: auto; }
    
    .hero-slider { height: calc(100vh - 120px); min-height: 420px; }
    body.top-bar-hidden .hero-slider { height: calc(100vh - 65px); }
    .slide-content.container { justify-content: center; text-align: center; padding-left: 5%; padding-right: 5%; }
    .glass-card { max-width: 90%; padding: 1.5rem; border-radius: 18px; margin: 0 auto; }
    .glass-card__tag { font-size: 0.7rem; padding: 5px 14px; }
    .glass-card__title { font-size: 1.5rem; }
    .glass-card__text { font-size: 0.9rem; }
    .glass-card__btn { padding: 0.7rem 1.5rem; font-size: 0.85rem; justify-content: center; }
    .slider-arrow { width: 38px; height: 38px; font-size: 1rem; }
    .slider-arrow.prev { left: 10px; }
    .slider-arrow.next { right: 10px; }
    
    .safari-showcase { min-height: auto; padding: 4rem 0; }
    .safari-bg { background-attachment: scroll; }
    .safari-text h2 { font-size: 1.8rem; }
    .safari-stats { gap: 1.5rem; }
    .stat-number { font-size: 1.6rem; }
    .adventures-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .adventure-item { height: 220px; }
    .adventure-large { grid-column: span 1; height: 300px; }
    .packages-grid, .destinations-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    
    .form-row { grid-template-columns: 1fr; }
    .form-submit-row { flex-direction: column; align-items: flex-start; }
    .contact-form-wrapper { padding: 1.5rem; }
    .quick-contact-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
    .about-hero .lead { font-size: 1rem; }
    .team-banner-content h2 { font-size: 1.8rem; }
    .consultants-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
}

@media (max-width: 576px) {
    .hero-slider { height: calc(100vh - 130px); min-height: 380px; }
    body.top-bar-hidden .hero-slider { height: calc(100vh - 65px); }
    .glass-card { padding: 1.25rem; max-width: 95%; }
    .glass-card__title { font-size: 1.3rem; }
    .glass-card__text { font-size: 0.82rem; }
    .slider-dots { bottom: 20px; gap: 8px; }
    .dot { width: 10px; height: 10px; }
    
    .quick-contact-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .quick-contact-card { padding: 1.25rem 1rem; }
    .qc-icon { width: 45px; height: 45px; font-size: 1.1rem; }
    .map-overlay-card { margin-top: -30px; }
    .map-info-card { flex-direction: column; text-align: center; padding: 1.25rem; }
    .history-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .stat-value { font-size: 1.5rem; }
    .accreditations-grid { grid-template-columns: 1fr; max-width: 350px; margin-left: auto; margin-right: auto; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
    .whatsapp-tooltip { display: none; }
    .service-card-inner { padding: 1.5rem; }
    .service-cta-row { flex-direction: column; align-items: flex-start; }
    .cta-card h2 { font-size: 1.6rem; }
    .portal-cta-content { padding: 1.5rem; }
    .portal-benefits-row { gap: 0.75rem; }
    .portal-cta-trust-badges { left: 1rem; right: 1rem; bottom: 1rem; }
    .trust-badge-item { font-size: 0.7rem; padding: 6px 10px; }
}

/* ===== SERVICES PAGE STYLES ===== */
.services-hero { position: relative;}
.services-detailed { padding: 5rem 0; background: #f8f9fa; }
.services-grid-full { display: flex; flex-direction: column; gap: 2rem; margin-top: 3rem; }
.service-card-full {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}
.service-card-full:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.service-card-inner { display: grid; grid-template-columns: 80px 1fr 300px; gap: 2rem; padding: 2.5rem; align-items: center; }
.service-card-full.reverse .service-card-inner { grid-template-columns: 300px 1fr 80px; }
.service-card-full.reverse .service-icon-wrapper { order: 3; }
.service-card-full.reverse .service-image { order: 1; }
.service-card-full.reverse .service-content { order: 2; }
.service-icon-wrapper { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}
.service-number { font-size: 0.9rem; font-weight: 700; color: #adb5bd; letter-spacing: 1px; }
.featured-service { border: 2px solid red; background: linear-gradient(to right, #fff 0%, #fffdf5 100%); }
.featured-service .service-icon {
    background: red;
    color: white;
    box-shadow: 0 8px 25px rgb(255 0 0 / 22%);
}
.service-content h3 { font-size: 1.5rem; color: #1a1a1a; margin-bottom: 0.75rem; }
.service-intro { color: #495057; line-height: 1.7; margin-bottom: 1.25rem; font-size: 0.95rem; }
.service-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 2rem; margin-bottom: 1.5rem; }
.service-features li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.88rem; color: #495057; line-height: 1.5; }
.service-features li i { color: black; font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.service-cta-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.service-highlight { font-size: 0.9rem; color: #6c757d; }
.service-highlight strong { color: #0d6efd; font-size: 1.2rem; }
.service-image { height: 220px; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card-full:hover .service-image img { transform: scale(1.06); }
.why-wings { padding: 5rem 0; background: #fff; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.benefit-card { text-align: center; padding: 2rem 1.5rem; border-radius: 16px; background: #fff; border: 1px solid #e9ecef; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); border-color: transparent; }
.benefit-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e7f1ff, #cfe2ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: black;
}
.benefit-card h4 { font-size: 1.1rem; color: #1a1a1a; margin-bottom: 0.75rem; }
.benefit-card p { color: #6c757d; font-size: 0.9rem; line-height: 1.6; }
.cta-section { padding: 5rem 0; background: linear-gradient(135deg, #0d6efd, #0a58ca); }
.cta-card { text-align: center; color: #fff; }
.cta-card h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.cta-card h2 span { color: #ffd700; }
.cta-card p { font-size: 1.1rem; opacity: 0.95; max-width: 600px; margin: 0 auto 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== ABOUT PAGE STYLES ===== */
.about-hero { position: relative;}
.about-hero .lead { font-style: italic; font-size: 1.2rem; max-width: 650px; opacity: 0.95; border-left: 3px solid red; padding-left: 1.5rem; margin-top: 1rem; }
.section-tag {
    display: inline-block;
    background: #e7f1ff;
    color: #0d6efd;
    padding: 5px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}
.section-tag.light { background: rgba(255,255,255,0.2); color: #ffd700; backdrop-filter: blur(5px); }
.about-history {background: #fff; }
.history-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.history-content h2 { font-size: 2rem; margin-bottom: 1.5rem; line-height: 1.3; }
.history-content h2 strong { color: red; }
.history-content p { color: #495057; line-height: 1.8; margin-bottom: 1rem; }
.history-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid #e9ecef; }
.history-stat { text-align: center; }
.stat-value { display: block; font-size: 2rem; font-weight: 700; color: black; line-height: 1; margin-bottom: 0.25rem; }
.stat-desc { font-size: 0.8rem; color: #6c757d; text-transform: uppercase; letter-spacing: 0.5px; }
.history-image { position: relative; }
.main-history-img { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.12); position: relative; z-index: 2; }
.history-image-accent { position: absolute; top: -20px; right: -20px; width: 100%; height: 100%; border: 3px solid red; border-radius: 20px; z-index: 1; }
.team-banner { position: relative; background-size: cover; background-position: center; background-attachment: fixed; padding: 6rem 0; color: #fff; text-align: center; }
.team-banner-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)); }
.team-banner-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.team-banner-content h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.team-banner-content h2 span { color: red; }
.team-banner-content p { font-size: 1.1rem; opacity: 0.9; }
.leadership-team { padding: 5rem 0; background: #f8f9fa; }
.leader-card { display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem; background: #fff; border-radius: 20px; padding: 2.5rem; margin-bottom: 2rem; box-shadow: 0 5px 25px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.leader-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.featured-leader { border-left: 5px solid red; background: linear-gradient(to right, #fffdf5 0%, #fff 30%); }
.leader-image-wrapper { position: relative; text-align: center; }
.leader-img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; border: 4px solid #e9ecef; box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
.leader-badge { display: inline-block; background: black; color: #fff; padding: 5px 18px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; margin-top: 1rem; }
.featured-leader .leader-badge { background: red; color: white; }
.leader-info h3 { font-size: 1.5rem; margin-bottom: 0.25rem; color: #1a1a1a; }
.leader-title { display: block; color: black; font-weight: 600; font-size: 0.95rem; margin-bottom: 0.25rem; }
.leader-tenure { color: #6c757d; font-size: 0.85rem; margin-bottom: 1rem; }
.leader-bio p { color: #495057; line-height: 1.7; margin-bottom: 0.75rem; }
.accounts-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin: 0.75rem 0; }
.accounts-list li { color: #495057; font-size: 0.9rem; padding-left: 1.2rem; position: relative; }
.accounts-list li::before { content: '•'; color: #0d6efd; position: absolute; left: 0; font-weight: bold; }
.leader-accolades { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.accolade { display: inline-flex; align-items: center; gap: 0.35rem; background: #e7f1ff; color: black; padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 500; }
.accolade i { font-size: 0.7rem; }
.consultants-team { padding: 5rem 0; background: #fff; }
.consultants-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.consultant-card { text-align: center; padding: 2rem 1rem; border-radius: 16px; background: #fff; border: 1px solid #e9ecef; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.consultant-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); border-color: transparent; }
.consultant-img-wrapper { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; margin: 0 auto 1rem; border: 3px solid #e9ecef; transition: border-color 0.3s; }
.consultant-card:hover .consultant-img-wrapper { border-color: red; }
.consultant-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.consultant-card h4 { font-size: 1rem; color: #1a1a1a; margin-bottom: 0.25rem; }
.consultant-role { font-size: 0.82rem; color: #6c757d; font-weight: 500; }
.accreditations-section { padding: 5rem 0; background: #f8f9fa; }
.accreditations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.accreditation-card { background: #fff; border-radius: 16px; padding: 2rem; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #e9ecef; }
.accreditation-card:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); border-color: red; }
.accreditation-logo { width: 120px; height: 120px; margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; }
.accreditation-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.accreditation-info h3 { font-size: 1.1rem; color: #1a1a1a; margin-bottom: 0.25rem; }
.accreditation-info p { color: #6c757d; font-size: 0.85rem; margin-bottom: 0.75rem; }
.accreditation-status {
    display: inline-block;
    background: #fad1d166;
    color: black;
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}
.awards-additional { margin-top: 4rem; }
.awards-additional h3 { text-align: center; font-size: 1.3rem; margin-bottom: 2rem; color: #1a1a1a; }
.awards-mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; }
.award-mini-card { display: flex; align-items: center; gap: 1rem; background: #fff; padding: 1.25rem; border-radius: 12px; border: 1px solid #e9ecef; transition: transform 0.2s ease; }
.award-mini-card:hover { transform: translateX(4px); }
.award-mini-card i { font-size: 1.5rem; color: black; flex-shrink: 0; }
.award-mini-card strong { display: block; color: #1a1a1a; font-size: 0.9rem; }
.award-mini-card p { color: #6c757d; font-size: 0.82rem; margin: 0; }
.about-cta { padding: 5rem 0; background: linear-gradient(135deg, #1a1a2e, #16213e); }
.about-cta-card { text-align: center; color: #fff; }
.about-cta-card h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.about-cta-card h2 span { color: red; }
.about-cta-card p { font-size: 1.1rem; opacity: 0.9; max-width: 650px; margin: 0 auto 2rem; }
.about-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== INSURANCE PAGE STYLES ===== */
.insurance-hero .lead { font-size: 1.2rem; }
.insurance-overview { padding: 5rem 0; background: #fff; }
.overview-grid { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.overview-text h2 { font-size: 2rem; margin-bottom: 1.25rem; }
.overview-text h2 strong { color: red; }
.overview-text p { color: #495057; line-height: 1.8; margin-bottom: 1rem; }
.insurance-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.insurance-feature { display: flex; gap: 1rem; padding: 1rem; border-radius: 12px; background: #f8f9fa; transition: background 0.3s; }
.insurance-feature:hover { background: #e7f1ff; }
.feature-icon-small {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.insurance-feature h4 { font-size: 0.95rem; color: #1a1a1a; margin-bottom: 0.2rem; }
.insurance-feature p { font-size: 0.82rem; color: #6c757d; margin: 0; line-height: 1.4; }
.trust-card { background: linear-gradient(135deg, #1a1a2e, #16213e); color: #fff; padding: 2rem; border-radius: 16px; margin-bottom: 1.5rem; }
.trust-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; font-size: 0.85rem; opacity: 0.9; }
.trust-logo-small { height: 30px; filter: brightness(0) invert(1); }
.trust-card h3 { font-size: 1.2rem; margin-bottom: 1rem; color: white; }
.trust-list { list-style: none; }
.trust-list li { display: flex; align-items: flex-start; gap: 0.5rem; padding: 0.5rem 0; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.1); line-height: 1.4; }
.trust-list li:last-child { border-bottom: none; }
.trust-list li i { color: white; font-size: 0.8rem; margin-top: 2px; }
.need-help-card { background: #f8f9fa; padding: 1.5rem; border-radius: 16px; border: 1px solid #e9ecef; text-align: center; }
.need-help-card h4 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.need-help-card p { font-size: 0.9rem; color: #6c757d; margin-bottom: 1rem; }
.insurance-portal-cta { padding: 4rem 0 3rem; background: #f8f9fa; }
.portal-cta-card { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 15px 50px rgba(0,0,0,0.08); border: 1px solid #e9ecef; }
.portal-cta-content {
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.portal-cta-icon { width: 70px; height: 70px; border-radius: 18px; background: linear-gradient(135deg, #0d6efd, #0a58ca); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 2rem; margin-bottom: 1.5rem; box-shadow: 0 10px 30px rgba(13, 110, 253, 0.25); }
.portal-cta-content h2 { font-size: 2rem; margin-bottom: 1rem; line-height: 1.2; }
.portal-cta-content h2 span { color: red; }
.portal-cta-lead { color: #495057; font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.portal-benefits-row { display: flex; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.portal-benefit-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: #495057; font-weight: 500; }
.portal-benefit-item i { color: black; font-size: 0.9rem; }
.portal-cta-note { margin-top: 1.5rem; font-size: 0.82rem; color: #888; line-height: 1.5; }
.portal-cta-note i { color: black; margin-right: 0.3rem; }
.portal-cta-visual { position: relative; min-height: 100%; }
.portal-cta-visual img { width: 100%; height: 100%; object-fit: cover; }
.portal-cta-trust-badges { position: absolute; bottom: 2rem; left: 2rem; right: 2rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.trust-badge-item { background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: #fff; padding: 8px 16px; border-radius: 30px; font-size: 0.78rem; font-weight: 600; display: flex; align-items: center; gap: 0.4rem; border: 1px solid rgba(255,255,255,0.2); }
.trust-badge-item i { color: #ffd700; }
.portal-cta-alt { text-align: center; margin-top: 2rem; font-size: 0.95rem; color: #555; }
.portal-cta-alt a { color: #0d6efd; text-decoration: none; font-weight: 600; }
.portal-cta-alt a:hover { text-decoration: underline; }
.plan-options { padding: 5rem 0; background: #fff; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.plan-card { background: #fff; border: 1px solid #e9ecef; border-radius: 16px; padding: 2rem; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; }
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
.featured-plan { border: 2px solid red; background: linear-gradient(to bottom, #fffdf5 0%, #fff 100%); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: red; color: white; padding: 4px 18px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.plan-icon { width: 65px; height: 65px; border-radius: 50%; background: #e7f1ff; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.5rem; color: black; }
.featured-plan .plan-icon {
    background: #f001011c;
    color: red;
}
.plan-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.plan-desc { color: #6c757d; font-size: 0.9rem; margin-bottom: 1.25rem; }
.plan-benefits { list-style: none; text-align: left; }
.plan-benefits li { padding: 0.4rem 0; font-size: 0.85rem; color: #495057; border-bottom: 1px solid #f1f3f5; padding-left: 1rem; position: relative; }
.plan-benefits li::before { content: '✓'; position: absolute; left: 0; color: #10b981; font-weight: bold; }
.insurance-faq { padding: 5rem 0; background: #f8f9fa; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.faq-item { background: #fff; padding: 1.5rem; border-radius: 12px; border: 1px solid #e9ecef; }
.faq-item h4 { font-size: 1rem; color: #1a1a1a; margin-bottom: 0.75rem; }
.faq-item p { font-size: 0.9rem; color: #6c757d; line-height: 1.6; }
.insurance-cta { padding: 5rem 0; background: linear-gradient(135deg, #0d6efd, #0a58ca); }

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero .lead { font-size: 1.15rem; max-width: 600px; opacity: 0.95; }
.quick-contact { padding: 5rem 0 3rem; background: #fff; }
.quick-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.quick-contact-card { text-align: center; padding: 2rem 1.5rem; border-radius: 16px; background: #fff; border: 1px solid #e9ecef; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.quick-contact-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); border-color: transparent; }
.qc-icon { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #e7f1ff, #cfe2ff); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.4rem; color: black; }
.quick-contact-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: #1a1a1a; }
.quick-contact-card p { color: #6c757d; font-size: 0.88rem; margin-bottom: 0.75rem; }
.qc-link { display: block; font-size: 1rem; font-weight: 700; color: black; text-decoration: none; margin-bottom: 0.25rem; }
.qc-link:hover { text-decoration: underline; }
.qc-sub { font-size: 0.78rem; color: #adb5bd; }
.qc-address { font-style: normal; font-weight: 600; color: #495057; font-size: 0.95rem; line-height: 1.5; }
.contact-main { padding: 3rem 0 5rem; background: #f8f9fa; }
.contact-grid { display: grid; grid-template-columns: 1fr 370px; gap: 2.5rem; align-items: start; }
.contact-form-wrapper { background: #fff; border-radius: 20px; padding: 2.5rem; box-shadow: 0 8px 30px rgba(0,0,0,0.05); border: 1px solid #e9ecef; }
.form-header { margin-bottom: 2rem; }
.form-header h2 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.form-header h2 strong { color: red; }
.form-header p { color: #6c757d; font-size: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; color: #1a1a1a; margin-bottom: 0.4rem; }
.input-with-icon { position: relative; }
.input-with-icon i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #adb5bd; font-size: 0.9rem; z-index: 1; }
.input-with-icon input,
.input-with-icon select { width: 100%; padding: 0.75rem 1rem 0.75rem 2.5rem; border: 1.5px solid #dee2e6; border-radius: 10px; font-size: 0.9rem; font-family: inherit; color: #1a1a1a; background: #fff; transition: border-color 0.3s, box-shadow 0.3s; }
.input-with-icon input:focus,
.input-with-icon select:focus,
textarea:focus { outline: none; border-color: #0d6efd; box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1); }
.input-with-icon select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23495057' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 2.5rem; }
textarea { width: 100%; padding: 0.85rem 1rem; border: 1.5px solid #dee2e6; border-radius: 10px; font-size: 0.9rem; font-family: inherit; color: #1a1a1a; resize: vertical; min-height: 120px; transition: border-color 0.3s, box-shadow 0.3s; }
.form-submit-row { display: flex; align-items: center; gap: 1.5rem; margin-top: 1rem; }
.btn-submit { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2.5rem; font-size: 1rem; font-weight: 700; border-radius: 50px; }
.form-note { font-size: 0.78rem; color: #adb5bd; }
.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card { background: #fff; border-radius: 16px; padding: 1.5rem; border: 1px solid #e9ecef; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.sidebar-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid #e9ecef; }
.sidebar-card-header i { width: 38px; height: 38px; border-radius: 10px; background: #e7f1ff; display: flex; align-items: center; justify-content: center; color: black; font-size: 1rem; }
.sidebar-card-header h3 { font-size: 1rem; color: #1a1a1a; }
.sidebar-card-body address { font-style: normal; color: #495057; font-size: 0.9rem; line-height: 1.7; }
.sidebar-card-body address strong { display: block; font-size: 1rem; color: #1a1a1a; margin-bottom: 0.25rem; }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.88rem; color: #495057; border-bottom: 1px solid #f1f3f5; }
.hours-list li:last-child { border-bottom: none; }
.hours-list li.closed { color: #adb5bd; }
.hours-list .time { font-weight: 600; }
.sidebar-social { display: flex; gap: 0.5rem; }
.sidebar-social .social-icon { width: 40px; height: 40px; border-radius: 10px; font-size: 0.95rem; }
.contact-map { position: relative; }
.map-wrapper { height: 400px; overflow: hidden; }
.map-wrapper iframe { width: 100%; height: 100%; filter: grayscale(0.1); }
.map-overlay-card { position: relative; margin-top: -60px; z-index: 2; }
.map-info-card { background: #fff; border-radius: 16px; padding: 1.5rem 2rem; box-shadow: 0 10px 40px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 1.5rem; max-width: 600px; border: 1px solid #e9ecef; }
.map-info-icon { width: 55px; height: 55px; border-radius: 14px; background: linear-gradient(135deg, #0d6efd, #0a58ca); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; flex-shrink: 0; }
.map-info-card h4 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.map-info-card p { font-size: 0.85rem; color: #6c757d; margin-bottom: 0.75rem; }
.contact-cta { padding: 5rem 0; background: linear-gradient(135deg, #1a1a2e, #16213e); }
.contact-cta-card { text-align: center; color: #fff; }
.contact-cta-card h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.contact-cta-card h2 span { color: #ffd700; }
.contact-cta-card p { font-size: 1.05rem; opacity: 0.9; max-width: 600px; margin: 0 auto 2rem; }
.contact-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }



/* ===== PACKAGES PAGE HERO ===== */
.packages-hero {
    position: relative;
}

.packages-hero .lead {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    opacity: 0.95;
}

/* ===== PACKAGE FILTERS ===== */
.package-filters {
    padding: 2rem 0;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 110px;
    z-index: 99;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

body.top-bar-hidden .package-filters {
    top: 70px;
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid #e9ecef;
    background: #fff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: #0d6efd;
    color: #0d6efd;
    background: #e7f1ff;
}

.filter-btn.active {
    background: red;
    color: #fff;
    border-color: red;
}

/* ===== PACKAGES LISTING ===== */
.packages-listing {
    padding: 3rem 0 5rem;
    background: #f8f9fa;
}

.packages-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* Package Item Card */
.package-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
}

.package-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.package-item.hidden {
    display: none;
}

.package-item-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-item:hover .package-item-image img {
    transform: scale(1.06);
}

.package-item-badge {
    position: absolute;
    top: 15px;
    left: -5px;
    background: #ff6b35;
    color: #fff;
    padding: 6px 20px 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 4px 4px 0;
    z-index: 2;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}

.package-item-badge-new {
    background: #10b981;
}

.package-item-duration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    padding: 2rem 1.5rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
}

.package-item-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-item-category {
    display: inline-block;
    background: #e7f1ff;
    color: #0d6efd;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    align-self: flex-start;
}

.package-item-body h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.package-item-body > p {
    color: #6c757d;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.package-item-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.package-item-highlights span {
    font-size: 0.78rem;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.package-item-highlights span i {
    color: #10b981;
    font-size: 0.7rem;
}

.package-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

.package-item-price .label {
    display: block;
    font-size: 0.72rem;
    color: #888;
    text-transform: uppercase;
}

.package-item-price .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d6efd;
    line-height: 1;
}

.package-item-price .per {
    font-size: 0.75rem;
    color: #888;
}

/* ===== CUSTOM PACKAGE CTA ===== */
.custom-package-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.custom-package-card {
    text-align: center;
    color: #fff;
}

.custom-package-content i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.custom-package-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.custom-package-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.custom-package-content p strong {
    color: #ffd700;
}

.custom-package-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PACKAGES RESPONSIVE ===== */
@media (max-width: 992px) {
    .packages-grid-full {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .package-filters {
        top: 120px;
        padding: 1.25rem 0;
    }
    
    body.top-bar-hidden .package-filters {
        top: 65px;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.78rem;
    }
    
    .packages-grid-full {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .package-item-image {
        height: 200px;
    }
    
    .custom-package-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .package-filters {
        top: 130px;
    }
    
    .filter-buttons {
        gap: 0.4rem;
    }
    
    .filter-btn {
        padding: 0.4rem 0.85rem;
        font-size: 0.7rem;
    }
    
    .package-item-highlights {
        grid-template-columns: 1fr;
    }
}


.about-top{
    padding: 5rem 0;
}

/* 1. Define the color change animation */
@keyframes change-nav-color {
  /* At the exact top of the page, keep it white */
  0% {
    color: white;
  }
  /* Quickly transition to red as soon as the user scrolls down */
  1%, 100% {
    color: black;
  }
}

.main-nav a {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;

  /* 2. Link your links to the scrollbar timeline */
  animation-name: change-nav-color;
  animation-timeline: scroll(root); /* Tracks the main page scrollbar */
}









/* ===== TRUNCATED DESCRIPTION ===== */
.package-description-truncated {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #6c757d;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.btn-read-more {
    background: none;
    border: none;
    color: #0d6efd;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 0.75rem;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s;
}
.btn-read-more:hover {
    color: #0b5ed7;
    text-decoration: underline;
}
.btn-read-more i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}
.btn-read-more:hover i {
    transform: translateY(2px);
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container {
    background: #fff;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    animation: modalSlideUp 0.4s ease;
}
@keyframes modalSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.modal-close:hover {
    background: rgba(0,0,0,0.8);
}

.modal-image {
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}
.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 2rem;
}

.modal-category {
    display: inline-block;
    background: #e7f1ff;
    color: #0d6efd;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.modal-title {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.modal-duration {
    display: inline-block;
    background: #f3f4f6;
    color: #6b7280;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.modal-description {
    color: #495057;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-highlights {
    margin-bottom: 1.5rem;
}
.modal-highlights h4 {
    font-size: 0.9rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}
.modal-highlights ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.modal-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: #495057;
}
.modal-highlights li i {
    color: #10b981;
    font-size: 0.75rem;
}

/* Gallery in Modal */
.modal-gallery {
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}
.modal-gallery h4 {
    font-size: 0.9rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}
.modal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}
.modal-gallery-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}
.modal-gallery-grid img:hover {
    transform: scale(1.05);
}

/* Modal Footer */
.modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
}
.modal-price .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d6efd;
    line-height: 1;
}
.modal-price .per {
    font-size: 0.82rem;
    color: #6b7280;
}
.modal-enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

/* ===== RESPONSIVE MODAL ===== */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 1rem;
    }
    .modal-image {
        height: 200px;
    }
    .modal-body {
        padding: 1.5rem;
    }
    .modal-title {
        font-size: 1.3rem;
    }
    .modal-highlights ul {
        grid-template-columns: 1fr;
    }
    .modal-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .modal-enquire-btn {
        width: 100%;
        justify-content: center;
    }
}