/* ============================================
   KASHFLY TOUR & TRAVELS - MAIN STYLESHEET
   With Banner Slider & Package Slider
   ============================================ */

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Top Bar --- */
.top-bar {
    background: #1a1a1a;
    color: #bbb;
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a {
    color: #bbb;
    text-decoration: none;
    margin: 0 8px;
}

.top-bar a:hover {
    color: #ff6b35;
}

/* --- Header & Navigation --- */
header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a4a72;
}

.logo-text span {
    color: #ff6b35;
}


.enquire-btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.enquire-btn:hover {
    background: #e55a2b;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s;
}

/* ============================================
   HERO BANNER SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 420px !important;
    
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
   /* height: 100%;*/
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-tag {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-slide h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: #ff6b35;
    border-color: #ff6b35;
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: #ff6b35;
    border-color: #fff;
    transform: scale(1.3);
}

/* ============================================
   SEARCH SECTION (Below Banner)
   ============================================ */
.search-section {
    padding: 30px 0;
    background: #f8f9fa;
    margin-top: -5px;
}

.search-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0;
}

.tab-btn {
    background: #e0e0e0;
    border: none;
    color: #333;
    padding: 12px 22px;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.tab-btn.active {
    background: #fff;
    color: #ff6b35;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.search-box {
    background: #fff;
    padding: 22px;
    border-radius: 0 10px 10px 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.search-box input,
.search-box select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    flex: 1 1 160px;
    font-size: 0.95rem;
}

.search-btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    flex: 1 1 140px;
}

.search-btn:hover {
    background: #e55a2b;
}

.trust-badges {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 15px;
    font-weight: 600;
    font-size: 0.95rem;
    flex-wrap: wrap;
    color: #555;
}

