/* ========================================== */
/* ===== TABLE OF CONTENTS ===== */
/* ========================================== */
/* 1.  CSS VARIABLES */
/* 2.  BASE & RESET */
/* 3.  TYPOGRAPHY & SECTION HEADERS */
/* 4.  HEADER & NAVIGATION */
/* 5.  OFFCANVAS MENU */
/* 6.  MEGA MENU */
/* 7.  BANNER / HERO SECTION */
/* 8.  ABOUT SECTION */
/* 9.  PROCESS SECTION */
/* 10. TRIP CATEGORY SECTION */
/* 11. PACKAGE SECTION */
/* 12. TESTIMONIALS SECTION */
/* 13. BLOG SECTION */
/* 14. PARTNER SECTION */
/* 15. INSTAGRAM FEED SECTION */
/* 16. FOOTER STYLES */
/* 17. RESPONSIVE STYLES  */
/* 18. MOBILE BOTTOM MENU */
/* 19. DESTINATIONS SECTION */
/* ========================================== */


/* ========================================== */
/* ===== 1. CSS VARIABLES ===== */
/* ========================================== */
:root {
    /* Primary Colors */
    --primary: #0B2545;
    --primary-light: #13315C;
    --primary-dark: #06182E;
    --primary-rgb: 11, 37, 69;

    /* Accent Colors */
    --accent: #F44336;
    --accent-light: #F4A261;
    --accent-dark: #E76F51;
    --accent-rgb: 238, 155, 0;

    /* Text Colors */
    --text-main: #2B2D42;
    --text-muted: #8D99AE;
    --text-light: #EDF2F4;

    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --secondary-bg: #EDF2F4;
    --border-color: #DEE2E6;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0B2545 0%, #13315C 100%);
    --gradient-accent: linear-gradient(135deg, #F44336 0%, #F4A261 100%);

    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);

    /* Global Transition */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ========================================== */
/* ===== 2. BASE & RESET ===== */
/* ========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

/* Utility Classes */
.hidden-xs {
    display: block;
}

.visible-xs {
    display: none !important;
}

.section {
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

/* Container Width Constraints */
.header-nav,
.banner-content .container,
.about_section .container,
.process-horizontal-section .container, 
.destinations-section .container, 
.process-horizontal-section.container, 
.package-section .container, 
.testimonial_section .container, 
.blog-section .container, 
.insta_section .container, 
.partner-section .container, 
.footer-top .container,
.footer-cta .container {
    max-width: 1400px !important;
    padding-left: 20px;
    padding-right: 20px;
}


/* ========================================== */
/* ===== 3. TYPOGRAPHY & SECTION HEADERS ===== */
/* ========================================== */
.section-header {
    position: relative;
    z-index: 2;
}

.section-header.text-center {
    text-align: center;
}

.section-header.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    align-items: center;
    color: var(--accent);
    display: inline-flex;
    font-size: 0.85rem;
    font-weight: 600;
    gap: 10px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-label::before {
    background: var(--accent);
    border-radius: 2px;
    content: '';
    height: 2px;
    width: 30px;
}

.section-title {
    color: var(--text-main);
    font-size: clamp(28px, 4vw, 32px);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
}

.section-title::after {
    background: var(--gradient-accent);
    border-radius: 2px;
    content: '';
    display: block;
    height: 4px;
    margin-top: 15px;
    width: 60px;
}

.section-header.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 700px;
    margin-bottom: 25px;
}

/* Section-specific overrides */
.about_section .section-subtitle {
    margin-bottom: 20px;
    max-width: 100%;
}

.about_section .section-title::after {
    display: none;
}

.process-horizontal-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.process-horizontal-section .section-title {
    color: var(--white);
}


/* ========================================== */
/* ===== 4. HEADER & NAVIGATION ===== */
/* ========================================== */
.header-main {
    left: 0;
    padding: 1rem 0;
    position: absolute;
    top: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    z-index: 1000;
}

.header-nav {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    min-height: 60px;
}

.header-nav-logo img {
    height: 115px;
    transition: all 0.4s ease;
    width: 100%;
}

.header-nav-right ul {
    align-items: center;
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
}

/* CTA Buttons */
.button-cta {
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    overflow: hidden;
    padding: 12px 25px;
    position: relative;
    text-decoration: none;
    transition: var(--transition);
}

.button-cta::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    content: '';
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: left 0.6s ease;
    width: 100%;
}

.button-cta:hover {
    border-radius: 25px;
    transform: translateY(-3px);
}

.button-cta:hover::before {
    left: 100%;
}

.button-light {
    background: var(--gradient-accent);
    color: #ffffff;
}

.button-light:hover {
    background: var(--accent-dark);
    box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.4);
    color: #fff;
}

.button-dark {
    background: var(--gradient-primary);
    color: #fff;
}

.button-dark:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
    color: #fff;
}

.button-service {
    background: var(--gradient-accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
    transition: var(--transition);
}

.button-service::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    opacity: 0;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.button-service:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.5);
}

