/* =========================================
   VARIABLES & DESIGN SYSTEM 2026
========================================= */
:root {
    /* Colors - Safari Premium Theme */
    --clr-gold: #c29562;
    --clr-gold-light: #dfb98e;
    --clr-forest: #223026;
    /* Very dark green/black */
    --clr-forest-light: #2c3e32;
    --clr-sand: #f4eee6;
    --clr-earth: #6b4d31;
    --clr-accent: #b3391d;
    /* Maasai red modern */

    --clr-white: #ffffff;
    --clr-black: #111111;
    --clr-text: #444444;
    --clr-text-light: #777777;

    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Fluid Type via Clamp */
    --text-sm: clamp(0.875rem, 0.8vw + 0.5rem, 1rem);
    --text-base: clamp(1rem, 1vw + 0.6rem, 1.125rem);
    --text-lg: clamp(1.25rem, 1.5vw + 0.8rem, 1.5rem);
    --text-xl: clamp(1.75rem, 2vw + 1rem, 2.5rem);
    --text-2xl: clamp(2.5rem, 3.5vw + 1rem, 3.5rem);
    --text-display: clamp(3rem, 6vw + 1.5rem, 6rem);

    /* Spacing & Layout */
    --section-py: clamp(4rem, 8vw, 8rem);
    --container-px: clamp(1rem, 5vw, 3rem);
    --max-w: 1400px;
    --br: 16px;
    /* Border radius */

    /* Transitions */
    --easing: cubic-bezier(0.8, 0, 0.1, 1);
    --trans-fast: 0.3s var(--easing);
    --trans-slow: 0.6s var(--easing);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-sans);
    color: var(--clr-black);
    line-height: 1.1;
    font-weight: 800;
}

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    color: var(--clr-gold);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utils */
.section-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--section-py) var(--container-px);
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--clr-white);
}

.dark-theme {
    background-color: var(--clr-forest);
    color: var(--clr-white);
}

.dark-theme h2,
.dark-theme h3 {
    color: var(--clr-white);
}

.subtitle {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: var(--text-2xl);
    margin-bottom: 1.5rem;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--trans-fast);
    padding: 12px 24px;
    border: none;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--clr-forest);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: var(--clr-gold);
    color: var(--clr-white);
    transform: translateY(-2px);
}

.btn-solid {
    background-color: var(--clr-gold);
    color: var(--clr-white);
}

.btn-solid:hover {
    background-color: var(--clr-forest);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--clr-white);
}

.btn-glass:hover {
    background: var(--clr-white);
    color: var(--clr-forest);
}

/* =========================================
   HEADER & NAV 
========================================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--trans-fast);
    backdrop-filter: blur(0px);
    /* Initial none */
}

.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);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-white);
    transition: var(--trans-fast);
}

.brand-dot {
    color: var(--clr-gold);
}

.header.scrolled .brand,
.header.scrolled .nav-link {
    color: var(--clr-black);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--clr-white);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--trans-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--clr-gold);
    transition: var(--trans-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--clr-white);
    font-size: 1.8rem;
    cursor: pointer;
}

.header.scrolled .menu-toggle {
    color: var(--clr-black);
}

.mobile-cta {
    display: none;
}

/* =========================================
   HERO / IMMERSIVE VIDEO-LIKE
========================================= */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.ken-burns {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 20s infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(1.1);
    }
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(17, 17, 17, 0.8) 100%);
}

.hero-content {
    text-align: center;
    color: var(--clr-white);
    max-width: 900px;
    padding: 0 var(--container-px);
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-title {
    color: var(--clr-white);
    font-size: var(--text-display);
    margin-bottom: 30px;
}

.hero-title .serif-italic {
    display: block;
    color: var(--clr-white);
    /* Keep white in hero */
}

.hero-desc {
    font-size: var(--text-lg);
    font-weight: 300;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--clr-white);
    opacity: 0.8;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--clr-white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--clr-white);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* =========================================
   TRUST SECTION
