/* ==========================================================
   RESET & VARIABLES
========================================================== */
:root {
    --primary: #0B2545;       /* Deep Navy Blue */
    --accent: #C5A880;        /* Safari Gold / Sand */
    --accent-hover: #b09165;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --bg-light: #F9F9F9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease-in-out;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Typography & Headings */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 2.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ==========================================================
   HEADER & NAVIGATION (LUXURY)
========================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease-in-out;
    padding: 25px 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo img {
    height: 45px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text span {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.header.scrolled .logo-text span {
    color: var(--primary);
}

.logo-text small {
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    position: relative;
    color: var(--white);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.header.scrolled .nav-link {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-btn {
    background: var(--accent);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: transparent;
    color: var(--accent);
}

.header.scrolled .nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.header.scrolled .hamburger span {
    background: var(--primary);
}

/* ==========================================================
   LANGUAGE SWITCHER & GOOGLE TRANSLATE OVERRIDES
========================================================== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    transition: var(--transition);
    position: relative;
}

.lang-switcher::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    height: 15px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.header.scrolled .lang-switcher::after {
    background: rgba(11, 37, 69, 0.2);
}

.header.scrolled .lang-switcher {
    color: var(--primary);
}

.lang-switcher select,
.mobile-lang-switcher select {
    background: transparent;
    border: none;
    color: inherit;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 5px;
}

.lang-switcher select option,
.mobile-lang-switcher select option {
    color: var(--primary);
    background: var(--white);
    font-weight: 500;
}

.mobile-lang-switcher {
    display: none;
    position: absolute;
    top: 22px;
    right: 70px;
    align-items: center;
    gap: 6px;
    color: var(--white);
    z-index: 1001;
}

.header.scrolled .mobile-lang-switcher {
    top: 15px;
    color: var(--primary);
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* ==========================================================
   PAGE HERO (For About, Destinations, etc.)
========================================================== */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-color: var(--primary);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 37, 69, 0.6), rgba(11, 37, 69, 0.9));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content .subtitle {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ==========================================================
   COUNTRY SHOWCASE (ALTERNATING LUXURY LAYOUT)
========================================================== */
.country-showcase {
    padding: 120px 0 60px;
}

.country-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.country-row:last-child {
    margin-bottom: 0;
}

.country-image img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.country-info h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.country-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.country-highlights {
    margin-bottom: 30px;
}

.country-highlights li {
    margin-bottom: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.country-highlights i {
    color: var(--accent);
}

/* ==========================================================
   TRAVEL SEASON SECTION
========================================================== */
.season-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.season-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: var(--transition);
}

.season-card:hover {
    transform: translateY(-5px);
}

.season-icon {
    background: rgba(197, 168, 128, 0.1);
    color: var(--accent);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.season-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.season-content .months {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.season-content p {
    color: var(--text-light);
    font-size: 1rem;
}

/* ==========================================================
   OUR STORY SECTION
========================================================== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image img {
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* ==========================================================
   TEAM SECTION
========================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    background-color: var(--bg-light);
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team-info span {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ==========================================================
   CTA BANNER
========================================================== */
.cta-banner {
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    background: url('../assets/images/hero-slide-3.jpg') center/cover fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 37, 69, 0.85);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================
   HERO SLIDER (Used on Index page)
========================================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: var(--primary);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 37, 69, 0.8) 0%, rgba(11, 37, 69, 0.3) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.slide-content .subtitle {
    color: var(--accent);
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.slide-content h1 {
    font-size: 4rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--accent);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

/* ==========================================================
   FEATURED SAFARIS (Cards)
========================================================== */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.tour-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-10px);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-duration,
.popular-badge {
    position: absolute;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

.tour-duration {
    bottom: 15px;
    right: 15px;
    background: rgba(11, 37, 69, 0.9);
}

.popular-badge {
    top: 15px;
    left: 15px;
    background: var(--accent);
}

.tour-content {
    padding: 25px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.tour-meta .rating {
    color: #f39c12;
    font-weight: 600;
}

.tour-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.tour-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.tour-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.tour-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.tour-link:hover {
    color: var(--accent);
}

.book-btn {
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.book-btn:hover {
    background: var(--accent);
}

/* ==========================================================
   DESTINATIONS GRID
========================================================== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.destination-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    background-color: var(--bg-light);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

.destination-overlay h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.destination-overlay p {
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================
   FEATURES / WHY CHOOSE US
========================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(197, 168, 128, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-5px);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==========================================================
   STATS PARALLAX
========================================================== */
.stats {
    background: linear-gradient(rgba(11, 37, 69, 0.9), rgba(11, 37, 69, 0.9)), var(--primary);
    color: var(--white);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box h2 {
    display: inline-block;
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-box span {
    font-size: 3rem;
    color: var(--accent);
    font-family: var(--font-heading);
}

.stat-box p {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================
   BOOKING SECTION
========================================================== */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.booking-info h2 {
    font-size: 2.2rem;
    margin: 10px 0 20px;
}

.booking-perks {
    margin-top: 30px;
}

.booking-perks li {
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-perks i {
    color: var(--accent);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
}

/* ==========================================================
   FOOTER
========================================================== */
.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.4rem;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    align-items: center;
}

.contact-info i {
    color: var(--accent);
}

.social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* ==========================================================
   FLOATING ELEMENTS & ANIMATIONS
========================================================== */
.whatsapp-float,
.back-to-top {
    position: fixed;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 99;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.whatsapp-float {
    right: 30px;
    background: #25D366;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.back-to-top {
    right: 90px;
    background: var(--primary);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================
   SAFARI SEARCH SECTION
========================================================== */
.safari-search-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.search-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.search-box i {
    position: absolute;
    left: 20px;
    color: var(--accent);
    font-size: 1.2rem;
}

.search-box input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: none;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    background: transparent;
    transition: var(--transition);
}

.search-box input::placeholder {
    color: var(--text-light);
}

.search-box input:focus {
    background: rgba(197, 168, 128, 0.05);
}

/* ==========================================================
   SAFARI FILTERS SECTION
========================================================== */
.safari-filters-section {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.filters-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--bg-light);
    color: var(--primary);
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* ==========================================================
   SAFARI LIST & GRID
========================================================== */
.safari-list {
    padding: 80px 0;
}

.safari-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.safari-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.safari-card:hover {
    transform: translateY(-10px);
}

.safari-card.hidden {
    display: none;
}

.safari-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.safari-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.safari-card:hover .safari-image img {
    transform: scale(1.05);
}

.safari-code,
.safari-days {
    position: absolute;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(11, 37, 69, 0.9);
    border-radius: 3px;
}

.safari-code {
    top: 15px;
    left: 15px;
}

.safari-days {
    bottom: 15px;
    right: 15px;
    background: var(--accent);
}

.safari-content {
    padding: 25px;
}

.safari-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.safari-meta .rating {
    color: #f39c12;
    font-weight: 700;
}

.safari-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.safari-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.safari-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.safari-tags span {
    background: rgba(197, 168, 128, 0.1);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.safari-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* ==========================================================
   GALLERY FILTERS SECTION
========================================================== */
.gallery-filters-section {
    padding: 50px 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ==========================================================
   GALLERY GRID (MASONRY LAYOUT)
========================================================== */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    animation: fadeIn 0.6s ease;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-light);
    transition: var(--transition);
    cursor: pointer;
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(11, 37, 69, 0.95), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(197, 168, 128, 0.9);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
    z-index: 5;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
}

.gallery-zoom:hover {
    background: var(--accent);
    transform: translate(-50%, -50%) scale(1.1);
}

/* ==========================================================
   LIGHTBOX MODAL
========================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--accent);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1005;
}

.close-lightbox:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(197, 168, 128, 0.8);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1005;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==========================================================
   QUICK CONTACT SECTION
========================================================== */
.quick-contact {
    padding: 60px 0;
    background: var(--white);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quick-contact-card {
    background: linear-gradient(135deg, rgba(197, 168, 128, 0.1) 0%, rgba(11, 37, 69, 0.05) 100%);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(197, 168, 128, 0.2);
    transition: var(--transition);
}

.quick-contact-card:hover {
    background: linear-gradient(135deg, rgba(197, 168, 128, 0.15) 0%, rgba(11, 37, 69, 0.1) 100%);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.quick-contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.quick-contact-card .highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.quick-contact-card .small-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ==========================================================
   CONTACT SECTION
========================================================== */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ==========================================================
   CONTACT FORM
========================================================== */
.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.9rem;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
    flex: 1;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: none;
    flex: 1;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.form-note {
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid #27ae60;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-note i {
    color: #27ae60;
}

/* ==========================================================
   CONTACT INFO SECTION (RIGHT SIDE)
========================================================== */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

.info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box h3 i {
    color: var(--accent);
}

.hours-list,
.response-list,
.reasons-list {
    list-style: none;
}

.hours-list li,
.response-list li,
.reasons-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-light);
}

.hours-list li:last-child,
.response-list li:last-child,
.reasons-list li:last-child {
    border-bottom: none;
}

.hours-list span,
.response-list strong {
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.social-box {
    text-align: center;
}

.social-links-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links-contact a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ==========================================================
   FAQ SECTION
========================================================== */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 50px;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--accent) 0%, rgba(197, 168, 128, 0.5) 100%);
}

.faq-question:hover h3 {
    color: var(--white);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0;
    flex: 1;
    transition: var(--transition);
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 20px;
    background: var(--white);
    color: var(--text-light);
    display: none;
    animation: slideDown 0.3s ease;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================
   RESPONSIVE DESIGN (TABLET)
========================================================== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .booking-wrapper,
    .story-grid,
    .country-row,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .season-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .country-row {
        gap: 40px;
        margin-bottom: 80px;
    }

    .country-row.reverse .country-image {
        order: -1;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-large {
        flex: initial;
    }
}

/* ==========================================================
   RESPONSIVE DESIGN (MOBILE)
========================================================== */
@media (max-width: 850px) {
    .hamburger {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .mobile-lang-switcher {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(11, 37, 69, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.4s ease-in-out;
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .season-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .safari-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-image {
        height: 200px;
    }

    .filters-wrapper {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .close-lightbox {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container,
    .info-box {
        padding: 25px;
    }

    .contact-wrapper {
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .header {
        padding: 15px 0;
    }

    .logo img {
        height: 35px;
    }

    .logo-text span {
        font-size: 1.2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .country-image img {
        height: 300px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .tour-content h3 {
        font-size: 1.1rem;
    }

    .safari-content h3 {
        font-size: 1.1rem;
    }

    .team-card img {
        height: 250px;
    }

    .story-content h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .stats-grid {
        gap: 20px;
    }

    .stat-box h2 {
        font-size: 2.5rem;
    }

    .stat-box span {
        font-size: 2rem;
    }
}