/* styles.css - Map Adventures - Modern Adventure Travel Style */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to bottom, #c7eec3, #c3ddc0);
}

/* Top Bar - Icons always next to text */
.top-bar {
    background-color: #c7eec3;
    color: black;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.top-bar .contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar .contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;                 /* Icon + text spacing */
    white-space: nowrap;
}

.top-bar .contact-info i {
    color: #225f8b;
    font-size: 1.25rem;
}

/* Social icons */
.top-bar .social-media {
    display: flex;
    gap: 18px;
}

.top-bar .social-media a {
    color: #225f8b;
    font-size: 1.4rem;
    transition: color 0.3s;
}

.top-bar .social-media a:hover {
    color: #20b2aa;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column; /* Stack vertically */
        text-align: center;
        padding: 15px 10px;
        gap: 12px;
    }

    .top-bar .contact-info {
        flex-direction: column;
        gap: 8px;
        font-size: 0.9rem;
    }

    .top-bar .social-media {
        margin-top: 5px;
        gap: 20px;
        justify-content: center;
    }

    .top-bar .social-media a {
        font-size: 1.5rem; /* Slightly larger icons for touch */
    }
}

@media (max-width: 480px) {
    .top-bar .contact-info span {
        font-size: 0.85rem;
    }

    .top-bar .social-media a {
        font-size: 1.4rem;
    }
}

/* Page Hero (used on both index & content) */
.page-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(34, 139, 34, 0), rgba(0, 0, 0, 0.55));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.7);
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 1.8rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

/* Hamburger Menu Styling */
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Nav Links (desktop) */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px 35px;
    transition: all 0.4s ease;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-links a:hover {
    background: rgba(255, 215, 0, 0.25);
    color: #ffd700;
}

/* Mobile Menu */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(34, 139, 34, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease;
        z-index: 999;
        gap: 30px;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li a {
        font-size: 1.6rem;
        padding: 15px 30px;
    }
}

/* General Mobile Optimizations */

/* Reduce hero height on mobile */
@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.4rem;
    }
}

/* Stack introduction grid */
@media (max-width: 992px) {
    .introduction-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .text-column {
        order: 2;
    }

    .image-column {
        order: 1;
    }
}

/* Section padding & spacing on mobile */
@media (max-width: 768px) {
    .section-hero {
        padding: 60px 15px 50px;
        margin-bottom: 80px;
    }

    h2 {
        font-size: 2.4rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    .content-wrapper p, .activity-list li {
        font-size: 1rem;
        line-height: 1.7;
    }

    .dofe-cards {
        grid-template-columns: 1fr;
    }
}

/* Tables become stacked cards on mobile */
@media (max-width: 768px) {
    table {
        border-spacing: 0 15px;
    }

    thead {
        display: none;
    }

    tbody tr {
        display: block;
        margin-bottom: 20px;
        border-radius: 12px;
        background: white;
        box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }

    tbody td {
        display: block;
        text-align: right;
        padding: 15px 20px;
        position: relative;
        border: none;
    }

    tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 20px;
        font-weight: bold;
        color: #228B22;
        text-align: left;
    }
}

/* Images full-width & scale better */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Footer mobile stacking */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Go to Top button mobile position */
@media (max-width: 768px) {
    #go-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
}

/* Main Navigation */
.main-nav {
    background-color: #b0d8ac; /* Forest green */
    padding: 15px 0;
    margin-bottom: 5px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 35px;
}

.main-nav a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 4px;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: rgba(255, 215, 0, 0.25);
    color: #20b2aa;
}

/* Section Heroes */
.section-hero {
    padding: 80px 20px;
    position: relative;
    color: black;
}

.section-hero .content-wrapper {
    position: relcative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.section-hero h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    color: #ffffff;
}

.section-hero h3 {
    font-size: 2.2rem;
    margin: 40px 0 20px;
}

/* Activity Lists */
.activity-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.activity-list li {
    font-size: 1.25rem;
    margin: 14px 0;
    display: flex;
    align-items: center;
}

.activity-list i {
    margin-right: 14px;
    color: #225f8b;
    font-size: 1.5rem;
    min-width: 30px;
}

/* Modern Table Styles - All Sections */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px; /* Space between rows */
    margin: 40px 0;
    background: transparent;
}