========================================= */
.trust-section {
    background-color: var(--clr-forest);
    color: var(--clr-white);
    margin-top: -5px;
    /* fixes potential gap */
}

.trust-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--clr-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.8;
}

.divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* =========================================
   ABOUT - MINIMAL / EDITORIAL
========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: var(--text-xl);
    color: var(--clr-black);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.secondary-text {
    font-size: 1.1rem;
    color: var(--clr-text-light);
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
}

.feature-list i {
    color: var(--clr-gold);
    font-size: 1.4rem;
}

/* Image Stack Offset Design */
.visual {
    position: relative;
}

.image-stack {
    position: relative;
    height: 600px;
}

.image-stack img {
    position: absolute;
    border-radius: var(--br);
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.img-back {
    width: 80%;
    height: 80%;
    top: 0;
    right: 0;
    z-index: 1;
}

.img-front {
    width: 60%;
    height: 60%;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 10px solid var(--clr-sand);
    transition: transform 0.1s;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    right: 50px;
    z-index: 3;
    width: 120px;
    height: 120px;
    background-color: var(--clr-accent);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(179, 57, 29, 0.3);
    border: 4px solid var(--clr-sand);
}

/* =========================================
   BENTO BOX DESTINATIONS GRID
========================================= */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 24px;
    margin-top: 3rem;
}

.bento-item {
    border-radius: var(--br);
    overflow: hidden;
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--trans-slow);
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bento-item.has-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform 1s var(--easing);
}

.bento-item:hover.has-bg img {
    transform: scale(1.05);
}

.bento-item.has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    z-index: -1;
}

.bento-content {
    color: var(--clr-white);
}

.bento-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.bento-content h3 {
    color: var(--clr-white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.bento-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Grid Placements */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
    justify-content: flex-end;
}

.bento-small h3 {
    font-size: 1.4rem;
    margin: 0;
}

.bento-info {
    grid-column: span 1;
    grid-row: span 1;
    background-color: var(--clr-forest);
    color: var(--clr-white);
    justify-content: space-between;
}

.bento-icon {
    font-size: 2.5rem;
    color: var(--clr-gold);
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--clr-gold);
    font-weight: 600;
    margin-top: auto;
}

/* =========================================
   EXPERIENCES (Horizontal Cards)
========================================= */
.experiences-section {
    padding-bottom: 6rem;
}

.cards-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 3rem;
    /* Allows horizontal scroll on mobile */
    overflow-x: auto;
    padding-bottom: 2rem;
    /* Hide scrollbar */
    scrollbar-width: none;
}

.cards-wrapper::-webkit-scrollbar {
    display: none;
}

.experience-card {
    min-width: 300px;
    flex: 1;
    background-color: var(--clr-sand);
    padding: 2.5rem 2rem;
    border-radius: var(--br);
    transition: var(--trans-fast);
}

.experience-card:hover {
    background-color: var(--clr-forest);
    color: var(--clr-white);
    transform: translateY(-10px);
}

.experience-card:hover h4 {
    color: var(--clr-white);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--clr-gold);
    margin-bottom: 1.5rem;
    transition: var(--trans-fast);
}

.experience-card:hover .card-icon {
    background-color: var(--clr-gold);
    color: var(--clr-white);
}

.experience-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* =========================================
   TESTIMONIAL (Glassmorphism)
========================================= */
.testimonial-section {
    background-image: url('https://images.unsplash.com/photo-1517415494207-68b3cc767ebd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.glass-panel {
    position: relative;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--br);
    padding: 4rem 3rem;
    color: var(--clr-white);
    text-align: center;
    z-index: 2;
}

.quote-mark {
    font-size: 4rem;
    color: var(--clr-gold);
    line-height: 0;
    margin-bottom: 2rem;
    display: block;
}

.quote-text {
    font-size: var(--text-lg);
    font-family: var(--font-serif);
    font-style: italic;
    margin-bottom: 2rem;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-gold);
}

