:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #2a2a2a;
    --accent: #ffffff;
    --accent-light: #ff8c42;
    --accent-dark: #e55a2b;
    --orange-primary: #ff6b35;
    --orange-light: #ff8c42;
    --text-light: #ffffff;
    --text-muted: #ffffff;
    --border: #333;
    --orange-gradient: linear-gradient(135deg, #ff6b35, #ff8c42);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.7);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    z-index: 1001;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;   
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(175deg);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(25deg);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;

    font-family: 'Playfair Display', serif;
}

.nav-links a:hover {
    color: var(--orange-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-gradient);
    transition: width 0.3s ease;
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
    list-style: none;
    margin-top: 10px;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange-primary);
    border-left-color: var(--orange-primary);
    transform: translateX(5px);
}

.dropdown-menu a::after {
    display: none;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 30px;
    justify-content: space-around;
    padding: 5px 0;
}

.burger-line {
    width: 100%;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Burger Menu Animation to X */
.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--orange-primary);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--orange-primary);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
}

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

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 30px 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.mobile-nav.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 28px;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.mobile-nav-links a:hover {
    color: var(--orange-primary);
    transform: scale(1.1);
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--orange-gradient);
    transition: width 0.3s ease;
}

.mobile-nav-links a:hover::after {
    width: 80%;
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-dropdown-toggle i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    margin-top: 15px;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 200px;
}

.mobile-dropdown-menu li {
    margin: 15px 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-dropdown-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-dropdown-menu li:nth-child(2) { transition-delay: 0.2s; }
.mobile-dropdown-menu li:nth-child(3) { transition-delay: 0.3s; }
.mobile-dropdown-menu li:nth-child(4) { transition-delay: 0.4s; }

.mobile-dropdown-menu a {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    border-left: 2px solid var(--orange-primary);
    padding-left: 15px;
}

.mobile-dropdown-menu a:hover {
    color: var(--orange-primary);
    transform: scale(1.05);
}

.mobile-dropdown-menu a::after {
    display: none;
}

/* Always open mobile dropdown */
.mobile-dropdown-always-open {
    max-height: 200px !important;
    overflow: visible !important;
}

.mobile-dropdown-always-open li {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.mobile-dropdown-open .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hero Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 107, 53, 0.4), rgba(0, 150, 255, 0.4));
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none; /* Allow clicks to pass through the container */
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto; /* Re-enable clicks for buttons */
    opacity: 0.8;
}

.carousel-arrow:hover {
    background: rgba(255, 140, 66, 0.3);
    border-color: rgba(255, 140, 66, 0.5);
    transform: scale(1.1);
    opacity: 1;
}

.carousel-arrow:active {
    transform: scale(0.95);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 107, 53, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 10;
    color: white;
    text-align: center;
    opacity: 0.7;
    animation: fadeInOut 4s infinite;
}

.scroll-hint p {
    font-size: 0.9rem;
    margin: 0 0 5px 0;
    font-weight: 300;
}

.scroll-hint i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.3; }
}

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

