:root {
    --primary-blue: #0A3D91; /* From logo */
    --primary-orange: #F36920; /* From logo */
    --primary-yellow: #F7BA00; /* From crown */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-light);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, var(--primary-blue) 0%, #174baf 50%, var(--primary-orange) 100%);
    color: var(--text-light);
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar a, .top-bar span {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.top-bar a:hover {
    color: var(--primary-yellow);
}

.top-bar i {
    color: var(--primary-yellow);
}

/* Main Header */
.main-header {
    background-color: #ffffff;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container img {
    height: 65px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.nav-link:hover {
    color: var(--primary-orange);
}

/* Hero Banner Slider */
.hero-section {
    width: 100%;
    position: relative;
    background-color: #f8f9fa;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    /* This ensures the image shows fully without cropping (hide na ho) */
    object-fit: contain;
}

/* Make sure swiper pagination is visible and styled cleanly over the banner */
.hero-slider .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.6;
}
.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary-orange);
    opacity: 1;
}

/* Dropdown styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 240px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    border-top: 3px solid var(--primary-orange);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-item:hover {
    background-color: #f5f7fb;
    color: var(--primary-blue);
    padding-left: 25px;
}

/* Plan Trip Button */
.btn-plan-trip {
    background: linear-gradient(to right, var(--primary-blue), var(--primary-orange)); /* Theme gradient */
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(10, 61, 145, 0.3);
}

.btn-plan-trip:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 25px rgba(243, 105, 32, 0.4);
    background: linear-gradient(to right, #174baf, #ff7a33); /* Slightly lighter on hover */
}

.header-actions a i {
    margin-right: 5px;
}

/* Mobile Menu Toggle (Hidden by default) */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-blue);
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-menu.active {
        display: flex;
    }
    .mobile-toggle {
        display: block;
    }
    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .top-bar-left, .top-bar-right {
        justify-content: center;
    }
    .nav-item {
        width: 100%;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
    }
    .nav-item:hover .dropdown-menu {
        display: block;
    }
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Background Slider */
.hero-slider {
    width: 100%;
    z-index: 0;
}
.hero-slide {
    width: 100%; height: 100vh;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.swiper-slide-active .hero-slide {
    transform: scale(1);
}

/* Dark Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 61, 145, 0.75) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(243, 105, 32, 0.35) 100%
    );
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 92%;
    max-width: 960px;
    color: #ffffff;
    padding: 10px 20px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 186, 0, 0.2);
    border: 1px solid rgba(247, 186, 0, 0.6);
    color: var(--primary-yellow);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.7s ease forwards;
}
.hero-badge i { color: var(--primary-yellow); }

/* Main Heading */
.hero-heading {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    animation: fadeInDown 0.9s ease forwards;
}
.hero-highlight {
    background: linear-gradient(to right, var(--primary-yellow), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtext */
.hero-subtext {
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    color: rgba(255,255,255,0.88);
    margin-bottom: 18px;
    line-height: 1.6;
    animation: fadeInUp 1s ease forwards;
}

/* Search Box */
.hero-search-box {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.97);
    border-radius: 60px;
    padding: 8px 8px 8px 20px;
    gap: 5px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    margin-bottom: 30px;
    animation: fadeInUp 1.1s ease forwards;
    flex-wrap: nowrap;
}
.search-field {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    padding: 0 10px;
    border-right: 1px solid #e0e0e0;
}
.search-field:last-of-type { border-right: none; }
.search-field i {
    color: var(--primary-orange);
    font-size: 16px;
    flex-shrink: 0;
}
.search-field input,
.search-field select {
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    width: 100%;
    padding: 10px 0;
}
.search-field select { cursor: pointer; }
.btn-search {
    background: linear-gradient(to right, var(--primary-blue), var(--primary-orange));
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(10, 61, 145, 0.3);
}
.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 105, 32, 0.4);
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 45px;
    animation: fadeInUp 1.2s ease forwards;
    flex-wrap: wrap;
}
.btn-hero-primary {
    background: linear-gradient(to right, var(--primary-orange), #ff8a00);
    color: #fff;
    padding: 15px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(243, 105, 32, 0.4);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(243, 105, 32, 0.55);
    color: #fff;
}
.btn-hero-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}
.btn-hero-secondary:hover {
    background: #ffffff;
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

/* Stats Bar */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    animation: fadeInUp 1.3s ease forwards;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.hero-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}

