/*
Theme Name: Overlanders
Theme URI: https://jobayerhossan.com
Author: Jobayer
Author URI: https://jobayerhossan.com
Description: Custom WordPress theme developed for Overlanders.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: overlanders
Tags: custom-theme, responsive, blog
*/
/* --- RESET & VARIABLES --- */
:root {
    /* --- BRAND COLORS --- */
    --brand-red: #E31E24;   
    --brand-teal: #406E70;  
    --brand-dark-teal: #2a4d50; 
    
    --header-nav-bg: #ffffff;
    --header-top-bg: var(--brand-teal); 
    
    /* Body Colors */
    --primary: #FFB703; 
    --secondary: #023047; 
    --text-dark: #222222;
    --text-light: #F4F4F4;
    --white: #ffffff;
    --gray-bg: #F9F9F9;
    
    /* Difficulty Colors */
    --diff-easy: #406E70; /* Teal */
    --diff-mod: #FFB703;  /* Yellow/Orange */
    --diff-hard: #E31E24; /* Red */
    
    /* UI Settings */
    --btn-radius: 4px; /* Standardized Button Corner Radius */
    
    /* Typography */
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --padding-mobile: 20px;
    --padding-desktop: 5%;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }

/* --- UTILITIES --- */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--padding-mobile);
}
.section { padding: 80px 0; }
.text-center { text-align: center; }