.text-wrapper i {
    color: var(--white);
    font-size: 28px;
    transition: var(--transition);
}

.button-service:hover .text-wrapper i {
    transform: rotate(90deg);
}


/* ========================================== */
/* ===== 5. OFFCANVAS MENU ===== */
/* ========================================== */
.offcanvas {
    background-color: var(--light-gray);
    min-width: 400px;
}

.offcanvas-header {
    background: var(--primary);
    color: #fff;
    padding: 1rem 1.5rem;
}

.offcanvas-body {
    color: var(--text-main);
    overflow-y: auto;
    padding: 15px;
}

.offcanvas-footer-section {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    padding: 20px;
}

.offcanvas-footer-section h6 {
    align-items: center;
    color: var(--primary);
    display: flex;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.offcanvas-footer-section h6::before {
    background: var(--gradient-accent);
    border-radius: 2px;
    content: '';
    display: inline-block;
    height: 18px;
    margin-right: 10px;
    width: 4px;
}

.contact-info-modern {
    margin: 0;
    padding: 0;
}

.contact-info-modern li {
    align-items: center;
    color: var(--text-muted);
    display: flex;
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: var(--transition);
}

.contact-info-modern li:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.contact-info-modern .icon-box {
    align-items: center;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    display: flex;
    font-size: 1rem;
    height: 36px;
    justify-content: center;
    margin-right: 12px;
    min-width: 36px;
    transition: var(--transition);
    width: 36px;
}

.contact-info-modern li:hover .icon-box {
    background: var(--primary);
    color: #fff;
}

.social-icons-modern {
    display: flex;
    gap: 12px;
}

.social-icons-modern a {
    align-items: center;
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--primary);
    display: flex;
    font-size: 1.1rem;
    height: 40px;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    width: 40px;
}

.social-icons-modern a:hover {
    background: var(--gradient-accent);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.3);
    color: #fff;
    transform: translateY(-3px);
}


/* ========================================== */
/* ===== 6. MEGA MENU ===== */
/* ========================================== */
.mega-menu-offcanvas {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    max-width: 100%;
    min-width: 100%;
    overflow-y: auto;
    width: 100% !important;
}

.mega-menu-header {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mega-menu-brand {
    align-items: center;
    display: flex;
    gap: 15px;
}

.mega-menu-brand img {
    height: 50px;
    width: auto;
}

.mega-menu-brand span {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.mega-menu-body {
    background: transparent;
    padding: 0;
}

.mega-menu-container {
    padding: 40px 60px;
}

.mega-menu-row {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(4, 1fr);
}

.mega-menu-column {
    animation: fadeInUp 0.5s ease-out forwards;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    transition: var(--transition);
}

.mega-menu-column:nth-child(1) { animation-delay: 0.1s; }
.mega-menu-column:nth-child(2) { animation-delay: 0.2s; }
.mega-menu-column:nth-child(3) { animation-delay: 0.3s; }
.mega-menu-column:nth-child(4) { animation-delay: 0.4s; }

.mega-menu-column:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(var(--accent-rgb), 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.mega-category-title {
    align-items: center;
    border-bottom: 2px solid var(--accent);
    color: var(--white);
    display: flex;
    font-size: 1.1rem;
    font-weight: 700;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.mega-category-title i {
    color: var(--accent);
    font-size: 1.3rem;
}

.mega-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-submenu > li {
    margin-bottom: 10px;
}

.mega-submenu-link {
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    color: var(--accent-light);
    display: flex;
    font-size: 0.95rem;
    font-weight: 600;
    gap: 8px;
    padding: 10px 12px;
    text-decoration: none;
    transition: var(--transition);
}

.mega-submenu-link:hover {
    background: rgba(var(--accent-rgb), 0.2);
    color: var(--white);
    padding-left: 18px;
}

.mega-submenu-link i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.mega-submenu-link:hover i {
    color: var(--accent);
    transform: translateX(5px);
}

.mega-packages {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    list-style: none;
    margin: 5px 0 0 8px;
    padding: 0;
}

.mega-packages li {
    margin-bottom: 8px;
}

.mega-packages a {
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    font-size: 0.85rem;
    line-height: 1.4;
    padding: 6px 12px;
    text-decoration: none;
    transition: var(--transition);
}

.mega-packages a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding-left: 18px;
}

.mega-menu-offcanvas::-webkit-scrollbar { width: 8px; }
.mega-menu-offcanvas::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); }
.mega-menu-offcanvas::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}
.mega-menu-offcanvas::-webkit-scrollbar-thumb:hover { background: var(--accent-light); }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mega Menu Header Navigation */
.mega-main-menu {
    display: flex;
    flex: 1;
    justify-content: center;
    margin: 0 20px;
}

.mega-main-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-main-menu ul li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 5px;
    position: relative;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.mega-main-menu ul li a::after {
    background: var(--accent);
    bottom: 0;
    content: '';
    height: 2px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    width: 0;
}