.indicator:hover {
    background: rgba(255, 107, 53, 0.7);
    transform: scale(1.2);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-logo {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-logo-img {
    height: clamp(60px, 12vw, 200px);
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(25deg);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: #ffffff;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.location {
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

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

/* Section Styling */
.section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

/* Add subtle dark overlay to sections for better text visibility */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 1;
}

/* Ensure section content appears above overlay */
.section > * {
    position: relative;
    z-index: 2;
}

.section.intro {
    background: linear-gradient(rgba(0, 150, 255, 0.4), rgba(45, 80, 22, 0.3)), url('assets-adrenaland/canyoning/40.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section.eco-tavern {
    background: linear-gradient(rgba(255, 140, 66, 0.4), rgba(42, 42, 42, 0.6)), url('assets-adrenaland/tavern/2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.2;
    color: #ffffff;
}

.section p {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid var(--orange-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 20px;
    border-radius: 50px;
}

.btn:hover {
    background: var(--orange-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    border-color: transparent;
}

/* Activity Sections */
.activity {
    padding: 100px 0;
    position: relative;
}

/* Add subtle dark overlay to activities for better text visibility */
.activity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 1;
}

/* Ensure activity content appears above overlay */
.activity > * {
    position: relative;
    z-index: 2;
}

.activity:nth-child(even) {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
}
/*rgba(45, 80, 22, 0.3), rgba(26, 26, 26, 0.7)*/
/* Individual Activity Backgrounds */
.activity.canyoning {
    background: linear-gradient(rgba(45, 80, 22, 0.3), rgba(0, 150, 255, 0.4)), url('assets-adrenaland/canyoning/15.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.activity.climbing {
    background: linear-gradient(rgba(0, 150, 255, 0.4), rgba(255, 107, 53, 0.3)), url('assets-adrenaland/climbing/12.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.activity.tree-camp {
    background: linear-gradient(rgba(255, 107, 53, 0.3), rgba(0, 150, 255, 0.4)), url('assets-adrenaland/tree_camp/30.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.activity.night-safari {
    background: linear-gradient(rgba(0, 150, 255, 0.4), rgba(255, 107, 53, 0.3)), url('assets-adrenaland/night_safari/15.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.activity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.activity-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 30px;
    color: #ffffff;
}

.activity-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-image:hover img {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: linear-gradient(rgba(255, 107, 53, 0.3), rgba(26, 26, 26, 0.7)), url('assets-adrenaland/e_bike/20.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* Add subtle dark overlay to gallery for better text visibility */
.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 1;
}

/* Ensure gallery content appears above overlay */
.gallery-section > * {
    position: relative;
    z-index: 2;
}

.gallery-title {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(255, 107, 53, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Final Section */
.final-section {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(rgba(255, 140, 66, 0.4), rgba(42, 42, 42, 0.6)), url('assets-adrenaland/tree_camp/45.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.final-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    margin-bottom: 40px;
    line-height: 1.1;
    color: #ffffff;
}

.final-content p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
}

.final-content .highlight {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: white;
    font-weight: 500;
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(rgba(255, 107, 53, 0.4), rgba(26, 26, 26, 0.8)), 
                url('assets-adrenaland/outro.jpg') center/cover;
    padding: 80px 0 0;
    color: #ffffff;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-brand .footer-logo-img {
    height: 60px;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8c42, #ffb347);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #ff8c42;
}

/* Footer shuttle schedule */
.footer-shuttle-times {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-shuttle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-shuttle-row:last-child {
    border-bottom: none;
}

.shuttle-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shuttle-label i {
    color: #ff8c42;
    width: 14px;
    text-align: center;
}

.shuttle-time {
    color: #ff8c42;
    font-weight: 600;
    font-size: 0.9rem;
    font-variant-numeric: tabular-nums;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.8rem;
}

.contact-item i {
    color: #ff6b35;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-item a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff8c42;
}

.contact-item span {
    color: inherit;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff8c42;
}

/* Footer tablet — 5 columns → 2 columns */
@media (max-width: 1100px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
    .footer-shuttle {
        grid-column: 1 / -1;
    }
}

/* Footer Mobile Responsiveness */
@media (max-width: 768px) {
    .main-footer {
        background-attachment: scroll;
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        order: -1;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-brand .footer-logo-img {
        height: 50px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .activity-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Always show content first on mobile */
    .activity-content {
        order: 1;
    }
    
    .activity-image {
        order: 2;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Use vertical logo on mobile */
    .hero-logo-img {
        content: url('assets-adrenaland/logo_vertical.svg');
        height: clamp(160px, 25vw, 320px);
    }

    .section {
        padding: 80px 0;
    }

    .activity {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    /* Disable parallax on mobile for better performance */
    .carousel-slide,
    .activity.canyoning,
    .activity.climbing,
    .activity.tree-camp,
    .activity.night-safari,
    .gallery-section,
    .final-section,
    .section.intro,
    .section.eco-tavern {
        background-attachment: scroll;
    }

    /* Mobile carousel indicators */
    .carousel-controls {
        padding: 0 20px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .scroll-hint {
        top: 15px;
        right: 20px;
        font-size: 0.8rem;
    }
    
    .scroll-hint p {
        font-size: 0.8rem;
    }
    
    .scroll-hint i {
        font-size: 1rem;
    }

    .carousel-indicators {
        bottom: 20px;
        gap: 12px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Policy Modals */
.policy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.policy-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.policy-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.policy-modal .modal-content {
    position: relative;
    background: #2c3e50;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    color: white;
}

.policy-modal.active .modal-content {
    transform: scale(1);
}

.policy-modal .modal-header {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.policy-modal .modal-header h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.policy-modal .modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.policy-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.policy-modal .modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.policy-modal .modal-body::-webkit-scrollbar {
    width: 8px;
}

.policy-modal .modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.policy-modal .modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 10px;
}

.safety-section,
.weather-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.safety-section h3,
.weather-section h3 {
    color: #ff8c42;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.safety-section ul,
.weather-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-section li,
.weather-section li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.safety-section li:before,
.weather-section li:before {
    content: '•';
    color: #ff8c42;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.6;
}

.safety-section strong,
.weather-section strong {
    color: white;
}

.safety-section.emergency,
.weather-section.contact {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.emergency-contact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    color: #ff8c42;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.emergency-note,
.update-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    font-style: italic;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1rem 0;
}

.weather-section .contact-method {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.weather-section .contact-method i {
    color: #ff8c42;
    width: 20px;
}

/* Mobile responsiveness for modals */
@media (max-width: 768px) {
    .policy-modal .modal-content {
        width: 95%;
        margin: 1rem;
        max-height: 95vh;
    }
    
    .policy-modal .modal-header {
        padding: 1.5rem;
    }
    
    .policy-modal .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .policy-modal .modal-body {
        padding: 1.5rem;
        max-height: 70vh;
    }
    
    .safety-section,
    .weather-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-methods {
        gap: 0.6rem;
    }
}

/* 3D Experience nav button */
.nav-3d-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 8px 16px !important;
    background: linear-gradient(135deg, #ff6b35, #ff8c42) !important;
    border-radius: 99px;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
}
.nav-3d-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.55) !important;
    color: #fff !important;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
    color: #ffffff;
}

/* Pulse ring animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: whatsapp-pulse 2.2s ease-out infinite;
}

@keyframes whatsapp-pulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    70%  { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 18px;
        width: 52px;
        height: 52px;
        font-size: 1.55rem;
    }
}