.author-info {
    text-align: left;
}

.author-info h5 {
    color: var(--clr-white);
    font-size: 1.1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.stars {
    color: #f1c40f;
    font-size: 0.9rem;
    margin-top: 3px;
}

/* =========================================
   CONTACT / SPLIT SCREEN FORM
========================================= */
.contact-split {
    display: grid;
    grid-template-columns: 4fr 6fr;
}

.contact-info {
    padding: var(--section-py) var(--container-px);
    display: flex;
    align-items: center;
}

.info-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-gold);
}

.method span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.method strong {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Material Design style Modern Form */
.contact-form-area {
    padding: var(--section-py) var(--container-px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modern-form {
    width: 100%;
    max-width: 600px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 0;
}

.form-grid .input-group {
    margin-bottom: 20px;
}


.input-field {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--clr-text);
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    background: transparent;
    font-family: var(--font-sans);
}

.input-label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--clr-text-light);
    font-size: 1rem;
    pointer-events: none;
    transition: 0.2s ease all;
}

.input-field:focus~.input-label,
.input-field:not(:placeholder-shown)~.input-label,
.input-field.has-val~.input-label {
    top: -20px;
    font-size: 0.85rem;
    color: var(--clr-forest);
    font-weight: 600;
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: var(--clr-gold);
    transition: 0.3s ease all;
}

.input-field:focus~.input-highlight {
    width: 100%;
}

/* Select Customization */
.select-group select {
    appearance: none;
    cursor: pointer;
}

.select-icon {
    position: absolute;
    right: 0;
    top: 10px;
    color: var(--clr-text-light);
    pointer-events: none;
}

.active-label {
    top: -20px;
    font-size: 0.85rem;
    color: var(--clr-forest);
    font-weight: 600;
}

/* Checkbox */
.checkbox-wrapper {
    margin-bottom: 30px;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}

.custom-checkbox input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--trans-fast);
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--clr-gold);
    border-color: var(--clr-gold);
}

.custom-checkbox input:checked~.checkmark::after {
    content: '\eb7b';
    /* Remix Icon Check */
    font-family: 'remixicon';
    color: white;
    font-size: 14px;
}

.check-text {
    font-size: 0.85rem;
    color: var(--clr-text-light);
}

/* Tours Checkbox Grid */
.tours-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 16px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    background: rgba(194, 149, 98, 0.08);
}

.checkbox-item input {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--clr-gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: white;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-item input:checked ~ .checkbox-custom {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
}

.checkbox-item input:checked ~ .checkbox-custom::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.checkbox-label {
    font-size: 0.9rem;
    color: var(--clr-text);
    font-weight: 500;
    line-height: 1.5;
    word-wrap: break-word;
}

.checkbox-item input:checked ~ .checkbox-label {
    color: var(--clr-gold);
    font-weight: 600;
}

@media (max-width: 600px) {
    .tours-checkbox-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .checkbox-item {
        padding: 10px;
    }
}

/* Submit Button & Loader */
.form-submit {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.form-submit.loading span,
.form-submit.loading i {
    display: none;
}

.form-submit.loading .loader {
    display: block;
}

.form-success-msg {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
}

/* =========================================
   FOOTER
========================================= */
.footer {
    background-color: var(--clr-black);
    color: var(--clr-white);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin: 1.5rem 0;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-fast);
}

.social-btn:hover {
    background: var(--clr-gold);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    color: var(--clr-white);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--trans-fast);
}

.footer-links a:hover {
    color: var(--clr-gold);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
}