/* --- BUTTONS (Global Styles) --- */
.btn {
    display: inline-block;
    background-color: var(--brand-red);
    color: var(--white);
    padding: 12px 28px;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: var(--btn-radius);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.btn:hover { transform: translateY(-2px); background-color: #c0151a; }

.btn-outline {
    background: transparent;
    border: 2px solid var(--brand-teal);
    color: var(--brand-teal);
    border-radius: var(--btn-radius);
}
.btn-outline:hover { background: var(--brand-teal); color: var(--white); transform: translateY(-2px); }

h1, h2, h3 { font-family: var(--font-head); font-weight: 800; color: var(--secondary); }
h2 { font-size: 2.5rem; margin-bottom: 20px; }

/* =========================================
   FIXED HEADER STYLES
   ========================================= */
header {
    display: flex; 
    width: 100%; 
    height: 100px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky; 
    top: 0; 
    z-index: 1000;
    background: var(--white);
}

/* LEFT: BRAND BOX */
.brand-box {
    position: relative;
    background-color: var(--brand-red);
    width: 450px; 
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 40px; 
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.logo-img { 
    max-width: 320px; 
    max-height: 90px; 
    width: auto; 
    display: block; 
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

/* RIGHT: CONTENT AREA */
.header-right {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-left: -60px;
    z-index: 1;
}

/* TOP BAR */
.header-top-bar {
    background-color: var(--brand-teal);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    padding-right: 5%;
    padding-left: 80px; 
    color: #f0f0f0;
    font-size: 0.85rem;
    font-weight: 600;
}

.contact-info { display: flex; align-items: center; gap: 30px; }
.contact-item { 
    display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); text-decoration: none; transition: 0.3s;
}
.contact-item i { color: rgba(255,255,255,0.8); transition: 0.3s; }
.contact-item:hover { color: #fff; transform: scale(1.05); }
.contact-item:hover i { color: var(--brand-red); animation: wiggle 0.5s ease-in-out; }

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
    75% { transform: rotate(-5deg); }
}

/* NAV BAR */
.header-nav-bar {
    background-color: var(--white);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 5%;
    padding-left: 100px; 
}

.header-links { display: flex; gap: 30px; margin: 0; padding: 0; margin-right: 30px; }
.header-links li { position: relative; }

.header-links li a {
    color: var(--brand-teal);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 5px;
    position: relative;
    padding: 10px 0;
}

.header-links > li > a::after {
    content: ''; position: absolute; bottom: 5px; left: 0;
    width: 0; height: 3px; background: var(--brand-red);
    transition: width 0.3s;
}
.header-links > li > a:hover::after { width: 100%; }
.header-links li a:hover { color: var(--brand-red); }

/* Dropdown */
.dropdown-menu {
    position: absolute; top: 100%; left: -20px;
    background-color: var(--white); min-width: 260px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); padding: 15px 0;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all 0.3s ease; border-top: 4px solid var(--brand-red);
    border-radius: 0 0 8px 8px; z-index: 100;
}
.header-links li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 12px 25px; font-size: 0.85rem; color: var(--secondary); border-bottom: 1px solid #f0f0f0; }
.dropdown-menu li a:hover { background-color: #f9f9f9; color: var(--brand-red); padding-left: 30px; }

/* Pay Button (Header) */
.btn-pay {
    background-color: var(--brand-red); color: white;
    padding: 10px 25px; 
    border-radius: var(--btn-radius);
    font-weight: 700; font-size: 0.9rem; text-transform: uppercase;
    display: flex; align-items: center; gap: 8px; border: none;
    box-shadow: 0 4px 10px rgba(227, 30, 36, 0.3); transition: all 0.3s ease;
}
.btn-pay:hover { background-color: #c0151a; transform: translateY(-2px); }

/* Hide toggle on desktop */
.mobile-toggle { display: none; } 

/* =========================================
   ANIMATED MOBILE MENU STYLES
   ========================================= */

/* 1. The Overlay (Backdrop) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 2. The Menu Container */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 2000;
    padding: 80px 40px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* 3. Close Button Animation */
.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background: var(--brand-red);
    transform: rotate(90deg);
}

.close-menu:active {
    transform: scale(0.9) rotate(90deg);
}

/* 4. Link Animations (Staggered Slide-in) */
.mobile-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-links li {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
    opacity: 0;
    transform: translateX(50px);
    transition: 0.4s ease;
}

.mobile-menu.active .mobile-links li {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(0.1s * var(--i));
}

.mobile-links li a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.mobile-links li a:hover {
    color: var(--brand-red);
    padding-left: 10px;
}

.mobile-links li a:active {
    color: var(--brand-teal);
    transform: scale(0.98);
}

/* 5. Submenu Animation */
.mobile-submenu {
    display: none;
    background: rgba(255,255,255,0.05);
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 4px;
    border-left: 3px solid var(--brand-red);
}

.mobile-submenu.open {
    display: block;
    animation: fadeIn 0.3s ease;
}

.mobile-submenu a {
    font-size: 0.95rem !important;
    color: #ccc !important;
    margin-bottom: 12px;
    text-transform: none !important;
    padding: 5px 0;
}

.mobile-submenu a:hover {
    color: white !important;
    padding-left: 5px;
}

/* 6. Pay Button Animation */
.mobile-pay-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--brand-red);
    color: white;
    padding: 15px;
    border-radius: var(--btn-radius);
    margin-top: 30px;
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.mobile-menu.active .mobile-pay-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.mobile-pay-btn:active {
    background: #c0151a;
    transform: scale(0.95);
}

/* Utility to lock body scroll */
body.no-scroll {
    overflow: hidden;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero */
.hero { position: relative; height: 85vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); overflow: hidden; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)); z-index: 1; }
.hero .container { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.hero h1 { font-size: 3.5rem; color: var(--white); text-shadow: 0 2px 10px rgba(0,0,0,0.5); margin-bottom: 20px; }
.hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px; font-weight: 600; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.hero-btns { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.btn-outline-white { background: transparent; border: 2px solid var(--white); color: var(--white); border-radius: var(--btn-radius); }
.btn-outline-white:hover { background: var(--white); color: var(--brand-red); transform: translateY(-2px); }

/* Hero Google Badge */
.hero-google-badge { display: inline-flex; align-items: center; gap: 12px; background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(8px); padding: 8px 25px; border-radius: 50px; margin-bottom: 25px; border: 1px solid rgba(255,255,255,0.2); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.hero-google-badge img { width: 24px; height: 24px; display: block; }
.hero-rating-text { font-size: 1.1rem; font-weight: 800; color: white; line-height: 1; }
.hero-stars { color: #FBBC05; font-size: 0.9rem; display: flex; gap: 2px; }
.hero-review-count { color: rgba(255,255,255,0.9); font-size: 0.8rem; font-weight: 600; margin-left: 5px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.about-img img { width: 100%; height: auto; max-width: 90%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin: 0 auto; display: block; }

/* Branding Header */
.about-branding { position: relative; margin-bottom: 30px; padding-left: 10px; }
.welcome-text { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--brand-teal); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0; position: relative; z-index: 2; }
.brand-name-text { font-family: var(--font-head); font-weight: 900; font-size: 3.5rem; color: var(--brand-red); text-transform: uppercase; line-height: 0.9; margin: 0; position: relative; z-index: 2; }
.about-branding::before { content: 'OVERLANDERS'; position: absolute; top: -15px; left: -10px; font-family: var(--font-head); font-weight: 900; font-size: 5rem; color: #f0f0f0; z-index: 0; line-height: 1; overflow: hidden; white-space: nowrap; max-width: 100%; opacity: 0.7; }

.about-text p { margin-bottom: 20px; color: #555; position: relative; z-index: 2; }
.about-stats { display: flex; gap: 30px; margin-top: 30px; padding-top: 20px; border-top: 1px solid #eee; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--brand-red); display: block; line-height: 1; }
.stat-label { font-size: 0.8rem; text-transform: uppercase; font-weight: 700; color: var(--brand-teal); }
.about-actions { margin-top: 25px; }

/* Carousel */
.tours-section { background-color: var(--gray-bg); position: relative; }
.carousel-wrapper { position: relative; width: 100%; margin-top: 50px; }
.carousel-track { display: flex; gap: 15px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 40px; padding-left: 5px; scrollbar-width: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.tour-card { flex: 0 0 auto; width: 420px; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.08); transition: all 0.3s ease; position: relative; scroll-snap-align: center; display: flex; flex-direction: column; }
.tour-card:hover { transform: translateY(-10px); }
.card-img-wrap { position: relative; height: 280px; overflow: hidden; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tour-card:hover .card-img-wrap img { transform: scale(1.03); }

/* Difficulty Badges */
.difficulty-badge { position: absolute; top: 20px; right: 20px; padding: 6px 12px; border-radius: var(--btn-radius); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: white; box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 2; }
.diff-easy { background-color: var(--diff-easy); }
.diff-mod { background-color: var(--diff-mod); color: #000; }
.diff-hard { background-color: var(--diff-hard); }

.card-body { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.card-meta { font-size: 0.8rem; color: var(--brand-teal); font-weight: 700; text-transform: uppercase; margin-bottom: 10px; display: block; }
.card-info-row { font-size: 0.9rem; color: #666; margin-bottom: 25px; display: flex; align-items: center; gap: 10px; font-weight: 600; }
.card-info-row i { color: var(--brand-red); font-size: 1rem; }
.card-sep { color: #ccc; font-weight: 300; }
.card-footer-row { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eee; padding-top: 20px; }
.card-price { display: flex; flex-direction: column; }
.amount { font-size: 1.5rem; color: var(--brand-red); font-weight: 800; line-height: 1; }
.tour-card.see-all { justify-content: center; align-items: center; background: var(--brand-teal); cursor: pointer; text-align: center; padding: 40px; }
.tour-card.see-all h3 { color: white; margin-top: 20px; }
.tour-card.see-all i { font-size: 4rem; color: var(--white); transition: 0.3s; }
.tour-card.see-all:hover i { transform: translateX(10px); color: var(--brand-red); }
.nav-btn { position: absolute; top: 48%; transform: translateY(-50%); width: 55px; height: 55px; background: var(--white); border-radius: 50%; box-shadow: 0 5px 15px rgba(0,0,0,0.2); border: none; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--brand-teal); }
.nav-btn.prev { left: -28px; } .nav-btn.next { right: -28px; }

/* Transport */
.transport { background-color: var(--white); color: var(--text-dark); text-align: center; padding-bottom: 100px; }
.transport-header { max-width: 800px; margin: 0 auto 50px; }
.transport-header h2 { color: var(--secondary); font-size: 2.8rem; margin-bottom: 20px; }
.transport-header .lead-text { font-size: 1.1rem; color: #666; }
.transport-features { display: flex; justify-content: center; gap: 40px; margin-bottom: 70px; flex-wrap: wrap; }
.feature-item { display: flex; flex-direction: column; align-items: center; max-width: 200px; padding: 0; background: transparent; box-shadow: none; border: none; }
.feature-item i { font-size: 2.2rem; color: var(--brand-red); margin-bottom: 15px; }
.feature-item h4 { font-size: 1rem; margin-bottom: 5px; color: var(--secondary); font-weight: 700; text-transform: uppercase; }
.feature-item p { font-size: 0.85rem; color: #777; margin: 0; line-height: 1.4; }
.transport-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.transport-card { position: relative; height: 450px; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); cursor: pointer; border-bottom: 4px solid transparent; transition: 0.3s ease; }
.transport-card:hover { border-bottom-color: var(--brand-red); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
.trans-img { width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: 0; }
.trans-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.transport-card:hover .trans-img img { transform: scale(1.1); }
.transport-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.9) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; z-index: 1; transition: 0.3s; }
.route-tag { position: absolute; top: 15px; right: 15px; background: var(--brand-red); color: white; padding: 4px 10px; border-radius: var(--btn-radius); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; z-index: 2; }
.trans-details { text-align: left; color: white; width: 100%; }
.trans-details h3 { font-size: 1.6rem; color: white; margin-bottom: 5px; font-weight: 800; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.trans-details p { font-size: 0.95rem; color: rgba(255,255,255,0.9); margin-bottom: 20px; font-weight: 500; }
.btn-trans { display: inline-block; padding: 10px 20px; background: var(--white); color: var(--brand-teal); font-size: 0.8rem; font-weight: 700; border-radius: var(--btn-radius); text-transform: uppercase; transition: 0.3s; opacity: 0.9; }
.transport-card:hover .btn-trans { background: var(--brand-red); color: white; opacity: 1; }
.transport-footer { margin-top: 50px; }
.btn-main-solid { background: var(--brand-teal); color: var(--white); padding: 15px 40px; font-size: 1rem; border-radius: var(--btn-radius); font-weight: 700; text-transform: uppercase; }
.btn-main-solid:hover { background: var(--brand-red); color: white; }

/* Reviews */
.reviews-section { background-color: var(--white); padding: 80px 0; }
.google-header { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 50px; text-align: center; }
.google-header div { text-align: left; }
.google-rating-score { font-size: 2rem; font-weight: 800; color: #333; }
.google-stars { color: #FBBC05; font-size: 1.5rem; margin: 0 10px; }
.card-grid-reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 12px; padding: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.review-user { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.user-avatar { width: 45px; height: 45px; border-radius: 50%; background-color: #ddd; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #555; }

/* Contact Section */
.contact-section { padding: 80px 0; background-color: #f4f4f4; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.contact-card { background: var(--white); padding: 40px 30px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s ease; position: relative; overflow: hidden; border-bottom: 4px solid transparent; height: 100%; }
.contact-card:hover { transform: translateY(-8px); border-bottom-color: var(--brand-red); }
.contact-icon-circle { width: 70px; height: 70px; background-color: #f0f0f0; color: var(--brand-teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 20px; transition: 0.3s; }
.contact-card:hover .contact-icon-circle { background-color: var(--brand-red); color: white; }
.contact-card h3 { font-size: 1.4rem; color: var(--secondary); margin-bottom: 15px; }
.contact-card p, .contact-card ul { color: #555; font-size: 0.95rem; margin-bottom: 20px; list-style: none; padding: 0; }
.contact-card li { margin-bottom: 8px; border-bottom: 1px solid #eee; padding-bottom: 8px; }
.contact-card li:last-child { border: none; }
.contact-card strong { color: var(--brand-teal); }
.contact-actions { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.action-btn { padding: 8px 15px; border-radius: var(--btn-radius); font-size: 0.8rem; font-weight: 700; background: var(--brand-teal); color: white; transition: 0.3s; }
.action-btn:hover { background: var(--brand-red); }
.enquiry-form-card { text-align: left; }
.form-group { margin-bottom: 15px; position: relative; }
.form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; outline: none; transition: 0.3s; background: #f9f9f9; font-family: inherit; font-size: 0.95rem; }
.form-control:focus { border-color: var(--brand-teal); background: white; box-shadow: 0 4px 10px rgba(0,0,0,0.05); border-bottom: 3px solid var(--brand-teal); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23406E70%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"); background-repeat: no-repeat; background-position: right 15px top 50%; background-size: 12px auto; color: #555; }
textarea.form-control { resize: vertical; min-height: 100px; }
.submit-btn { width: 100%; padding: 12px; background: var(--brand-red); color: white; border: none; border-radius: var(--btn-radius); font-weight: 700; text-transform: uppercase; cursor: pointer; transition: 0.3s; }
.submit-btn:hover { background: #c0151a; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3); }

/* Footer */
footer { background-color: var(--brand-dark-teal); color: #d0d0d0; padding-top: 80px; text-align: center; position: relative; border-top: 5px solid var(--brand-red); background-image: linear-gradient(rgba(42, 77, 80, 0.92), rgba(42, 77, 80, 0.98)), url('https://www.transparenttextures.com/patterns/topography.png'); background-repeat: repeat; }
.footer-logo-area { display: flex; justify-content: center; margin-bottom: 40px; }
.footer-logo-img { max-width: 90%; height: auto; max-height: 120px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-nav ul { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; }
.footer-nav a { color: #fff; text-transform: uppercase; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; position: relative; }
.footer-nav a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--brand-red); transition: width 0.3s; }
.footer-nav a:hover::after { width: 100%; }
.footer-nav a:hover { color: var(--brand-red); }

/* Footer Contact Fixed */
.footer-contact { 
    display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; 
    margin-top: 40px; /* Spacing from nav */
    margin-bottom: 40px; font-size: 1.1rem; 
}
.footer-contact-item { color: #fff; text-decoration: none; display: flex; align-items: center; gap: 10px; transition: 0.3s; }
.footer-contact-item:hover { color: var(--brand-red); transform: scale(1.05); }
.footer-contact-item:hover i { animation: wiggle 0.5s ease-in-out; color: var(--brand-red); }
.footer-contact i { color: var(--brand-red); font-size: 1.2rem; }

.footer-socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; }
.footer-socials a { width: 45px; height: 45px; background-color: rgba(255,255,255,0.1); color: var(--white); font-size: 1.5rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
.footer-socials a:hover { background-color: var(--brand-red); border-color: var(--brand-red); transform: translateY(-5px); }
.footer-newsletter { margin-bottom: 70px; background: rgba(255, 255, 255, 0.05); display: inline-block; padding: 30px 50px; border-radius: 15px; backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.1); }
.footer-newsletter h4 { color: #fff; margin-bottom: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.newsletter-form { display: flex; justify-content: center; gap: 10px; }
.newsletter-form input { padding: 12px 20px; width: 300px; border: 1px solid rgba(255,255,255,0.3); border-radius: 4px; outline: none; background: rgba(0,0,0,0.2); color: white; }
.newsletter-form button { background-color: var(--brand-red); color: white; border: none; padding: 12px 30px; border-radius: 4px; cursor: pointer; font-weight: 700; text-transform: uppercase; transition: 0.3s; }
.newsletter-form button:hover { background-color: #fff; color: var(--brand-red); }
.footer-bottom { background-color: #1a3537; padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.8rem; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.footer-bottom-links a { margin-right: 20px; color: #aaa; transition: 0.3s; }
.footer-bottom-links a:hover { color: var(--brand-red); }
.scroll-top-btn { position: fixed; bottom: 20px; right: 80px; background-color: var(--brand-red); color: white; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: var(--btn-radius); cursor: pointer; z-index: 999; box-shadow: 0 4px 15px rgba(0,0,0,0.4); }

/* --- SCROLL DOWN INDICATOR (NON-INTERACTIVE) --- */
.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    z-index: 10;
    pointer-events: none; /* Disables clicking/hover interaction */
    user-select: none;    /* Prevents text selection */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-down-arrow span {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.scroll-down-arrow i {
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* =========================================
   MEDIA QUERIES (CRITICAL FOR MOBILE MENU)
   ========================================= */
@media (max-width: 768px) {
    /* 1. Show the Mobile Toggle Button */
    .mobile-toggle { 
        display: block; 
        font-size: 1.8rem; 
        color: white; 
        cursor: pointer;
    }

    /* 2. Hide Desktop Navigation */
    .header-right { 
        display: none; 
    }

    /* 3. Adjust Brand Box for Mobile Header */
    .brand-box { 
        width: 100%; 
        clip-path: none; 
        justify-content: space-between; 
        padding: 0 20px;
    }
    .logo-img { max-height: 60px; }

    /* Other Mobile Adjustments */
    .hero h1 { font-size: 2.5rem; }
    .tour-card { width: 300px; }
    .card-img-wrap { height: 200px; }
    .nav-btn { display: none; }
    .contact-grid { grid-template-columns: 1fr; } 
    .footer-bottom .container { flex-direction: column; gap: 15px; }
    .footer-contact { flex-direction: column; align-items: center; gap: 20px; margin-top: 40px; }
    .newsletter-form { flex-direction: column; align-items: center; }
    .newsletter-form input, .newsletter-form button { width: 100%; margin-bottom: 10px; }
    .footer-newsletter { width: 100%; padding: 20px; }
    .transport-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .brand-name-text { font-size: 2rem; }
    .about-branding::before { font-size: 3.5rem; top: -10px; }
}

@media (min-width: 768px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
    .card-grid-reviews { grid-template-columns: repeat(3, 1fr); }
    .hero h1 { font-size: 4.5rem; }
}


.hero-bg-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
    filter: brightness(0.6);
}

.contact_page_form p {
  margin-bottom: 15px;
}
.contact_page_form .form-group {
  margin-bottom: 0px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item img {
  width: 100%;
  object-fit: cover;
}
.gallery.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.gallery.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.gallery.gallery-columns-1 {
  grid-template-columns: repeat(1, 1fr);
}

@media only screen and (max-width: 767px){

    .hero {
      padding: 30px 0px;
      height: auto !important;
    }
    .gallery{
        grid-template-columns: repeat(2, 1fr);
    }
	.scroll-down-arrow {
	  display: none;
	}

}