/* Swiper customization */
.swiper-button-next, .swiper-button-prev {
    color: orange !important;
    background: rgba(255,255,255,0.1);
    width: 40px !important; height: 40px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: background 0.3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary-orange);
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 16px !important;
}
.swiper-pagination-bullet { background: rgba(255,255,255,0.6) !important; }
.swiper-pagination-bullet-active { background: var(--primary-orange) !important; }

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar {
        font-size: 11px;
        padding: 8px 5px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .top-bar-left, .top-bar-right {
        display: contents;
    }
    .top-bar a, .top-bar span {
        justify-content: flex-start;
    }
    
    /* Main Header */
    .main-header {
        padding: 10px 15px;
    }
    .logo-container {
        order: 1;
    }
    .logo-container img {
        height: 45px;
    }
    .header-actions {
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }
    .btn-plan-trip {
        padding: 8px 12px;
        font-size: 12px;
    }
    .mobile-toggle {
        order: 3;
    }

    .hero-section { height: auto; min-height: unset; }
    .hero-slider { height: auto; }
}


/* Glassmorphic Booking Widget */
.booking-widget-wrapper { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 1000px; z-index: 10; }
.booking-widget { background: rgba(255, 255, 255, 0.25); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 20px; padding: 25px 35px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.widget-title { color: #ffffff; text-align: center; margin-bottom: 20px; font-size: 22px; font-weight: 600; text-shadow: 0 2px 5px rgba(0,0,0,0.3); }
.booking-form { display: flex; gap: 15px; align-items: center; justify-content: space-between; }
.booking-form .form-group { flex: 1; position: relative; display: flex; align-items: center; background: rgba(255, 255, 255, 0.9); border-radius: 50px; padding: 12px 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.booking-form .form-group i { color: var(--primary-orange); font-size: 18px; margin-right: 12px; }
.booking-form .form-group input { border: none; background: transparent; width: 100%; font-size: 15px; color: #333; outline: none; }
.booking-form .form-group input::placeholder { color: #888; }
.btn-search { background: linear-gradient(135deg, var(--primary-orange), #ff8a00); color: #ffffff; border: none; border-radius: 50px; padding: 14px 35px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(243, 105, 32, 0.4); display: flex; align-items: center; gap: 8px; }
.btn-search:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(243, 105, 32, 0.6); }
@media (max-width: 768px) { .booking-widget-wrapper { position: relative; bottom: 0; transform: none; left: 0; width: 100%; padding: 20px; margin-top: -50px; } .booking-widget { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); padding: 20px; } .widget-title { color: var(--primary-blue); text-shadow: none; } .booking-form { flex-direction: column; } .booking-form .form-group { width: 100%; } .btn-search { width: 100%; justify-content: center; } }

/* Tour Search Section */
.tour-search-wrapper { position: relative; z-index: 100; margin-top: -45px; padding: 0 5%; display: flex; justify-content: center; }
.search-container { background: #ffffff; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); padding: 15px 30px; width: 100%; max-width: 1100px; border: 1px solid rgba(0,0,0,0.05); }
.tour-search-form { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.search-box { display: flex; align-items: center; gap: 15px; flex: 1; padding: 5px; }
.search-icon i { font-size: 24px; color: var(--primary-orange); opacity: 0.8; }
.search-input { display: flex; flex-direction: column; width: 100%; }
.search-input label { font-size: 13px; font-weight: 600; color: #666; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.search-input input, .search-input select { border: none; outline: none; font-size: 16px; color: var(--text-dark); font-weight: 500; width: 100%; background: transparent; padding: 0; }
.search-input input::placeholder { color: #aaa; font-weight: 400; }
.search-divider { width: 1px; height: 50px; background-color: #eee; }
.search-btn-box { flex-shrink: 0; }
.btn-search { padding: 15px 35px; border: none; cursor: pointer; border-radius: 12px; font-size: 16px; }
@media (max-width: 992px) { .tour-search-wrapper { margin-top: -25px; } .tour-search-form { flex-direction: column; align-items: stretch; } .search-divider { width: 100%; height: 1px; margin: 10px 0; } .search-btn-box { margin-top: 15px; } .btn-search { width: 100%; } }


/* Advanced Hero Section */
.hero-section { position: relative; width: 100%; height: auto; min-height: unset; display: flex; align-items: center; justify-content: center; }
.hero-slider { width: 100%; height: auto; z-index: 1; }
.banner-bg { width: 100%; height: 100%; background-size: cover; background-position: center; position: relative; }
.banner-dark-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); }
.hero-overlay-content { position: relative; z-index: 2; text-align: center; color: #fff; width: 100%; max-width: 900px; padding: 0 20px; }
.hero-title { font-size: 3.5rem; font-weight: 700; margin-bottom: 15px; text-shadow: 0 4px 15px rgba(0,0,0,0.4); }
.hero-subtitle { font-size: 1.2rem; margin-bottom: 30px; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.hero-buttons { display: flex; gap: 20px; justify-content: center; margin-bottom: 40px; }
.btn-secondary-solid { background: var(--primary-yellow); color: #2b3a4a; padding: 12px 32px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 16px; transition: all 0.3s ease; box-shadow: 0 6px 15px rgba(247, 186, 0, 0.3); }
.btn-secondary-solid:hover { background: #ffd033; transform: translateY(-2px); }
.hero-search-box { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: 15px; border-radius: 50px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); }
.search-form { display: flex; align-items: center; justify-content: space-between; }
.search-form .input-group { display: flex; align-items: center; gap: 10px; flex: 1; padding: 0 20px; color: var(--text-dark); }
.search-form .input-group i { color: var(--primary-orange); font-size: 1.2rem; }
.search-form .input-group input { border: none; outline: none; background: transparent; font-size: 15px; width: 100%; color: var(--text-dark); font-weight: 500; }
.search-form .divider { width: 1px; height: 30px; background: rgba(0,0,0,0.1); }
.btn-search { background: linear-gradient(to right, var(--primary-blue), var(--primary-orange)); color: #fff; border: none; padding: 15px 35px; border-radius: 50px; font-weight: 600; font-size: 16px; cursor: pointer; transition: all 0.3s ease; }
.btn-search:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(243, 105, 32, 0.4); }
@media (max-width: 768px) { .hero-search-box { border-radius: 20px; } .search-form { flex-direction: column; gap: 15px; } .search-form .divider { display: none; } .search-form .input-group { border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 10px; } .btn-search { width: 100%; } .hero-buttons { flex-direction: column; } }

/* ========== SERVICES SECTION CSS ========== */
.services-section {
    padding: 80px 5%;
    background: radial-gradient(circle at 10% 20%, rgba(10, 61, 145, 0.03) 0%, rgba(255, 255, 255, 1) 90%);
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header Section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(243, 105, 32, 0.08);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-title .highlight-text {
    background: linear-gradient(to right, var(--primary-orange), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-orange));
    margin: 0 auto 20px;
    border-radius: 50px;
}

.section-desc {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Service Card Styling */
.service-card {
    background: #ffffff;
    border: 1px solid rgba(10, 61, 145, 0.06);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(10, 61, 145, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(10, 61, 145, 0.08);
    border-color: rgba(243, 105, 32, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

/* Card Icon Design */
.service-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    z-index: -1;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.service-icon {
    font-size: 26px;
    transition: all 0.4s ease;
}

/* Theme color variations for cards */
.service-icon-wrapper.blue-theme {
    color: var(--primary-blue);
}
.service-icon-wrapper.blue-theme .service-icon-bg {
    background-color: var(--primary-blue);
}

.service-icon-wrapper.orange-theme {
    color: var(--primary-orange);
}
.service-icon-wrapper.orange-theme .service-icon-bg {
    background-color: var(--primary-orange);
}

/* Card hover animation on icon */
.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
}

.service-card:hover .blue-theme .service-icon-bg {
    background: var(--primary-blue);
    opacity: 1;
}
.service-card:hover .blue-theme .service-icon {
    color: #ffffff;
}

.service-card:hover .orange-theme .service-icon-bg {
    background: var(--primary-orange);
    opacity: 1;
}
.service-card:hover .orange-theme .service-icon {
    color: #ffffff;
}

/* Typography & Content */
.service-card-title {
    font-size: 20px;
    color: #2b3a4a;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card:hover .service-card-title {
    color: var(--primary-blue);
}

.service-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Card Link Design */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: var(--primary-blue);
}

.service-card:hover .service-link i {
    transform: translateX(6px);
}

/* Responsive adjustment for section */
@media (max-width: 768px) {
    .services-section {
        padding: 40px 4%;
    }
    .section-header {
        margin-bottom: 25px;
        text-align: left;
    }
    .section-subtitle {
        font-size: 11px;
        padding: 4px 12px;
        margin-bottom: 10px;
    }
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .section-desc {
        font-size: 14px;
        margin-top: 15px;
    }
    .section-line {
        margin: 0 0 15px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .service-card {
        padding: 20px 15px;
    }
    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    .service-icon {
        font-size: 22px;
    }
    .service-card-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .service-text {
        font-size: 13.5px;
        margin-bottom: 15px;
    }
}

/* ========== POPULAR DESTINATIONS SECTION CSS ========== */
.destinations-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
    position: relative;
}

.destinations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
.destination-card {
    background: #ffffff;
    border: 1px solid rgba(10, 61, 145, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(10, 61, 145, 0.03);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(10, 61, 145, 0.08);
    border-color: rgba(243, 105, 32, 0.15);
}

/* Image Wrapper and Badge */
.destination-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.destination-card:hover .destination-img {
    transform: scale(1.08);
}

.destination-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-blue);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

/* Info and Metadata */
.destination-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.destination-duration {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.destination-duration i {
    color: var(--primary-orange);
}

.destination-rating {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-count {
    color: #888;
    font-weight: 400;
    font-size: 12px;
}

/* Title & Description */
.destination-title {
    font-size: 21px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.destination-card:hover .destination-title {
    color: var(--primary-blue);
}

.destination-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* Price & CTA */
.destination-price-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid #f0f3f8;
    margin-top: auto;
}

.destination-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 2px;
}

.price-value {
    font-size: 20px;
    color: var(--primary-orange);
    font-weight: 800;
}

.btn-destination-enquire {
    background: #ffffff;
    color: var(--primary-yellow);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1.5px solid var(--primary-yellow);
}

.btn-destination-enquire:hover {
    background: var(--primary-yellow);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 186, 0, 0.3);
}

/* Responsive adjustment for section */
@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .destinations-section {
        padding: 40px 4%;
    }
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .destination-card {
        max-width: 100%;
    }
    .destination-img-wrapper {
        height: 180px;
    }
    .destination-info {
        padding: 15px;
    }
    .destination-meta {
        margin-bottom: 8px;
    }
    .destination-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    .destination-text {
        font-size: 13px;
        margin-bottom: 12px;
    }
    .destination-price-cta {
        padding-top: 12px;
    }
}

/* ========== ABOUT US SECTION CSS ========== */
.about-section {
    padding: 40px 5%;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* Image Column styling - Photography Stack Design */
.about-image-wrapper {
    position: relative;
    height: 520px;
    z-index: 1;
    margin: 25px; /* Important for the cards to fan out */
}

/* Photo Card 1 (Bottom - Blue) */
.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-blue), #174baf);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(10, 61, 145, 0.2);
    transform: rotate(-8deg) scale(0.95) translate(-15px, 10px);
    z-index: -2;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 10px solid #ffffff;
    border-bottom: 40px solid #ffffff;
}

/* Photo Card 2 (Middle - Orange) */
.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-orange), #ff8a00);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(243, 105, 32, 0.2);
    transform: rotate(10deg) scale(0.95) translate(15px, 15px);
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 10px solid #ffffff;
    border-bottom: 40px solid #ffffff;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    /* Main top photo polaroid styling */
    border: 12px solid #ffffff;
    border-bottom: 60px solid #ffffff; 
    background: #ffffff;
    transform: rotate(-2deg);
}

/* Hover Effects - Fan out the photos! */
.about-image-wrapper:hover .about-img {
    transform: rotate(0deg) scale(1.02) translateY(-15px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.25);
}

.about-image-wrapper:hover::before {
    transform: rotate(-16deg) scale(0.9) translate(-50px, 30px);
    box-shadow: -15px 20px 30px rgba(10, 61, 145, 0.3);
}

.about-image-wrapper:hover::after {
    transform: rotate(18deg) scale(0.9) translate(50px, 40px);
    box-shadow: 15px 20px 30px rgba(243, 105, 32, 0.3);
}

/* Content Column styling */
.about-badge {
    display: inline-block;
    background-color: rgba(10, 61, 145, 0.07);
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
    border: 1px solid rgba(10, 61, 145, 0.12);
}

.about-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    color: var(--primary-blue);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
}

.about-title .highlight-text {
    background: linear-gradient(to right, var(--primary-orange), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-orange));
    margin-bottom: 25px;
    border-radius: 50px;
}

.about-desc {
    font-size: 15.5px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Features Container Box */
.about-features-box {
    background: linear-gradient(135deg, rgba(10, 61, 145, 0.02) 0%, rgba(243, 105, 32, 0.02) 100%);
    border: 1px solid rgba(10, 61, 145, 0.06);
    border-radius: 20px;
    padding: 25px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(10, 61, 145, 0.01) inset;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(243, 105, 32, 0.08);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(243, 105, 32, 0.1);
    transition: all 0.3s ease;
}

.about-feature-item:hover .feature-icon-circle {
    background-color: var(--primary-orange);
    color: #ffffff;
    transform: scale(1.1);
}

.feature-label {
    font-size: 14.5px;
    font-weight: 700;
    color: #2b3a4a;
}

/* Responsive adjustment for section */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image-column {
        order: 2;
    }
    .about-content-column {
        order: 1;
    }
    .about-image-wrapper {
        height: 380px;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .swiper {
        --swiper-navigation-size: 12px !important;
    }
    .swiper-button-next,
    .swiper-button-prev {
        background-color: rgba(0, 0, 0, 0.4) !important; 
        border-radius: 50% !important;
        width: 35px !important;
        height:35px !important;
        color: orange !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 12px !important;
    }
    .about-section {
        padding: 40px 4%;
    }
    .about-badge {
        font-size: 11px;
        padding: 4px 12px;
        margin-bottom: 12px;
    }
    .about-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
        line-height: 1.25;
    }
    .about-line {
        margin-bottom: 15px;
    }
    .about-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    .about-features-box {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 12px;
    }
    .about-feature-item {
        gap: 10px;
    }
    .feature-icon-circle {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    .feature-label {
        font-size: 13px;
    }
    .about-image-wrapper {
        height: 250px;
        border-radius: 18px;
    }
}

/* ========== WHY CHOOSE US SECTION CSS ========== */
.why-choose-section {
    padding: 80px 5%;
    background-color: #ffffff;
    position: relative;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styling */
.why-card {
    grid-column: span 2;
    background: #ffffff;
    border: 1px solid rgba(10, 61, 145, 0.05);
    border-radius: 24px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(10, 61, 145, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    height: 100%;
}

/* Center the 4th and 5th items on the second row */
.why-choose-grid > .why-card:nth-child(4) {
    grid-column: 2 / span 2;
}
.why-choose-grid > .why-card:nth-child(5) {
    grid-column: 4 / span 2;
}

/* Premium Gradient Border Glow on Hover */
.why-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(10, 61, 145, 0.08);
}

.why-card:hover::after {
    opacity: 1;
}

/* Icon Box Design (Double dashed outline) */
.why-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Outer rotating ring */
.why-icon-box::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(10, 61, 145, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Color Themes */
.why-icon-box.blue-theme {
    background-color: rgba(10, 61, 145, 0.07);
    color: var(--primary-blue);
}
.why-icon-box.blue-theme::before {
    border-color: rgba(10, 61, 145, 0.25);
}

.why-icon-box.orange-theme {
    background-color: rgba(243, 105, 32, 0.07);
    color: var(--primary-orange);
}
.why-icon-box.orange-theme::before {
    border-color: rgba(243, 105, 32, 0.25);
}

/* Hover Interactions */
.why-card:hover .why-icon-box {
    transform: scale(1.08);
}

.why-card:hover .why-icon-box::before {
    inset: -4px;
    transform: rotate(180deg);
}

.why-card:hover .blue-theme::before {
    border-color: var(--primary-blue);
    border-style: solid;
}

.why-card:hover .blue-theme {
    background: linear-gradient(135deg, var(--primary-blue), #174baf);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(10, 61, 145, 0.25);
}

.why-card:hover .orange-theme::before {
    border-color: var(--primary-orange);
    border-style: solid;
}

.why-card:hover .orange-theme {
    background: linear-gradient(135deg, var(--primary-orange), #ff8a00);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(243, 105, 32, 0.25);
}

/* Typography */
.why-title {
    font-size: 19px;
    color: #2b3a4a;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.why-card:hover .why-title {
    color: var(--primary-blue);
}

.why-text {
    font-size: 13.5px;
    color: #666;
    line-height: 1.65;
}

/* Responsive adjustment for section */
@media (max-width: 992px) {
    .why-choose-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
    .why-card {
        flex: 0 0 calc(50% - 13px);
        max-width: calc(50% - 13px);
        grid-column: auto !important;
    }
    .why-choose-grid > .why-card:nth-child(4),
    .why-choose-grid > .why-card:nth-child(5) {
        grid-column: auto !important;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 4%;
    }
    .why-card {
        padding: 25px 15px;
    }
    .why-icon-box {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-bottom: 15px;
    }
    .why-icon-box::before {
        inset: -4px;
    }
    .why-title {
        font-size: 17px;
        margin-bottom: 8px;
    }
    .why-text {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 580px) {
    .why-choose-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .why-card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding: 20px 15px;
    }
}

/* ========== SPECIAL OFFER SECTION CSS ========== */
.special-offer-section {
    padding: 80px 5%;
    background-color: #ffffff;
    position: relative;
}

.special-offer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.offer-banner-card {
    border-radius: 30px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 50px;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(10, 61, 145, 0.15);
    position: relative;
    gap: 50px;
}

/* Banner Left Column */
.offer-content {
    flex: 1.3;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 186, 0, 0.2);
    border: 1px solid rgba(247, 186, 0, 0.6);
    color: var(--primary-yellow);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.offer-badge i {
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}

.offer-title {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.offer-title .highlight-discount {
    background: linear-gradient(to right, var(--primary-yellow), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.offer-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 35px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    max-width: 650px;
}

/* Live Countdown timer styling */
.offer-timer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 12px;
    border-radius: 16px;
    min-width: 75px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timer-num {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.timer-label {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

.timer-divider {
    font-size: 28px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    margin-bottom: 12px;
}

/* Banner Right Column (CTA Card) */
.offer-cta-box {
    flex: 0.8;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    text-align: center;
    max-width: 350px;
    width: 100%;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.price-strike-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.original-price {
    font-size: 18px;
    color: #999999;
    text-decoration: line-through;
    font-weight: 600;
}

.discount-badge {
    background-color: rgba(46, 204, 113, 0.12);
    color: #2ecc71;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-deal-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.deal-price-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #666666;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.deal-price-value {
    font-size: 38px;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
}

.deal-price-sub {
    font-size: 12px;
    color: #777777;
    margin-top: 6px;
}

/* Green WhatsApp Button */
.btn-claim-offer {
    width: 100%;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
    border: none;
    cursor: pointer;
    margin-bottom: 18px;
}

.btn-claim-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.45);
    color: #ffffff;
}

.offer-guarantee {
    font-size: 11px;
    color: #777777;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.offer-guarantee i {
    color: var(--primary-blue);
}

/* Responsive adjustment for section */
@media (max-width: 992px) {
    .offer-banner-card {
        flex-direction: column;
        padding: 50px 30px;
        gap: 40px;
    }
    .offer-content {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .offer-desc {
        max-width: 100%;
    }
    .offer-cta-box {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .special-offer-section {
        padding: 40px 4%;
    }
    .offer-banner-card {
        padding: 30px 15px;
        gap: 25px;
        border-radius: 20px;
    }
    .offer-badge {
        padding: 4px 12px;
        font-size: 10px;
        margin-bottom: 12px;
    }
    .offer-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    .offer-desc {
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    .offer-cta-box {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .offer-timer {
        gap: 5px;
    }
    .timer-unit {
        min-width: 50px;
        padding: 5px;
    }
    .timer-num {
        font-size: 16px;
    }
    .timer-label {
        font-size: 9px;
        margin-top: 3px;
    }
    .timer-divider {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

/* ========== TOUR PACKAGES SECTION CSS ========== */
.packages-section {
    padding: 80px 5%;
    background: radial-gradient(circle at 90% 10%, rgba(243, 105, 32, 0.02) 0%, rgba(255, 255, 255, 1) 90%);
    position: relative;
    overflow: hidden;
}

.packages-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Tab Filter Buttons */
.package-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #ffffff;
    border: 1px solid rgba(10, 61, 145, 0.1);
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    color: #555555;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
}

.tab-btn:hover {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), #174baf);
    color: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: 0 8px 20px rgba(10, 61, 145, 0.2);
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Card Styling */
.package-card-item {
    background: #ffffff;
    border: 1px solid rgba(10, 61, 145, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 61, 145, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.package-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 61, 145, 0.07);
    border-color: rgba(243, 105, 32, 0.12);
}

.package-img-box {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card-item:hover .package-img {
    transform: scale(1.06);
}

.package-cat-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 61, 145, 0.95);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.package-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12.5px;
}

.package-duration {
    color: #666666;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-duration i {
    color: var(--primary-orange);
}

.package-rating {
    color: #222222;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.package-rating i {
    color: var(--primary-yellow);
}

.package-title {
    font-size: 19px;
    color: #2b3a4a;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.package-card-item:hover .package-title {
    color: var(--primary-blue);
}

.package-text {
    font-size: 13.5px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Footer Section of Card */
.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f2f5f9;
    margin-top: auto;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 10px;
    color: #888888;
    text-transform: uppercase;
    font-weight: 600;
}

.price-num {
    font-size: 18px;
    color: var(--primary-orange);
    font-weight: 800;
}

.package-btn {
    background: transparent;
    border: 1.5px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 50px;
    padding: 7px 18px;
    font-weight: 700;
    font-size: 12.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: linear-gradient(135deg, var(--primary-orange), #ff7a33);
    border-color: var(--primary-orange);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(243, 105, 32, 0.3);
}

/* Responsive adjustment for section */
@media (max-width: 768px) {
    .packages-section {
        padding: 40px 4%;
    }
    .package-tabs {
        gap: 8px;
        margin-bottom: 20px;
    }
    .tab-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    .packages-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 15px;
    }
    .package-img-box {
        height: 180px;
    }
    .package-content {
        padding: 15px;
    }
    .package-meta {
        margin-bottom: 8px;
    }
    .package-title {
        font-size: 17px;
        margin-bottom: 6px;
    }
    .package-text {
        font-size: 13px;
        margin-bottom: 12px;
    }
    .package-footer {
        padding-top: 12px;
    }
}

/* ========== GALLERY SECTION CSS ========== */
.gallery-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 10px 30px rgba(10, 61, 145, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    background: #000;
    perspective: 1000px;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(10, 61, 145, 0.25), 0 10px 20px rgba(243, 105, 32, 0.3);
    border-radius: 12px;
}

/* Cinematic sweeping light flash */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.8s ease;
    z-index: 5;
    pointer-events: none;
}

.gallery-item:hover::after {
    left: 150%;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s ease, filter 0.5s ease;
    transform-origin: 50% 50%;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.25) rotate(-3deg);
    opacity: 0.5;
    filter: blur(3px) grayscale(30%);
}

/* 3D Glassmorphism Portal */
.gallery-overlay {
    position: absolute;
    inset: 15px;
    background: rgba(10, 61, 145, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: scale(0.8) rotateX(-90deg);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: scale(1) rotateX(0deg);
}

.gallery-icon {
    font-size: 35px;
    color: var(--primary-yellow);
    margin-bottom: 15px;
    display: inline-block;
    transform: translateY(-40px) scale(0);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
    filter: drop-shadow(0 5px 10px rgba(243, 105, 32, 0.6));
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0) scale(1);
}

.gallery-content {
    color: #ffffff;
    width: 100%;
}

.gallery-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    transform: translateX(-60px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    display: block;
}

.gallery-item:hover .gallery-item-title {
    transform: translateX(0);
    opacity: 1;
}

.gallery-item-loc {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-yellow);
    display: block;
    transform: translateX(60px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.gallery-item:hover .gallery-item-loc {
    transform: translateX(0);
    opacity: 1;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 40px 4%;
    }

    /* Disable complex hover animations on mobile */
    .gallery-item:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .gallery-item::after {
        display: none;
    }

    .gallery-item:hover .gallery-img {
        transform: none;
        opacity: 1;
        filter: none;
    }

    /* Show a simple always-visible title bar at bottom */
    .gallery-overlay {
        inset: unset;
        top: unset;
        left: 0;
        right: 0;
        bottom: 0;
        height: auto;
        background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0 0 12px 12px;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 14px 12px;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
        transform: none;
    }

    /* Hide camera icon on mobile */
    .gallery-icon {
        display: none;
    }

    /* Show title directly */
    .gallery-item-title {
        transform: none;
        opacity: 1;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0;
        transition: none;
        margin-bottom: 0;
        text-align: left;
    }

    .gallery-item:hover .gallery-item-title {
        transform: none;
        opacity: 1;
    }

    .gallery-item-loc {
        display: none;
    }
}

@media (max-width: 580px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 220px;
    }
}

/* ========== TESTIMONIALS SECTION CSS ========== */
.testimonials-section {
    padding: 80px 5%;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-slider {
    padding: 20px 10px 50px 10px; /* space at bottom for pagination */
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 40px rgba(10, 61, 145, 0.05);
    border: 1px solid #f2f5f9;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(10, 61, 145, 0.08);
}

.testimonial-quote-icon {
    font-size: 28px;
    color: rgba(243, 105, 32, 0.15);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555555;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-divider {
    height: 1px;
    background-color: #f2f5f9;
    margin-bottom: 20px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(10, 61, 145, 0.1);
    transition: border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f5f9;
}

.testimonial-card:hover .user-avatar-wrapper {
    border-color: var(--primary-orange);
}

.user-avatar {
    font-size: 24px;
    color: var(--primary-blue);
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.user-location {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary-orange);
}

.user-rating {
    display: flex;
    gap: 2px;
    margin-top: 4px;
}

.user-rating i {
    font-size: 12px;
    color: var(--primary-yellow);
}

/* Customize Testimonial Swiper Pagination */
.testimonials-slider .testimonial-pagination {
    bottom: 10px !important;
}

.testimonials-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-blue);
    opacity: 0.2;
    transition: all 0.3s ease;
}

.testimonials-slider .swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 10px;
    background: var(--primary-orange);
    opacity: 1;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 4%;
    }
    .testimonial-card {
        padding: 20px 15px;
    }
    .testimonial-quote-icon {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .testimonial-text {
        font-size: 13px;
        margin-bottom: 15px;
    }
    .testimonial-divider {
        margin-bottom: 15px;
    }
    .user-avatar-wrapper {
        width: 45px;
        height: 45px;
    }
    .user-name {
        font-size: 15px;
    }
    .user-location {
        font-size: 11px;
    }
    .user-rating i {
        font-size: 11px;
    }
}

/* ========== FAQ SECTION CSS ========== */
.faq-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(10, 61, 145, 0.02);
    border: 1px solid #f2f5f9;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(10, 61, 145, 0.04);
}

.faq-item.active {
    box-shadow: 0 12px 30px rgba(10, 61, 145, 0.07);
    border-left: 4px solid var(--primary-orange);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
    color: var(--primary-blue);
}

.faq-item.active .faq-question {
    color: var(--primary-orange);
}

.faq-toggle-icon {
    font-size: 14px;
    color: var(--primary-blue);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    color: var(--primary-orange);
    transform: rotate(45deg); /* rotates plus to look like an X or cross, or rotates */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 4%;
    }
    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }
    .faq-answer p {
        padding: 0 20px 18px 20px;
        font-size: 13.5px;
    }
}

/* ========== FOOTER SECTION CSS ========== */
.footer-section {
    background-color: #061325;
    color: #a5b1c2;
    padding: 80px 5% 30px 5%;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brand-col .footer-logo img {
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
    background-color: #ffffff;
    padding: 5px;
}

.brand-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: #a5b1c2;
}

.brand-col .footer-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.brand-col .social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    background-color: #132237;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.brand-col .social-icon:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(243, 105, 32, 0.35);
}

.footer-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary-orange);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #a5b1c2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 10px;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-info li {
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 14px;
}

.footer-contact-info li i {
    font-size: 16px;
    color: var(--primary-orange);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-info a {
    color: #a5b1c2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #ffffff;
}

.plan-trip-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #a5b1c2;
}

.plan-trip-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Base button */
.plan-btn {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    border-radius: 14px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #1ac85a, #0fa84a);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(26, 200, 90, 0.3);
}

/* Shimmer overlay */
.plan-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.plan-btn:hover::before {
    left: 130%;
}

/* Icon Badge */
.plan-btn i {
    font-size: 16px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.15);
    border-right: 1px solid rgba(255,255,255,0.12);
    transition: all 0.3s ease;
}

/* Button Text */
.plan-btn span {
    flex: 1;
    padding: 0 14px;
    letter-spacing: 0.2px;
}

/* Arrow */
.plan-btn .btn-arrow {
    width: 36px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0.6;
    background: none;
    border: none;
    border-left: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.plan-btn:hover .btn-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Color variants */
.plan-btn:nth-child(2) {
    background: linear-gradient(135deg, #f36920, #e85a0a);
    box-shadow: 0 4px 15px rgba(243, 105, 32, 0.3);
}

.plan-btn:nth-child(3) {
    background: linear-gradient(135deg, #0a3d91, #1658c8);
    box-shadow: 0 4px 15px rgba(10, 61, 145, 0.35);
}

.plan-btn.plan-btn-outline {
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.12);
    box-shadow: none;
    color: #c0cad8;
}

.plan-btn.plan-btn-outline i {
    background: rgba(255,255,255,0.06);
    border-right: 1px solid rgba(255,255,255,0.1);
    color: #c0cad8;
}

/* Hover states */
.plan-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 28px rgba(26, 200, 90, 0.4);
}

.plan-btn:nth-child(2):hover {
    box-shadow: 0 10px 28px rgba(243, 105, 32, 0.45);
}

.plan-btn:nth-child(3):hover {
    box-shadow: 0 10px 28px rgba(10, 61, 145, 0.45);
}

.plan-btn.plan-btn-outline:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(255,255,255,0.06);
    transform: translateY(-2px) scale(1.01);
}

.plan-btn:hover i {
    background: rgba(0,0,0,0.22);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    font-size: 13px;
    color: #718096;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer-bottom-links a {
    font-size: 13px;
    color: #718096;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 15px;
    border-right: 1px solid #F36920;
}

.footer-bottom-links a:last-child {
    border-right: none;
    padding-right: 0;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .brand-col,
    .plan-trip-col {
        grid-column: span 2;
    }
}

@media (max-width: 580px) {
    .footer-section {
        padding: 60px 4% 30px 4%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .brand-col,
    .plan-trip-col {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========== BACK TO TOP BUTTON CSS ========== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), #ff7a33);
    color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(243, 105, 32, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--primary-blue), #174baf);
    box-shadow: 0 8px 20px rgba(10, 61, 145, 0.4);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}






/* ========== PAGE HERO CSS ========== */
.page-hero { padding: 120px 5% 80px 5%; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; color: #ffffff; min-height: 400px; }
.page-hero-content { z-index: 2; }
.page-hero h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 15px; }
.page-hero p { font-size: 1.2rem; font-weight: 600; opacity: 0.9; }
@media (max-width: 768px) { .page-hero { padding: 100px 5% 60px 5%; min-height: 300px; } .page-hero h1 { font-size: 2.5rem; } }

/* ========== FOOTER DROPDOWN ACCORDION ========== */
.footer-dropdown .dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    opacity: 0.7;
}
.footer-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary-orange);
}
.footer-submenu {
    list-style: none;
    padding-left: 18px !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.3s ease;
    margin-top: 0;
}
.footer-dropdown.active .footer-submenu {
    max-height: 250px;
    margin-top: 10px;
}
.footer-submenu li {
    margin-bottom: 8px !important;
}
.footer-submenu a {
    font-size: 0.95rem !important;
    opacity: 0.8;
}
.footer-submenu a:hover {
    opacity: 1;
    color: var(--primary-orange) !important;
}
.footer-submenu a i {
    font-size: 10px !important;
    color: var(--primary-orange) !important;
    margin-right: 8px !important;
}

/* ========== FLOATING CONTACT ICONS CSS ========== */
.floating-contact-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff !important;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    animation: bounceInUp 0.8s ease-out;
}

.floating-icon:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.floating-call {
    background: linear-gradient(135deg, var(--primary-blue), #174baf);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-facebook {
    background: linear-gradient(135deg, #1877f2, #145dbf);
}

.floating-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

@keyframes bounceInUp {
    0% { transform: scale(0) translateY(50px); opacity: 0; }
    60% { transform: scale(1.1) translateY(-10px); opacity: 1; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .floating-contact-container {
        bottom: 20px;
        left: 20px;
        gap: 12px;
    }
    .floating-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}