thead th {
    background: linear-gradient(135deg, #228B22, #006400); /* Green gradient for headers */
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 20px;
    text-align: left;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

tbody tr {
    background: white;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

tbody tr:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

tbody td {
    padding: 18px 20px;
    color: #000000;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

tbody tr:last-child td {
    border-bottom: none;
}

/* Alternating rows for better readability */
tbody tr:nth-child(odd) {
    background: #d4d4d0; /* Very light green tint */
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    thead {
        display: none;
    }
    tbody tr {
        display: block;
        margin-bottom: 20px;
        border-radius: 12px;
    }
    tbody td {
        display: block;
        text-align: right;
        position: relative;
        padding-left: 50%;
        border: none;
    }
    tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 20px;
        width: 45%;
        font-weight: bold;
        text-align: left;
        color: #228B22;
    }
    tbody td:first-child {
        border-top: 1px solid #eee;
        border-radius: 12px 12px 0 0;
    }
    tbody td:last-child {
        border-radius: 0 0 12px 12px;
    }
}

/* Images in sections */
.section-hero img,
main img {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

/* Form */
form {
    max-width: 700px;
    margin: 0 auto;
}

form label {
    display: block;
    margin: 16px 0 8px;
    font-weight: bold;
}

form input,
form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

form button {
    background: #225f8b;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
}

form button:hover {
    background: #ffd700;
    color: #e7ece7;
}

/* Enhanced Footer - Side-by-side columns on desktop only */
.site-footer {
    color: #2e8b57;
    padding: 80px 20px 40px;
    margin-top: 100px; /* Extra space above footer */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Side-by-side on desktop, stack on mobile */
    gap: 50px 40px;
    text-align: center;
}

.footer-column h4 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #20b2aa;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-column p,
.footer-column a {
    margin-bottom: 14px;
    font-size: 1.05rem;
    color: #2e8b57;
    text-decoration: none;
}

.footer-column a:hover {
    color: #20b2aa;
    text-decoration: underline;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #2e8b57;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #20b2aa;
}

.social-icons {
    display:grid;
    gap: 20px;
    margin-top: 10px;
}

.social-icons a {
    color: #2e8b57;
    font-size: 2rem;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    color: #20b2aa;
    transform: scale(1.15);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 0.95rem;
    color: #bbb;
}

/* Footer Contact Lines – Fixed icon alignment + clickable */
.footer-column .contact-line {
    display: center;
    align-items: center;
    gap: 12px;                /* Space between icon and text */
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.footer-column .contact-line i {
    font-size: 1.4rem;
    min-width: 24px;          /* Ensures icons take consistent space */
    color: #20b2aa;           /* Gold accent – optional, change to white if preferred */
}

.contact-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #20b2aa;
    text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .footer-column .contact-line {
        font-size: 1rem;
        gap: 10px;
    }
}

/* Increase spacing between sections for clarity */
.section-hero {
    padding: 100px 20px 80px; /* More top/bottom padding */
    margin-bottom: 120px;     /* Big space between sections on desktop */
    border-bottom: 1px solid rgba(255,255,255,1); /* Subtle divider line (optional) */
}

/* Reduce spacing on smaller screens */
@media (max-width: 992px) {
    .section-hero {
        margin-bottom: 80px;
        padding: 80px 15px 60px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .section-hero {
        margin-bottom: 60px;
    }
}

/* Introduction Grid */
.introduction-grid {
    display:block;
    gap: 50px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.text-column {
    padding: 20px 0;
}

.image-column img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-column img:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #225f8b;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(34,139,34,0.3);
}

.cta-button:hover {
    background-color: #FFD700;
    color: #1a3c1a;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}

/* Responsive grid stacking */
@media (max-width: 992px) {
    .introduction-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Extra spacing between sections */
.section-hero {
    padding: 100px 20px 80px;
    
    margin-bottom: 20px;         /* ← increased spacing */
}

/* Fade-in for tables/lists if needed */
table, .activity-list {
    opacity: 0;
    transition: opacity 0.8s ease;
}

[data-aos].aos-animate table,
[data-aos].aos-animate .activity-list {
    opacity: 1;
}

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

.dofe-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.dofe-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dofe-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-header {
    background: #228B22;
    color: white;
    padding: 24px;
    text-align: center;
}

.card-header h4 {
    margin: 0;
    font-size: 1.6rem;
}

.card-header .price {
    display: block;
    margin-top: 8px;
    font-size: 1.4rem;
    font-weight: bold;
}

.card-details {
    list-style: none;
    padding: 20px;
}

.card-details li {
    padding: 12px 0;
    color: #000000;
    border-bottom: 1px solid #363232;
}

.card-details strong {
    color: #000000;
}

.requirements {
    padding: 20px;
    background: #ffffff;
    color: #000000;
    font-size: 0.95rem;
    border-top: 1px solid #363232;
}

/* Color variations */
.bronze .card-header { background: linear-gradient(135deg, #cd7f32, #b8860b); }
.silver .card-header { background: linear-gradient(135deg, #c0c0c0, #a8a8a8); }
.gold   .card-header { background: linear-gradient(135deg, #ffd700, #d4af37); }

/* Go to Top Button */
#go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #225f8b;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#go-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#go-to-top:hover {
    background-color: #FFD700;
    color: #228B22;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Smooth scroll behavior (fallback for JS) */
html {
    scroll-behavior: smooth;
}

/* Center only the Contact Us heading */
.centered-heading {
    text-align: center;
    margin: 0 auto 40px; /* adds nice space below heading */
    width: fit-content;  /* ensures it doesn't stretch full width */
}

/* Optional: Make it look even better on mobile */
@media (max-width: 768px) {
    .centered-heading {
        font-size: 2.2rem; /* slightly smaller on phones if needed */
        margin-bottom: 30px;
    }
}

.image-carousel {
    overflow-x: auto;                /* enables horizontal scroll */
    scroll-snap-type: x mandatory;   /* snaps to each image */
    -webkit-overflow-scrolling: touch; /* smooth iOS scrolling */
    scrollbar-width:auto;           /* nicer scrollbar (Firefox) */
    scrollbar-color: #888 transparent;
    border-radius: 12px;             /* optional */
    box-shadow: 0 4px 15px rgba(0,0,0,0.15); /* optional depth */
}

.carousel-track {
    display: flex;
    gap: 12px;                       /* space between images */
    padding: 8px;
}

.carousel-track img {
    flex: 0 0 auto;
    width: 320px;                    /* or 80vw / 400px — experiment */
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    scroll-snap-align: start;
}

/* Hide scrollbar on WebKit browsers if you want clean look */
.image-carousel::-webkit-scrollbar {
    height: 8px;
}
.image-carousel::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

/* Carousel Column */
.carousel-column {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Swiper Overrides */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.swiper-slide:hover img {
    transform: scale(1.08); /* Hover zoom effect */
}

/* Arrows Styling */
.swiper-button-next,
.swiper-button-prev {
    color: #225f8b !important;
    background: #205a83(32, 90, 131,0.6);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #c7eec3;
    color: #228B22 !important;
}

/* Pagination Dots */
.swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #FFD700;
}

/* Full-Screen Modal (lightbox) */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
}

.lightbox img:hover {
    transform: scale(1.06);
    box-shadow: 0 30px 80px rgba(48, 148, 185, 0.5);
    border: 4px solid #4e9fd9;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: white;
    font-size: 48px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: #225f8b;
    transform: rotate(90deg) scale(1.25);
}


.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    font-size: 60px;
    color: #225f8b;
    cursor: pointer;
    padding: 15px 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    transition: all 0.3s ease;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #225f8b;
    color: #1a3c1a;
    transform: scale(1.18);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
}

/* IBAN Certificate – matches your official document */
.iban-certificate {
    background: #f8f9fa;
    border: 3px solid #0052cc;
    border-radius: 12px;
    padding: 35px 25px;
    margin: 40px auto;
    max-width: 700px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    text-align: center;
    font-family: Arial, sans-serif;
}

.iban-certificate h3 {
    color: #0052cc;
    font-size: 1.8rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 10px;
}

.iban-grid {
    display: grid;
    gap: 12px;
    text-align: left;
    margin-bottom: 25px;
}

.iban-row {
    font-size: 1.05rem;
    padding: 8px 0;
    border-bottom: 1px dashed #ccc;
}

.iban-row strong {
    color: #0052cc;
    width: 220px;
    display: inline-block;
}

.iban-copy {
    font-family: monospace;
    font-weight: bold;
    color: #1a3c1a;
}

.iban-note {
    font-style: italic;
    color: #555;
    margin: 20px 0 15px;
}

.bank-name {
    font-weight: bold;
    color: #0052cc;
    margin-top: 15px;
}

.copy-btn {
    background: #0052cc;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: #ffd700;
    color: #1a3c1a;
    transform: translateY(-2px);
}

.bank-logo {
    max-width: 220px;
    max-height: 220px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.ADD-logo{
    max-width: 120px;
    max-height: 120px;
    display: block;
}

/* Video Background Section */
.section-hero.video-bg {
    position: relative;
    height: 100vh;           /* full screen height */
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;       /* fills the screen perfectly */
    z-index: 1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .section-hero.video-bg {
        height: 85vh;
    }
    .background-video {
        object-position: center;
    }
}

/* Hero Background Video */
.page-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Make sure overlay still works for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 60, 26, 0.45), rgba(0, 0, 0, 0.55));
    z-index: -1;
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    cursor: pointer;
}

.preview-video {
    width: 100%;
    display: block;
    pointer-events: none;           /* ← THIS IS THE FIX */
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s;
    z-index: 2;
}

.play-overlay i { 
    font-size: 85px; 
    color: #225f8b; 
    margin-bottom: 10px;
    opacity: 0.8;
}

.play-overlay span { 
    font-size: 1.3rem; 
    font-weight: 600; 
}

.video-container:hover .play-overlay {
    background: rgba(0,0,0,0.25);
}

/* Hero Logo */
.hero-logo {
    max-width: 420px;           /* Adjust size if needed */
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.3));
    transition: transform 0.4s ease;
}

.hero-logo:hover {
    transform: scale(1.03);
}

/* Make sure it stays centered and responsive */
.hero-content {
    text-align: center;
}

/* Mobile size adjustment */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 320px;
    }
}

/* ==================== HOVER-ONLY DROPDOWN ==================== */
.dropdown {
    position: relative;
}

.dropdown-link {
    align-items: center;
    gap: 8px;
}

.arrow {
    font-size: 0.85rem;
    transition: transform 0.3s;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* Submenu - Completely hidden until hover */
.dropdown-content {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #b0d8ac;
    min-width: 430px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 999;
    padding: 8px 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block !important;
    opacity: 1;
}

/* Submenu items */
.dropdown-content li {
    list-style: none;
}

.dropdown-content a {
    color: rgb(0, 0, 0);
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-content a:hover {
    background-color: rgba(255, 215, 0, 0.25);
    color: #20b2aa;
    padding-left: 28px;
}

/* Camps video container */
.camps-video {
    margin: 40px auto;
    max-width: 900px;
}

/* ==================== FINAL MOBILE OPTIMIZATIONS (2026) ==================== */

/* Dropdown - Click to open on mobile (hover stays for desktop) */
@media (max-width: 992px) {
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background-color: #1a3c1a;
        margin-top: 10px;
        border-radius: 8px;
        width: 100%;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-link {
        justify-content: space-between;
    }
}

/* Make dropdown clickable on mobile */
.dropdown {
    cursor: pointer;
}

/* IBAN Certificate - Mobile friendly */
@media (max-width: 768px) {
    .iban-certificate {
        padding: 25px 15px;
        margin: 30px 10px;
        font-size: 0.95rem;
    }
    
    .iban-grid {
        gap: 8px;
    }
    
    .copy-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .bank-logo {
        max-width: 180px;
    }
}

/* Video Container + Modal - Mobile */
@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
        margin: 30px 10px;
        border-radius: 12px;
    }
    
    .play-overlay i {
        font-size: 65px;
    }
    
    .play-overlay span {
        font-size: 1.1rem;
    }
}

/* Video Full-Screen Modal on phones */
@media (max-width: 768px) {
    .video-modal video {
        max-width: 98%;
        max-height: 85vh;
    }
}

/* Image Lightbox - Full screen on mobile */
@media (max-width: 768px) {
    .lightbox img {
        max-width: 98%;
        max-height: 88vh;
        border-radius: 8px;
    }
    
    .lightbox .close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
}

/* Hero Logo on very small phones */
@media (max-width: 480px) {
    .hero-logo {
        max-width: 280px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

/* Extra spacing & readability on phones */
@media (max-width: 480px) {
    .section-hero {
        padding: 60px 12px 50px;
        margin-bottom: 50px;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .content-wrapper p {
        font-size: 1rem;
        line-height: 1.65;
    }
}

@media (min-width: 993px) {
    .introduction-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==================== MOBILE HERO FALLBACK (No Video) ==================== */
@media (max-width: 992px) {
    .hero-video {
        display: none !important;
    }

    .page-hero {
        background-image: url('images/IMG_0569.jpg') !important;
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }
}

/* ==================== DISABLE AOS ANIMATIONS ON MOBILE ONLY ==================== */
/* Improves performance & reduces lag on phones & tablets */

@media (max-width: 992px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .aos-animate {
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Also disable any remaining AOS delays */
    [data-aos^="fade"],
    [data-aos^="zoom"],
    [data-aos^="slide"] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #228B22;
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-size: 1.1rem;
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    white-space: nowrap;
}

.toast.show {
    display: flex;
    animation: toastPop 0.4s ease;
}

@keyframes toastPop {
    0% { transform: translateX(-50%) scale(0.8); opacity: 0; }
    100% { transform: translateX(-50%) scale(1); opacity: 1; }
}