/* =========================================
   ANIMATIONS (REVEAL ON SCROLL)
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.left {
    transform: translateX(-50px);
}

.reveal.right {
    transform: translateX(50px);
}

.reveal.left.active,
.reveal.right.active {
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-large,
    .bento-medium,
    .bento-small,
    .bento-info {
        grid-column: span 2;
        min-height: 300px;
    }

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

    .contact-info {
        padding-bottom: 2rem;
    }

    .contact-form-area {
        padding-top: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(34, 48, 38, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--trans-slow);
        z-index: 1000;
        padding: 4rem 2rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        text-align: center;
    }

    .nav-menu .nav-link {
        font-size: 1.8rem;
        color: var(--clr-white) !important;
        font-family: var(--font-serif);
        font-style: italic;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s var(--easing);
    }

    .nav-menu.active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered link animations */
    .nav-menu.active .nav-list li:nth-child(1) .nav-link { transition-delay: 0.1s; }
    .nav-menu.active .nav-list li:nth-child(2) .nav-link { transition-delay: 0.2s; }
    .nav-menu.active .nav-list li:nth-child(3) .nav-link { transition-delay: 0.3s; }
    .nav-menu.active .nav-list li:nth-child(4) .nav-link { transition-delay: 0.4s; }
    .nav-menu.active .nav-list li:nth-child(5) .nav-link { transition-delay: 0.5s; }

    .menu-toggle {
        display: block;
        z-index: 2001;
        position: relative;
        background: rgba(255, 255, 255, 0.1);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .header-actions .btn {
        display: none;
    }

    .mobile-cta {
        display: flex !important;
        margin-top: 3rem;
        width: 100%;
        max-width: 300px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s var(--easing);
        transition-delay: 0.6s;
    }

    .nav-menu.active .mobile-cta {
        opacity: 1;
        transform: translateY(0);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-stack {
        height: 400px;
    }

    .img-front {
        border-width: 5px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* =========================================
   TOURS & ITINERARI SECTION
========================================= */
.tours-section {
    padding-bottom: 5rem;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.tour-card {
    background: var(--clr-white);
    border-radius: var(--br);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--trans-fast);
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tour-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--easing);
}

.tour-card:hover .tour-img-wrapper img {
    transform: scale(1.05);
}

.tour-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--clr-forest);
    color: var(--clr-white);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.tour-content {
    padding: 2rem;
}

.tour-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--clr-forest);
}

.tour-summary {
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Modal Styles */
.tour-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: visibility 0s 0.3s, opacity 0.3s var(--easing);
}

.tour-modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: visibility 0s 0s, opacity 0.3s var(--easing);
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content-scroll {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    padding: 5vh 20px;
    scrollbar-width: thin;
}

.modal-content {
    background: var(--clr-white);
    width: 100%;
    max-width: 900px;
    margin: auto;
    border-radius: var(--br);
    position: relative;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    transform: translateY(30px);
    transition: transform 0.4s var(--easing);
}

.tour-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--clr-sand);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--clr-accent);
    color: var(--clr-white);
}

.tour-modal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.tour-modal-duration {
    display: inline-block;
    color: var(--clr-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.tour-modal-header h2 {
    font-size: var(--text-2xl);
    color: var(--clr-forest);
    margin-bottom: 10px;
}

.tour-modal-subtitle {
    color: var(--clr-text-light);
    font-size: 1.1rem;
    font-style: italic;
    font-family: var(--font-serif);
}

.itinerary-day {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.day-badge {
    flex-shrink: 0;
    background: var(--clr-forest);
    color: var(--clr-white);
    font-weight: 700;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.2;
    box-shadow: 0 10px 20px rgba(34, 48, 38, 0.2);
}

.day-content {
    background: var(--clr-sand);
    padding: 2rem;
    border-radius: var(--br);
    flex-grow: 1;
}

.day-content p {
    margin-bottom: 1rem;
    color: var(--clr-text);
}

.accommodation {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.accommodation ul {
    list-style: none;
}

.accommodation li {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.tour-inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 3rem 0;
}

.inclusions-box, .exclusions-box, .tour-highlights-box {
    background: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--br);
    padding: 2rem;
}

.inclusions-box h4, .exclusions-box h4, .tour-highlights-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.check-list li, .cross-list li, .dot-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

.cross-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #c62828;
    font-weight: bold;
}

.dot-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--clr-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .itinerary-day {
        flex-direction: column;
    }
    .day-badge {
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
    }
    .tour-inclusions-grid {
        grid-template-columns: 1fr;
    }
    .modal-content {
        padding: 2rem 1.5rem;
    }
}

/* --- MASONRY GALLERY SECTION --- */
.gallery-masonry-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 280px;
    gap: 1.5rem;
    grid-auto-flow: dense;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    cursor: pointer;
}