/* --- Offers Ticker --- */
.offers-bar {
    background: linear-gradient(135deg, #1a4a72, #ff6b35);
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
}

.offer-ticker {
    overflow: hidden;
    white-space: nowrap;
}

.offer-track {
    display: inline-block;
    animation: scrollOffers 20s linear infinite;
}

.offer-track span {
    margin-right: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

@keyframes scrollOffers {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Section Headings --- */
.section-heading {
    text-align: center;
    font-size: 2.4rem;
    color: #1a4a72;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* --- Tour Categories --- */
.tour-categories {
    padding: 70px 0;
    background: #fff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.category-card {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-6px);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: #fff;
    padding: 30px 20px 20px;
}

.category-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.category-overlay a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
}

/* ============================================
   PACKAGE SLIDER
   ============================================ */
.packages {
    padding: 70px 0;
    background: #f8f9fa;
}

.package-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-slider-container {
    overflow: hidden;
    flex: 1;
}

.package-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
}

.package-card {
    min-width: 280px;
    flex: 0 0 280px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s;
}

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

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-info {
    padding: 18px;
}

.package-info h3 {
    color: #1a4a72;
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.package-info .duration {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.package-info .price {
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.details-btn {
    background: #1a4a72;
    color: #fff;
    border: none;
    padding: 10px 0;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.details-btn:hover {
    background: #0f3557;
}

/* Package Slider Arrows */
.package-arrow {
    background: #fff;
    border: 2px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    z-index: 2;
    flex-shrink: 0;
}

.package-arrow:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #fff;
}

.package-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Package Dots */
.package-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.package-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

.package-dot.active {
    background: #ff6b35;
    transform: scale(1.3);
}

.center-btn {
    text-align: center;
    margin-top: 30px;
}

.view-all-btn {
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: #ff6b35;
    color: #fff;
}

/* --- Why Us --- */
.why-us {
    padding: 70px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: box-shadow 0.3s;
}

.feature-box:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 14px;
}

.feature-box h3 {
    color: #1a4a72;
    margin-bottom: 8px;
}

/* --- Testimonials --- */
.testimonials {
    padding: 70px 0;
    background: #1a4a72;
    color: #fff;
}

.testimonials .section-heading {
    color: #fff;
}

.testimonials .section-subtitle {
    color: #ccc;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 28px;
    border-radius: 12px;
    text-align: center;
}

.guest-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 16px;
    border: 3px solid #ff6b35;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 14px;
    line-height: 1.7;
}

.testimonial-card cite {
    color: #ff6b35;
    font-weight: 600;
}

/* --- CTA Section --- */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ff6b35, #1a4a72);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 12px;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin: 18px 0;
}

.cta-small {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 14px 0;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.store-buttons img {
    height: 45px;
}

/* --- Contact --- */
.contact {
    padding: 70px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.contact-info {
    background: #f8f9fa;
    padding: 28px;
    border-radius: 12px;
}

.contact-info h3 {
    color: #1a4a72;
    margin-bottom: 18px;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 12px;
}

.social-icons a {
    display: inline-block;
    background: #1a4a72;
    color: #fff;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    margin-right: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.submit-btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
}

.submit-btn:hover {
    background: #e55a2b;
}

/* --- Footer --- */
footer {
    background: #1a1a1a;
    color: #bbb;
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 1.15rem;
}

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ff6b35;
}

.certification {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #ff6b35;
}

.newsletter-box {
    display: flex;
    margin-top: 12px;
}

.newsletter-box input {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    flex: 1;
}

.newsletter-box button {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.copyright {
    text-align: center;
    padding: 18px 0;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* --- Responsive --- */




        /* ==============================================
           RESPONSIVE NESTED NAVIGATION - MAIN STYLES
        ============================================== */
        
   /* ======================
   NAVBAR
====================== */

/* =========================
   RESPONSIVE NAVBAR FIXES
========================= */

/* ============================================
   KASHFLY TOUR & TRAVELS - MAIN STYLESHEET
   MODX Revolution Template
   With Animations
   ============================================ */

@import url('animations.css');

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Page Load Transition --- */
body > section:not(.hero-slider):not(.offers-bar) {
    animation: fadeInUp 0.8s ease-out both;
}

/* --- Top Bar --- */
.top-bar {
    background: #1a1a1a;
    color: #bbb;
    font-size: 0.85rem;
    padding: 8px 0;
    animation: fadeInDown 0.5s ease-out;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a {
    color: #bbb;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: #ff6b35;
}

/* --- Header & Navigation --- */
header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideInBottom 0.6s ease-out;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    transition: transform 0.3s;
}

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

.logo-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a4a72;
}

.logo-text span {
    color: #ff6b35;
}


/* ============================================
   HERO BANNER SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    animation: zoomOutIn 1s ease-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-tag {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: bounceIn 0.8s ease-out 0.2s both;
}

.hero-slide h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-btn:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: #ff6b35;
    border-color: #fff;
    transform: scale(1.3);
}

/* ============================================
   OFFER BAR - GRADIENT ANIMATED
   ============================================ */
.offers-bar {
    background: linear-gradient(270deg, #1a4a72, #ff6b35, #1a4a72);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
    margin: 0;
}

.offer-ticker {
    overflow: hidden;
    white-space: nowrap;
}

.offer-track {
    display: inline-block;
    animation: scrollOffers 20s linear infinite;
}

@keyframes scrollOffers {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.offer-track span {
    margin-right: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.offer-track span:hover {
    color: #ffd700;
}

/* ============================================
   SEARCH SECTION
   ============================================ */
.search-section {
    padding: 30px 0 40px;
    background: #f8f9fa;
}

.search-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0;
}

.tab-btn {
    background: #e0e0e0;
    border: none;
    color: #333;
    padding: 12px 22px;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.tab-btn.active {
    background: #fff;
    color: #ff6b35;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.tab-btn:hover {
    background: #fff;
}

.search-box {
    background: #fff;
    padding: 22px;
    border-radius: 0 10px 10px 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

.search-box:focus-within {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.search-box input,
.search-box select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    flex: 1 1 160px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.search-box input:focus,
.search-box select:focus {
    border-color: #ff6b35;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    flex: 1 1 140px;
    transition: all 0.3s;
}

.search-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.trust-badges {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 15px;
    font-weight: 600;
    font-size: 0.95rem;
    flex-wrap: wrap;
    color: #555;
}

.trust-badges span {
    transition: transform 0.3s;
}

.trust-badges span:hover {
    transform: scale(1.1);
    color: #ff6b35;
}

/* --- Section Headings --- */
.section-heading {
    text-align: center;
    font-size: 2.4rem;
    color: #1a4a72;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* ============================================
   TOUR CATEGORIES
   ============================================ */
.tour-categories {
    padding: 70px 0;
    background: #fff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.category-card {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category-card:hover .category-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.category-card:hover .category-overlay a {
    transform: translateX(5px);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: #fff;
    padding: 30px 20px 20px;
    transition: all 0.3s;
}

.category-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.category-overlay a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
    transition: transform 0.3s;
}

/* ============================================
   PACKAGE SLIDER
   ============================================ */
.packages {
    padding: 70px 0;
    background: #f8f9fa;
}

.package-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-slider-container {
    overflow: hidden;
    flex: 1;
}

.package-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card {
    min-width: 280px;
    flex: 0 0 280px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.package-info {
    padding: 18px;
}

.package-info h3 {
    color: #1a4a72;
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.package-info .duration {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.package-info .price {
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.details-btn {
    background: #1a4a72;
    color: #fff;
    border: none;
    padding: 10px 0;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.details-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.details-btn:hover::after {
    left: 100%;
}

.details-btn:hover {
    background: #0f3557;
}

/* Package Slider Arrows */
.package-arrow {
    background: #fff;
    border: 2px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    z-index: 2;
    flex-shrink: 0;
}

.package-arrow:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #fff;
    transform: scale(1.1);
}

.package-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* Package Dots */
.package-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.package-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

.package-dot.active {
    background: #ff6b35;
    transform: scale(1.3);
}

.center-btn {
    text-align: center;
    margin-top: 30px;
}

.view-all-btn {
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* --- Why Us --- */
.why-us {
    padding: 70px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.feature-box:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.feature-box:hover .feature-icon {
    animation: bounceIn 0.6s ease-out;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 14px;
    display: inline-block;
}

.feature-box h3 {
    color: #1a4a72;
    margin-bottom: 8px;
}

/* --- Testimonials --- */
.testimonials {
    padding: 70px 0;
    background: #1a4a72;
    color: #fff;
}

.testimonials .section-heading {
    color: #fff;
}

.testimonials .section-subtitle {
    color: #ccc;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 28px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.guest-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 16px;
    border: 3px solid #ff6b35;
    transition: transform 0.3s;
}

.testimonial-card:hover .guest-avatar {
    transform: scale(1.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 14px;
    line-height: 1.7;
}

.testimonial-card cite {
    color: #ff6b35;
    font-weight: 600;
}

/* --- CTA Section --- */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ff6b35, #1a4a72);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 12px;
    animation: fadeInDown 0.8s ease-out;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin: 18px 0;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.cta-small {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 14px 0;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.store-buttons img {
    height: 45px;
    transition: transform 0.3s;
}

.store-buttons img:hover {
    transform: scale(1.1);
}

/* --- Contact --- */
.contact {
    padding: 70px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.contact-info {
    background: #f8f9fa;
    padding: 28px;
    border-radius: 12px;
    transition: box-shadow 0.3s;
}

.contact-info:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-info h3 {
    color: #1a4a72;
    margin-bottom: 18px;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 12px;
}

.social-icons a {
    display: inline-block;
    background: #1a4a72;
    color: #fff;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    margin-right: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #ff6b35;
    transform: translateY(-3px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #ff6b35;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.submit-btn {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* --- Footer --- */
footer {
    background: #1a1a1a;
    color: #bbb;
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 1.15rem;
}

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s, transform 0.3s;
}

.footer-col a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.certification {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #ff6b35;
}

.newsletter-box {
    display: flex;
    margin-top: 12px;
}

.newsletter-box input {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    flex: 1;
}

.newsletter-box button {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-box button:hover {
    background: #e55a2b;
}

.copyright {
    text-align: center;
    padding: 18px 0;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite, float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: #1a4a72;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    animation: bounceIn 0.6s ease-out;
}

.back-to-top:hover {
    background: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* ============================================
   RIPPLE EFFECT
   ============================================ */
.ripple-effect .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* ============================================
   MODX PLACEHOLDER STYLES
   ============================================ */
/* These classes represent MODX template variables */
.modx-tv-hero-title { }
.modx-tv-hero-subtitle { }
.modx-tv-package-name { }
.modx-tv-package-price { }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        display: flex;
        animation: fadeInDown 0.3s ease-out;
    }

    .hamburger {
        display: flex;
    }

    .hero-slide h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .search-box {
        flex-direction: column;
    }

    .trust-badges {
        gap: 12px;
        font-size: 0.85rem;
    }

    .package-card {
        min-width: 260px;
        flex: 0 0 260px;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