.mega-main-menu ul li a:hover { color: var(--accent); }
.mega-main-menu ul li a:hover::after { width: 100%; }


/* ========================================== */
/* ===== 7. BANNER / HERO SECTION ===== */
/* ========================================== */
.banner-hero {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.banner-carousel { height: 100%; }

.banner-image {
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    height: 100vh;
    position: relative;
}

.banner-image::before {
    background: linear-gradient(90deg, rgba(11, 37, 69, 0.9) 0%, rgba(11, 37, 69, 0.3) 100%);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.banner-content {
    padding: 20px 0;
    position: relative;
    width: 100%;
    z-index: 2;
}

.banner-hero .section-label {
    animation: slideInLeft 0.8s ease-out;
    background: rgba(var(--primary-rgb), 0.85);
    border-radius: 4px;
    color: var(--accent-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding: 8px 16px 8px 50px;
    position: relative;
}

.banner-hero .section-label::before {
    background: var(--accent);
    height: 2px;
    left: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner-title {
    animation: fadeInUp 1s ease-out 0.3s both;
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.banner-description {
    animation: fadeInUp 1s ease-out 0.6s both;
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 650px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.banner-buttons {
    animation: fadeInUp 1s ease-out 0.9s both;
}




.banner-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
    justify-content: center; 
}

@media (min-width: 992px) {
    .banner-categories {
        justify-content: flex-start;
    }
}

.cat-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cat-pill i {
    color: var(--accent-light); 
    font-size: 1.1rem;
}

.cat-pill:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.4);
    color: white;
}

.cat-pill:hover i {
    color: white;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}


/* ========================================== */
/* ===== 8. ABOUT SECTION ===== */
/* ========================================== */
.about_section {
    overflow: hidden;
    position: relative;
}

.about-grid-wrapper {
    display: flex;
    min-height: 650px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.about-left-col {
    flex: 0 0 30%;
    max-width: 30%;
    position: relative;
}

.about-left-image {
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
}

.about-left-image img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    width: 100%;
}

.about-left-image:hover img { transform: scale(1.05); }

.about-right-col {
    display: flex;
    flex: 0 0 70%;
    flex-direction: column;
    max-width: 70%;
}

.about-top-row {
    display: flex;
    flex: 1;
    min-height: 0;
}

.about-containers-image {
    flex: 0 0 30%;
    max-width: 30%;
    overflow: hidden;
    position: relative;
}

.about-containers-image img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    width: 100%;
}

.about-containers-image:hover img { transform: scale(1.05); }

.about-text-content {
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 40px;
    position: relative;
}

.about-experience-box {
    background: rgba(var(--accent-rgb), 0.05);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    margin-bottom: 25px;
    padding: 15px 20px;
}

.about-experience-box p {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.about-buttons {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.about-phone {
    align-items: center;
    color: var(--text-main);
    display: flex;
    font-size: 1rem;
    font-weight: 600;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.about-phone:hover { color: var(--primary); }

.about-phone i {
    align-items: center;
    background: var(--primary);
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 1.1rem;
    height: 45px;
    justify-content: center;
    transition: var(--transition);
    width: 45px;
}

.about-phone:hover i {
    background: var(--gradient-accent);
    box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.3);
    transform: rotate(15deg);
}

.about-statistics-bar {
    background: var(--gradient-primary);
    overflow: hidden;
    padding: 45px 0;
    position: relative;
    width: 100%;
}

.stats-container {
    align-items: center;
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 0 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover { transform: translateY(-5px); }

.stat-number {
    color: var(--accent);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}


/* ========================================== */
/* ===== 9. PROCESS SECTION ===== */
/* ========================================== */
.process-horizontal-section {
    background: var(--primary);
}

.process-horizontal-container {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1100px;
    position: relative;
}

.h-step-item {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    position: relative;
    text-align: center;
    z-index: 1;
}

.h-step-icon-wrapper {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.h-step-icon {
    align-items: center;
    border: 5px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    display: flex;
    font-size: 2rem;
    height: 80px;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
    width: 80px;
}

.h-step-icon:hover { transform: translateY(-5px); }

.icon-1 { background-color: #FFC107; }
.icon-2 { background-color: #00BCD4; }
.icon-3 { background-color: #3F51B5; }
.icon-4 { background-color: #F44336; }

.h-step-line {
    background-color: #ccc;
    height: 30px;
    margin-bottom: 0;
    position: relative;
    width: 2px;
    z-index: 1;
}

.h-step-bar {
    align-items: center;
    border-radius: 22px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: #ffffff;
    display: flex;
    font-size: 1rem;
    font-weight: 600;
    height: 45px;
    justify-content: center;
    letter-spacing: 1px;
    position: relative;
    text-transform: uppercase;
    width: 100%;
}

.h-step-item:first-child .h-step-bar {
    border-radius: 22px 0 0 22px;
    margin-right: -2px;
}

.h-step-item:nth-child(2) .h-step-bar,
.h-step-item:nth-child(3) .h-step-bar {
    border-radius: 0;
    margin-left: -2px;
    margin-right: -2px;
}

.h-step-item:last-child .h-step-bar {
    border-radius: 0 22px 22px 0;
    margin-left: -2px;
}

.bar-1 { background-color: #FFC107; }
.bar-2 { background-color: #00BCD4; }
.bar-3 { background-color: #3F51B5; }
.bar-4 { background-color: #F44336; }

.h-step-content {
    margin-top: 25px;
    padding: 0 10px;
}

.h-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.title-1 { color: #D4A000; }
.title-2 { color: #008ba3; }
.title-3 { color: #2c387e; }
.title-4 { color: #d32f2f; }

.h-step-content p {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}


/* ========================================== */
/* ===== 10. TRIP CATEGORY SECTION ===== */
/* ========================================== */
.trip-category-category {
    padding: 0 60px;
    position: relative;
}

.trip-category-card {
    box-shadow: var(--shadow-md);
    height: 420px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.card-bg-img {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.trip-category-card:hover .card-bg-img { transform: scale(1.1); }

.card-content {
    background: linear-gradient(to top, rgba(11, 37, 69, 0.95) 0%, rgba(11, 37, 69, 0.6) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.card-title {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.card-text {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: rgba(255, 255, 255, 0.9);
    display: -webkit-box;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    overflow: hidden;
}

.trip-nav-btn {
    align-items: center;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    font-size: 1.4rem;
    height: 50px;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
    width: 50px;
    z-index: 10;
}

.trip-nav-btn:hover {
    background-color: var(--accent);
    box-shadow: 0 10px 25px rgba(var(--accent-rgb), 0.4);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.trip-nav-prev { left: 0; }
.trip-nav-next { right: 0; }


/* ========================================== */
/* ===== 11. PACKAGE SECTION ===== */
/* ========================================== */
.package-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.package-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: var(--transition);
}

.package-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.package-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.package-img img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.package-card:hover .package-img img { transform: scale(1.08); }

.package-badge {
    background: var(--gradient-accent);
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(var(--accent-rgb), 0.3);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    left: 15px;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    position: absolute;
    text-transform: uppercase;
    top: 15px;
    z-index: 2;
}

.package-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.package-rating {
    align-items: center;
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.package-rating i {
    color: #FFC107;
    font-size: 0.9rem;
}

.package-rating span {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 6px;
}

.package-title {
    color: var(--text-main);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.package-card:hover .package-title { color: var(--primary); }

.package-meta {
    align-items: center;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.meta-item {
    align-items: center;
    color: var(--text-muted);
    display: flex;
    font-size: 0.9rem;
    font-weight: 500;
    gap: 6px;
}

.meta-item i {
    color: var(--accent);
    font-size: 1rem;
}

.package-footer {
    align-items: center;
    display: flex;
    gap: 15px;
    justify-content: space-between;
    margin-top: auto;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.new-price {
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}


/* ========================================== */
/* ===== 12. TESTIMONIALS SECTION ===== */
/* ========================================== */
.testimonial-carousel .owl-nav button {
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--primary);
    font-size: 24px;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
    width: 50px;
}

.testimonial-carousel .owl-nav button:hover {
    background: var(--accent);
    color: #fff;
}

.testimonial-carousel .owl-nav .owl-prev { left: -25px; }
.testimonial-carousel .owl-nav .owl-next { right: -25px; }

.testimonial-carousel .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    background: var(--border-color);
    border-radius: 50%;
    height: 12px;
    margin: 0 5px;
    transition: var(--transition);
    width: 12px;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    background: var(--accent);
    border-radius: 10px;
    width: 30px;
}

.testimonial-item { padding: 0 5px; }

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 20px 25px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(var(--primary-rgb), 0.2);
    transform: translateY(-10px);
}

.stars {
    color: var(--accent);
    display: flex;
    font-size: 18px;
    gap: 4px;
    margin-bottom: 22px;
}

.quote {
    background: linear-gradient(to right, rgba(var(--accent-rgb), 0.05), rgba(255, 255, 255, 0.5));
    border-left: 5px solid var(--accent);
    border-radius: 20px;
    color: var(--text-main);
    flex: 1;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.65;
    margin-bottom: 30px;
    padding: 18px 20px;
}

.client-section {
    align-items: center;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
}

.client-initials {
    align-items: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    color: white;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    height: 54px;
    justify-content: center;
    text-transform: uppercase;
    width: 54px;
}

.client-name {
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 800;
}

.client-role {
    align-items: center;
    color: var(--text-muted);
    display: flex;
    font-size: 14px;
    font-weight: 500;
    gap: 5px;
}


/* ========================================== */
/* ===== 13. BLOG SECTION ===== */
/* ========================================== */
.blog-section {
    background: var(--light-gray);
    position: relative;
}

.blog-layout-container {
    display: grid;
    gap: 40px;
    grid-template-columns: 2fr 1fr;
    margin-bottom: 40px;
    margin-top: 50px;
}

.featured-blog-large {
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 500px;
    overflow: hidden;
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.featured-blog-large:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.featured-blog-overlay {
    background: linear-gradient(transparent 40%, rgba(11, 37, 69, 0.95));
    border-radius: 20px;
    inset: 0;
    position: absolute;
    z-index: 1;
}

.featured-blog-content {
    color: var(--white);
    max-width: 90%;
    position: relative;
    z-index: 2;
}

.featured-blog-category {
    align-items: center;
    background: var(--gradient-accent);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.4);
    color: var(--white);
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 8px 18px;
    text-transform: uppercase;
}

.featured-blog-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.featured-blog-excerpt {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: rgba(255, 255, 255, 0.9);
    display: -webkit-box;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    overflow: hidden;
}

.btn-featured-blog {
    align-items: center;
    background: var(--gradient-accent);
    border: 2px solid transparent;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.4);
    color: var(--white);
    display: inline-flex;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 28px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-featured-blog:hover {
    background: transparent;
    border-color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: var(--white);
    transform: translateX(5px);
}

.btn-featured-blog i { transition: transform 0.3s ease; }
.btn-featured-blog:hover i { transform: translateX(5px); }

.small-blogs-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.small-blog-card {
    background: var(--white);
    border-left: 4px solid var(--accent);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    overflow: hidden;
    padding: 25px;
    position: relative;
    transition: var(--transition);
}

.small-blog-card::before {
    background: var(--gradient-accent);
    content: '';
    height: 0;
    left: 0;
    position: absolute;
    top: 0;
    transition: height 0.3s ease;
    width: 4px;
}

.small-blog-card:hover::before { height: 100%; }

.small-blog-card:hover {
    border-left-color: var(--accent-dark);
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.small-blog-title {
    color: var(--text-main);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.small-blog-card:hover .small-blog-title { color: var(--primary); }

.small-blog-link {
    align-items: center;
    color: var(--accent);
    display: inline-flex;
    font-size: 0.85rem;
    font-weight: 600;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition);
}

.small-blog-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.small-blog-card:hover .small-blog-link { color: var(--accent-dark); }
.small-blog-card:hover .small-blog-link i { transform: translateX(5px); }


/* ========================================== */
/* ===== 14. PARTNER SECTION ===== */
/* ========================================== */
.partner-grid {
    align-items: center;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    justify-items: center;
    margin-top: 40px;
}

.partner-item {
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    display: flex;
    height: 100px;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    width: 100%;
}

.partner-item:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.partner-item img {
    filter: grayscale(100%);
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}


/* ========================================== */
/* ===== 15. INSTAGRAM FEED SECTION ===== */
/* ========================================== */
.insta-icon {
    border-radius: 50%;
    background: var(--gradient-accent);
    box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.3);
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 10px;
    padding: 4px 9px;
    vertical-align: middle;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;

}

.insta-wrap {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    transition: var(--transition);

}

.insta-wrap:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.insta-image {
    background: var(--secondary-bg);
    overflow: hidden;
    padding-top: 130%;
    position: relative;
    width: 100%;
}

.insta-image img {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.insta-wrap:hover .insta-image img { transform: scale(1.08); }

.insta-overlay {
    align-items: center;
    background: linear-gradient(180deg, rgba(11, 37, 69, 0.3) 0%, rgba(11, 37, 69, 0.85) 100%);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: var(--transition);
    width: 100%;
    z-index: 2;
}

.insta-wrap:hover .insta-overlay { opacity: 1; }
.insta-like-comment {
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    display: flex;
    gap: 1.5rem;
    padding: 0.9rem 1.5rem;
    transform: translateY(10px);
    transition: var(--transition);
}

.insta-wrap:hover .insta-like-comment { transform: translateY(0); }

.insta-like-comment span {
    align-items: center;
    color: var(--white);
    display: flex;
    font-size: 0.95rem;
    font-weight: 600;
    gap: 0.5rem;
}

.insta-like-comment i {
    color: var(--accent);
    font-size: 1.1rem;
}
.insta-info {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border-top: 2px solid var(--accent);
    bottom: 0;
    left: 0;
    padding: 12px 15px;
    position: absolute;
    right: 0;
    transform: translateY(100%);
    transition: var(--transition);
    z-index: 2;
}

.insta-wrap:hover .insta-info { transform: translateY(0); }

.insta-text {
    text-align: left;
    width: 100%;
}

.insta-tags {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--text-main);
    display: -webkit-box;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.4;
    overflow: hidden;
}


/* ========================================== */
/* ===== 16. FOOTER STYLES ===== */
/* ========================================== */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    overflow: hidden;
    position: relative;
}

.footer-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0;
    position: relative;
}

.footer-cta-inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.cta-form {
    display: flex;
    flex: 1;
    gap: 10px;
    max-width: 500px;
}

.cta-form input[type="email"] {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    flex: 1;
    font-size: 0.95rem;
    outline: none;
    padding: 14px 20px;
    transition: var(--transition);
}

.cta-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cta-form input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
}

.cta-form .btn-solid {
    background: var(--gradient-accent);
    border: none;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 30px;
    transition: var(--transition);
    white-space: nowrap;
}

.cta-form .btn-solid:hover {
    background: var(--accent-dark);
    box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.4);
    transform: translateY(-2px);
}

#newsletterMessage {
    color: var(--accent-light);
    font-weight: 500;
    text-align: center;
    width: 100%;
}

/* Footer Top */
.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 60px;
}

.footer-logo img {
  
    max-height: 120px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-heading {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 12px;
    position: relative;
}

.footer-heading::after {
    background: var(--gradient-accent);
    border-radius: 2px;
    bottom: 0;
    content: '';
    height: 3px;
    left: 0;
    position: absolute;
    width: 40px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li { margin-bottom: 12px; }

.footer-links li a {
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    font-size: 0.95rem;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links li a i {
    color: var(--accent);
    font-size: 0.75rem;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-middle {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
}

.footer-middle-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.footer-recommended,
.footer-social {
    align-items: center;
    display: flex;
    gap: 20px;
}

.footer-recommended span,
.footer-social span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.recommended-logos {
    align-items: center;
    display: flex;
    gap: 15px;
}

.recommended-logo {
    height: 30px;
    opacity: 0.8;
    transition: var(--transition);
    width: auto;
}

.recommended-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 1.1rem;
    height: 42px;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    width: 42px;
}

.footer-social-icon:hover {
    background: var(--gradient-accent);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.4);
    transform: translateY(-3px);
}

.footer-bottom { padding: 60px 0; }

.footer-bottom-inner {
    align-items: start;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 2fr 1fr;
}

.footer-contact-box h4,
.worldwide-section h4,
.award-section h4 {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 1.1rem;
    font-weight: 700;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-contact-box h4 i,
.worldwide-section h4 i,
.award-section h4 i {
    color: var(--accent);
}

.footer-contact-item {
    align-items: flex-start;
    display: flex;
    font-size: 0.95rem;
    gap: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 4px;
    min-width: 20px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover { color: var(--accent); }

.representatives-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.representative-card {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    gap: 15px;
    padding: 20px;
    transition: var(--transition);
}

.representative-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(var(--accent-rgb), 0.3);
    transform: translateY(-5px);
}

.representative-img {
    border: 2px solid var(--accent);
    border-radius: 50%;
    height: 50px;
    object-fit: cover;
    width: 50px;
}

.representative-info h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.representative-info span {
    color: var(--accent-light);
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.representative-info a {
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    font-size: 0.85rem;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition);
}

.representative-info a:hover { color: var(--accent); }

.award-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent);
    border-radius: 16px;
    overflow: hidden;
    padding: 30px;
    position: relative;
    text-align: center;
}

.award-badge::before {
    animation: pulse 4s infinite;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%);
    content: '';
    height: 200%;
    left: -50%;
    position: absolute;
    top: -50%;
    width: 200%;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.5; }
}

.tripadvisor-logo {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.award-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.award-subtitle {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}

.award-year {
    background: var(--gradient-accent);
    border-radius: 30px;
    color: #fff;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 6px 20px;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    padding: 20px 0;
    text-align: center;
}

.footer-copyright p { margin: 0; }


/* ========================================== */
/* ===== 17. RESPONSIVE STYLES ===== */
/* ========================================== */

/* ===== Large Desktop (1199px and below) ===== */
@media (max-width: 1199px) {
    .mega-menu-row {
        gap: 30px;
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-menu-container { padding: 30px 40px; }

    .mega-main-menu ul { gap: 15px; }
    .mega-main-menu ul li a { font-size: 0.9rem; }
}

@media (max-width: 991px) {
    /* Process Section */
    .process-horizontal-container {
        align-items: center;
        flex-direction: column;
        gap: 40px;
    }

    .h-step-item {
        max-width: 400px;
        width: 100%;
    }

    .h-step-bar {
        border-radius: 22px !important;
        margin: 0 !important;
        width: 100%;
    }

    .h-step-line { display: none; }

    .mega-menu-header { flex-wrap: wrap; }

    .mega-main-menu {
        flex-basis: 100%;
        justify-content: flex-start;
        margin: 15px 0 0 0;
        order: 3;
    }

    .mega-main-menu ul { gap: 10px 20px; }

    .trip-category-category { padding: 0 40px; }

    .trip-nav-btn {
        font-size: 1.2rem;
        height: 40px;
        width: 40px;
    }

    .package-grid {
        gap: 25px;
        grid-template-columns: repeat(2, 1fr);
    }

    .package-img { height: 220px; }

    .blog-layout-container {
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .featured-blog-large {
        min-height: 450px;
        padding: 30px;
    }

    .featured-blog-content { max-width: 100%; }
    .featured-blog-title { font-size: 24px; }

    .small-blogs-column {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }

    .insta-grid {
        gap: 15px;
        grid-template-columns: repeat(3, 1fr);
    }

    .insta-image { padding-top: 120%; }

    /* Footer */
    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-form {
        max-width: 100%;
        width: 100%;
    }

    .footer-bottom-inner {
        gap: 50px;
        grid-template-columns: 1fr;
    }

    .representatives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Mobile (768px and below) ===== */
@media (max-width: 768px) {
    /* Container Padding */
    .banner-content .container,
    .about_section .container,
    .process-horizontal-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Utility */
    .hidden-mobile { display: none; }
    .hidden-xs { display: none !important; }
    .visible-xs { display: block !important; }

    /* Section */
    .section { padding: 15px 0; }

    /* Header */
    .header-main { padding: 10px 0; }
    .header-nav-logo { width: 50%; }
    .header-nav-logo img {
        height: 48px;
        width: 75%;
    }

    .header-nav-right ul { gap: 10px; }
    .header-nav-right ul li { display: none; }
    .header-nav-right ul li.fixed-top-item,
    .header-nav-right ul li.offcanvas-toggle { display: block; }

    .offcanvas {
        min-width: 100%;
        width: 100% !important;
    }

    .button-cta {
        font-size: 0.85rem;
        padding: 11px 15px;
        text-align: center;
    }

    /* Banner */
    .banner-hero,
    .banner-image {
        height: 610px !important;
    }

    .banner-image::before {
        background: linear-gradient(180deg, rgba(11, 37, 69, 0.5) 0%, rgba(11, 37, 69, 0.95) 100%);
    }

    .banner-content { text-align: center; }

    .banner-hero .section-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
        padding-left: 40px;
    }

    .banner-hero .section-label::before {
        left: 12px;
        width: 15px;
    }

    .banner-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .banner-description {
        font-size: 1rem;
        margin-bottom: 25px;
        margin-left: auto;
        margin-right: auto;
    }

    /* About */
    .about-grid-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .about-left-col,
    .about-right-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-left-image {
        height: 300px;
        position: relative;
    }

    .about-top-row { flex-direction: column; }
    .about-containers-image { display: none; }

    .about-text-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 30px 20px;
    }

    .about-buttons {
        align-items: flex-start;
        flex-direction: column;
    }

    .stats-container {
        flex-direction: column;
        gap: 25px;
    }

    .stat-item { padding: 0; }
    .stat-number { font-size: 2.2rem; }
    .about-statistics-bar { padding: 35px 0; }

    /* Typography */
    .section-subtitle { font-size: 0.95rem; }
    .section-title { font-size: 1.8rem; }

    /* Mega Menu */
    .mega-main-menu ul { gap: 8px 15px; }
    .mega-main-menu ul li a { font-size: 0.85rem; }

    .mega-menu-offcanvas { width: 100% !important; }

    .mega-menu-row {
        gap: 25px;
        grid-template-columns: 1fr;
    }

    .mega-menu-container { padding: 20px 25px; }
    .mega-menu-header { padding: 15px 20px; }
    .mega-menu-column { padding: 20px; }

    .mega-category-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .mega-packages { margin-left: 20px; }
    .mega-packages a { font-size: 0.8rem; }

    /* Trip Category */
    .trip-category-card { height: 350px; }
    .trip-category-category { padding: 0; }

    .card-title { font-size: 1.4rem; }
    .card-text { font-size: 0.9rem; }

    /* Package */
    .package-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .package-body { padding: 20px; }
    .package-title { font-size: 1.2rem; }
    .new-price { font-size: 1.4rem; }

    /* Blog */
    .featured-blog-large {
        min-height: 400px;
        padding: 25px;
    }

    .featured-blog-title { font-size: 20px; }

    .featured-blog-excerpt {
        -webkit-line-clamp: 2;
        font-size: 0.9rem;
    }

    .small-blogs-column { grid-template-columns: 1fr; }

    .small-blog-card { padding: 20px; }
    .small-blog-title { font-size: 15px; }

    /* Instagram */
    .insta-grid {
        gap: 12px;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 20px;
    }

    .insta-image {
        padding-top: 115%;
    }

    .insta-like-comment {
        gap: 1rem;
        padding: 0.6rem 1rem;
    }

    .insta-like-comment span { font-size: 0.85rem; }

    .insta-info { padding: 10px 12px; }
    .insta-tags { font-size: 0.75rem; }

    /* Footer */
    .footer-top { padding: 50px 0 40px; }

    .footer-middle-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-recommended,
    .footer-social {
        flex-direction: column;
        gap: 15px;
    }

    .representatives-grid { grid-template-columns: 1fr; }

    .cta-form { flex-direction: column; }
    .cta-form .btn-solid { width: 100%; }
}

/* ===== Small Mobile (480px and below) ===== */
@media (max-width: 480px) {
    /* Typography */
    .banner-description { font-size: 0.9rem; }
    .banner-title { font-size: 1.8rem; }
    .section-title { font-size: 1.5rem; }

    /* Mega Menu */
    .mega-menu-brand span { display: none; }

    /* Package */
    .package-footer {
        align-items: flex-start;
        gap: 15px;
    }

    /* Blog */
    .featured-blog-large {
        min-height: 350px;
        padding: 20px;
    }

    .featured-blog-category {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .featured-blog-title { font-size: 18px; }

    .btn-featured-blog {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .small-blog-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    /* Instagram */
    .insta-grid { gap: 3px; }
    .insta-image { padding-top: 130%; }

    .insta-like-comment {
        gap: 0.7rem;
        padding: 0.5rem 0.8rem;
    }

    .insta-like-comment span { font-size: 0.78rem; }
    .insta-like-comment i { font-size: 0.95rem; }

    /* Footer */
    .footer-cta { padding: 40px 0; }
    .cta-content h3 { font-size: 1.5rem; }
}


/* ========================================== */
/* ===== 18. MOBILE BOTTOM MENU ===== */
/* ========================================== */
.mobile-bottom-menu {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.25);
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom)) 0;
  animation: slideUp 0.4s ease-out forwards;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.mobile-bottom-menu .menu-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 23%;
  padding: 6px 0;
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  transition: var(--transition);
  position: relative;
}

.mobile-bottom-menu .menu-item i {
  font-size: 24px;
  margin-bottom: 4px;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-bottom-menu .menu-item span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.mobile-bottom-menu .menu-item:hover i,
.mobile-bottom-menu .menu-item.active i {
  transform: scale(1.15) translateY(-2px);
  color: var(--accent);
  text-shadow: 0 0 15px rgba(var(--accent-rgb), 0.5);
}

.mobile-bottom-menu .menu-item:hover span,
.mobile-bottom-menu .menu-item.active span {
  color: var(--accent);
}

.mobile-bottom-menu .menu-item.highlight {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-bottom-menu .menu-item.highlight i {
  color: var(--accent-light);
}

.mobile-bottom-menu .menu-item.highlight:hover i {
  color: var(--accent);
}

@keyframes slideUp {
  from { 
    transform: translateY(100%); 
    opacity: 0; 
}
to { 
    transform: translateY(0); 
    opacity: 1; 
}
}


/* ========================================== */
/* ===== 19. DESTINATIONS SECTION ===== */
/* ========================================== */
.destinations-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 5px;
}

.dest-card-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.dest-card-small {
    grid-column: span 1;
    grid-row: span 1;
}

.dest-card-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.dest-card {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 250px;
}

.dest-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.dest-card-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.dest-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dest-card:hover .dest-card-image img {
    transform: scale(1.1);
}

.dest-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 24, 46, 0.95) 0%, rgba(6, 24, 46, 0.4) 50%, transparent 100%);
    z-index: 2;
    transition: var(--transition);
}

.dest-card:hover .dest-card-image::after {
    background: linear-gradient(to top, rgba(6, 24, 46, 0.98) 0%, rgba(6, 24, 46, 0.6) 60%, rgba(6, 24, 46, 0.2) 100%);
}

.dest-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dest-card-title {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.dest-card:hover .dest-card-title {
    color: var(--accent-light);
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    transition: var(--transition);
}

.meta-badge i {
    color: var(--accent);
    font-size: 0.9rem;
}

.dest-card:hover .meta-badge {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateX(5px);
}

.dest-card:hover .meta-badge i {
    color: var(--white);
}

@media (max-width: 991px) {
    .destinations-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .dest-card-featured {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 350px;
    }
    
    .dest-card-wide {
        grid-column: span 2;
    }
    
    .dest-card-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    
    .destinations-grid-v2 {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .dest-card-featured,
    .dest-card-wide {
        grid-column: span 1;
        min-height: 300px;
    }
    
    .dest-card {
        min-height: 250px;
    }
    
    .dest-card-content {
        padding: 20px;
    }
    
    .dest-card-title {
        font-size: 1.4rem;
    }
    
    .meta-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}





/* ========================================== */
/* ===== VIDEO & CLIENT STORIES 
/* ========================================== */
.video-clients-section {
    background-color: var(--primary-dark);
    padding: 80px 0;
}

.video-clients-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; 
    gap: 60px;
    align-items: center;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 16 / 9; 
    background: #000;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-right-col .section-title {
    color: var(--white) !important;
    font-size: clamp(28px, 3vw, 36px);
}

.video-right-col .section-title::after {
    background: var(--accent);
}

.text-light.opacity-75 {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem !important;
}

.video-action-buttons {
    margin-top: 10px;
}

@media (max-width: 991px) {
    .video-clients-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-clients-section {
        padding: 60px 0;
    }
    
    .video-right-col {
        text-align: center;
    }

    .video-right-col .section-title::after {
        margin-left: auto;
        margin-right: auto;
    }
}