.masonry-item:nth-child(1) { animation-delay: 0.1s; }
.masonry-item:nth-child(2) { animation-delay: 0.2s; }
.masonry-item:nth-child(3) { animation-delay: 0.3s; }
.masonry-item:nth-child(4) { animation-delay: 0.4s; }
.masonry-item:nth-child(5) { animation-delay: 0.5s; }
.masonry-item:nth-child(6) { animation-delay: 0.6s; }
.masonry-item:nth-child(7) { animation-delay: 0.7s; }
.masonry-item:nth-child(8) { animation-delay: 0.8s; }

.masonry-item.item-tall {
    grid-row: span 2;
}

.masonry-item.item-wide {
    grid-column: span 2;
}

.masonry-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--easing);
    display: block;
}

.masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(194, 149, 98, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.masonry-item:hover img {
    transform: scale(1.12) rotate(1deg);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .masonry-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        grid-auto-rows: 220px;
        gap: 1.2rem;
    }

    .masonry-item.item-tall {
        grid-row: span 1;
    }

    .masonry-item.item-wide {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 1rem;
    }

    .masonry-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

@media (max-width: 400px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
}

/* --- CAROUSEL GALLERY SECTION --- */
.gallery-carousel-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.05);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.carousel-slide img,
.carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(194, 149, 98, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: rgba(194, 149, 98, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Dots Navigation */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

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

.carousel-dots .dot.active {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    width: 32px;
    border-radius: 6px;
}

.carousel-dots .dot:hover {
    border-color: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-dots {
        bottom: 15px;
        gap: 8px;
    }

    .carousel-dots .dot {
        width: 10px;
        height: 10px;
    }

    .carousel-dots .dot.active {
        width: 28px;
    }
}

@media (max-width: 500px) {
    .carousel-container {
        border-radius: 16px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .carousel-prev {
        left: 8px;
    }

    .carousel-next {
        right: 8px;
    }

    .carousel-dots {
        bottom: 12px;
        gap: 6px;
    }

    .carousel-dots .dot {
        width: 8px;
        height: 8px;
    }

    .carousel-dots .dot.active {
        width: 24px;
    }
}

/* --- PREMIUM LANGUAGE DROPDOWN (TEXT ONLY) --- */
.lang-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
}

.lang-selected {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--clr-white);
    padding: 8px 18px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    min-width: 120px;
    backdrop-filter: blur(10px);
}

.header.scrolled .lang-selected {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--clr-black);
}

.lang-selected:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--clr-gold);
}

.header.scrolled .lang-selected:hover {
    background: rgba(0, 0, 0, 0.08);
}

.lang-selected i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    color: var(--clr-gold);
    margin-left: auto;
}

.lang-dropdown.active .lang-selected i {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: 55px;
    right: 0;
    background: var(--clr-white);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    width: 170px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2000;
    overflow: hidden;
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.05);
}

.lang-dropdown.active .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.2s ease;
    color: var(--clr-black);
    font-size: 0.9rem;
    font-weight: 600;
}

.lang-option:hover {
    background: var(--clr-sand);
    color: var(--clr-gold);
    transform: translateX(5px);
}

.lang-option.active {
    background: rgba(194, 149, 98, 0.1);
    color: var(--clr-gold);
}

/* Hide Google Translate original UI elements */
body { top: 0 !important; }
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon, #goog-gt-tt, .goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background-color: transparent !important; box-shadow: none !important; }

@media (max-width: 500px) {
    .header-actions .btn-primary { display: none; }
    .lang-selected { padding: 6px 10px; min-width: 75px; }
}