/* ============================================
   SUMMIT TEMPLATE - MASTER STYLESHEET
   Version: 1.0.0
   Author: Summit Template
   Description: Premium adventure portfolio template
   
   TABLE OF CONTENTS:
   1.  CSS Variables & Reset
   2.  Base Styles & Typography
   3.  Navigation & Header
   4.  Hero Section & Carousel
   5.  Cards & Grids
   6.  About Preview & Counters
   7.  Timeline Section
   8.  Gallery Preview
   9.  Gear Showcase
   10. Testimonials Slider
   11. Blog Preview
   12. Newsletter CTA
   13. Footer
   14. Back to Top Button
   15. Responsive Breakpoints
============================================ */

/* ============================================
   1. CSS VARIABLES & RESET
============================================ */
:root {
    /* Light Mode Colors */
    --bg-primary: #FDFBF7;
    --bg-secondary: #F5F2EB;
    --text-primary: #2C2B28;
    --text-secondary: #5C5A55;
    --accent-forest: #2D5A3F;
    --accent-earth: #8B7355;
    --accent-stone: #A8A39A;
    --accent-sunset: #E07A5F;
    --glass-bg: rgba(253, 251, 247, 0.85);
    --glass-border: rgba(139, 115, 85, 0.15);
    --card-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Dark Mode Colors */
[data-theme="dark"],
.dark-mode {
    --bg-primary: #1A1C1A;
    --bg-secondary: #242624;
    --text-primary: #EDEDE9;
    --text-secondary: #B8B5AD;
    --accent-forest: #4A7C59;
    --accent-earth: #A68A64;
    --accent-stone: #7A7A72;
    --accent-sunset: #E29578;
    --glass-bg: rgba(26, 28, 26, 0.85);
    --glass-border: rgba(139, 115, 85, 0.25);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Spacing */
section {
    padding: 80px 0;
    position: relative;
}

/* Typography */
.section-title {
    font-family: 'Marcellus', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

/* Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.12);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--accent-sunset);
    transform: translateY(-2px);
    gap: 15px;
}

.btn-secondary {
    background: transparent;
    border: 1.5px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

/* ============================================
   3. NAVIGATION & HEADER
============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
    background: transparent;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-links ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-sunset);
}

/* Progress Scroll Bar */
.progress-container {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--accent-sunset);
    transition: width 0.1s;
}

/* ============================================
   4. HERO SECTION & CAROUSEL
============================================ */
.hero-premium {
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-bottom: 0px;
}

.hero-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 100%;
    width: 100%;
    padding-inline: 6rem;
}

.hero-title {
    font-family: 'Marcellus', serif;
    font-size: 5rem;
    line-height: 1.1;
    margin: 20px 0;
}

.hero-tag {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 40px;
    display: inline-block;
}
.hero-desc{
padding-bottom: 20px;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    color: white;
    transition: 0.3s;
}

.prev-hero {
    left: 30px;
}

.next-hero {
    right: 30px;
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.05);
}

/* ============================================
   5. CARDS & GRIDS (Expeditions)
============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.expedition-card {
    background: var(--glass-bg);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.expedition-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
}

.card-image {
    height: 280px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-sunset);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.location {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.location i {
    margin-right: 6px;
    color: var(--accent-sunset);
}

.short-story {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-forest);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-link:hover {
    gap: 12px;
    color: var(--accent-sunset);
}

/* ============================================
   6. ABOUT PREVIEW & COUNTERS
============================================ */
.about-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    padding-right: 20px;
}

.about-text h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

/* Achievement Grid */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.achievement-grid:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.counter-item {
    text-align: center;
    padding: 20px 15px;
    border-radius: 20px;
    transition: var(--transition);
}

.counter-item:hover {
    background: rgba(45, 90, 63, 0.05);
    transform: scale(1.02);
}

.counter-item i {
    font-size: 2.5rem;
    color: var(--accent-forest);
    margin-bottom: 15px;
    display: inline-block;
}

.counter-num {
    font-family: 'Marcellus', serif;
    font-size: 2.8rem;
    font-weight: 600;
    display: block;
    color: var(--accent-sunset);
    line-height: 1.2;
    margin-bottom: 8px;
}

.counter-item p {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* ============================================
   7. TIMELINE SECTION
============================================ */
.timeline {
    position: relative;
    padding: 20px 0;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    padding: 20px 0 20px 40px;
    border-left: 2px solid var(--accent-earth);
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -9px;
    top: 28px;
    width: 16px;
    height: 16px;
    background: var(--accent-sunset);
    border-radius: 50%;
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    background: var(--accent-forest);
}

.timeline-content h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--accent-sunset);
}

.timeline-content p {
    color: var(--text-secondary);
}

/* ============================================
   8. GALLERY PREVIEW
============================================ */
.gallery-preview {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 50px 0 60px;
}

.preview-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--card-shadow);
}

.preview-img:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
}

/* ============================================
   9. GEAR SHOWCASE
============================================ */
.gear-showcase {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    margin-top: 20px;
}

.gear-showcase h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    margin-bottom: 28px;
    text-align: center;
    color: var(--text-primary);
}

.gear-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.gear-items span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 24px;
    background: rgba(45, 90, 63, 0.1);
    border-radius: 50px;
    transition: var(--transition);
    color: var(--text-primary);
}

.gear-items span i {
    font-size: 1.3rem;
    color: var(--accent-forest);
}

.gear-items span:hover {
    transform: translateY(-3px);
    background: rgba(45, 90, 63, 0.2);
}

/* ============================================
   10. TESTIMONIALS SLIDER
============================================ */
.testimonials {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.glass-bg {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.slider-title {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.slider-container {
    position: relative;
    min-height: 300px;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 28px;
}

.testimonial.active {
    display: block;
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial i.fa-quote-left {
    font-size: 2.5rem;
    color: var(--accent-sunset);
    opacity: 0.6;
    margin-bottom: 20px;
    display: inline-block;
}

.testimonial p {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.testimonial h4 {
    font-family: 'Marcellus', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-forest);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.5;
}

.slider-dots .dot.active {
    width: 28px;
    border-radius: 20px;
    background: var(--accent-sunset);
    opacity: 1;
}

.slider-dots .dot:hover {
    opacity: 0.8;
    transform: scale(1.2);
}

/* ============================================
   11. BLOG PREVIEW
============================================ */
.blog-preview {
    padding: 100px 0;
    background: var(--bg-primary);
}

.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 0 24px;
    font-size: 0.8rem;
    color: var(--accent-sunset);
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card h4 {
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 12px 24px;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 24px 20px 24px;
    line-height: 1.6;
}

.blog-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 24px 24px 24px;
    color: var(--accent-forest);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.blog-card a:hover {
    gap: 12px;
    color: var(--accent-sunset);
}

/* ============================================
   12. NEWSLETTER CTA
============================================ */
.newsletter-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.newsletter-cta .container.glass-card {
    max-width: 700px;
    text-align: center;
    padding: 60px 50px;
    margin: 0 auto;
}

.newsletter-cta i.fa-envelope-open-text {
    font-size: 3rem;
    color: var(--accent-sunset);
    margin-bottom: 20px;
    display: inline-block;
}

.newsletter-cta h3 {
    font-family: 'Marcellus', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.newsletter-cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: 1px solid var(--glass-border);
    background: var(--bg-primary);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-forest);
    box-shadow: 0 0 0 3px rgba(45, 90, 63, 0.1);
}

.newsletter-form button {
    padding: 14px 32px;
    white-space: nowrap;
}

.form-message {
    margin-top: 20px;
    font-size: 0.9rem;
    min-height: 40px;
}

/* ============================================
   13. FOOTER
============================================ */
.footer {
    background: var(--bg-secondary);
    padding: 70px 0 30px;
    margin-top: 60px;
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo-footer {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo-footer i {
    color: var(--accent-forest);
    font-size: 1.6rem;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    background: var(--accent-forest);
    color: white;
    transform: translateY(-3px);
}

/* Footer Headings */
.footer-col h4 {
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-sunset);
    transition: width 0.3s ease;
}

.footer-col:hover h4::after {
    width: 50px;
}

/* Footer Lists */
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-sunset);
    transform: translateX(5px);
}

/* Decorative Wave */
.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23var(--accent-forest)"></path></svg>') repeat-x;
    background-size: 50px 50px;
    opacity: 0.1;
    pointer-events: none;
}

/* ============================================
   14. BACK TO TOP BUTTON
============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-forest);
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-sunset);
    transform: translateY(-3px);
}

/* ============================================
   15. CUSTOM CURSOR
============================================ */
.custom-cursor {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-sunset);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.2s;
}

@media (max-width: 768px) {
    .custom-cursor {
        display: none;
    }
}

/* ============================================
   16. RESPONSIVE BREAKPOINTS
============================================ */

/* Tablet Landscape (992px and below) */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .cards-grid,
    .blog-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .preview-grid {
        gap: 16px;
    }
    
    .preview-img {
        height: 260px;
    }
    
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-nav {
        width: 40px;
        height: 40px;
    }
    
    .prev-hero {
        left: 15px;
    }
    
    .next-hero {
        right: 15px;
    }
    
    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        padding: 100px 30px;
        transition: 0.4s;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        gap: 25px;
    }
    
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .mobile-menu-btn span {
        width: 28px;
        height: 2px;
        background: var(--text-primary);
        transition: 0.3s;
    }
    
    /* Layout Changes */
    .split-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text {
        padding-right: 0;
        text-align: center;
    }
    
    .cards-grid,
    .blog-card-grid,
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-img {
        height: 280px;
    }
    
    .gear-showcase {
        padding: 28px 20px;
    }
    
    .gear-items {
        flex-direction: column;
        align-items: center;
    }
    
    .gear-items span {
        width: 100%;
        justify-content: center;
    }
    
    .testimonial p {
        font-size: 1rem;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-col {
        align-items: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-col ul {
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    .hero-slide {
        top: 25px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tag {
        font-size: 0.7rem;
    }
    
    .hero-nav {
        width: 35px;
        height: 35px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .achievement-grid {
        gap: 15px;
        padding: 20px;
    }
    
    .counter-num {
        font-size: 1.6rem;
    }
    
    .preview-img {
        height: 220px;
    }
    
    .gear-showcase h3 {
        font-size: 1.3rem;
    }
    
    .testimonial p {
        font-size: 0.9rem;
    }
    
    .slider-title {
        font-size: 1.5rem;
    }
    
    .blog-card h4 {
        font-size: 1.1rem;
    }
    
    .newsletter-cta .container.glass-card {
        padding: 30px 20px;
    }
    
    .newsletter-cta h3 {
        font-size: 1.4rem;
    }
    
    .logo-footer {
        font-size: 1.4rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
}

/* ============================================
   ANIMATIONS (Moved from animation.css)
============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.reveal-on-scroll[data-delay="0.1"] { transition-delay: 0.1s; }
.reveal-on-scroll[data-delay="0.2"] { transition-delay: 0.2s; }
.reveal-on-scroll[data-delay="0.3"] { transition-delay: 0.3s; }
.reveal-on-scroll[data-delay="0.4"] { transition-delay: 0.4s; }
.reveal-on-scroll[data-delay="0.5"] { transition-delay: 0.5s; }


/* ============================================
   NAV ACTIONS & THEME TOGGLE
   Summit Template
============================================ */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    transform: scale(1.05);
    background: var(--accent-forest);
    border-color: var(--accent-forest);
}

.theme-toggle i {
    font-size: 1.2rem;
    color: var(--text-primary);
    transition: var(--transition);
    position: absolute;
}

.theme-toggle:hover i {
    color: white;
}

/* Moon and Sun icons toggle */
.theme-toggle .fa-sun {
    opacity: 0;
    transform: rotate(-90deg);
}

.theme-toggle .fa-moon {
    opacity: 1;
    transform: rotate(0);
}

/* Dark mode active - show sun, hide moon */
.dark-mode .theme-toggle .fa-sun {
    opacity: 1;
    transform: rotate(0);
}

.dark-mode .theme-toggle .fa-moon {
    opacity: 0;
    transform: rotate(90deg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu Active State */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        padding: 100px 30px 40px;
        transition: 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        gap: 25px;
    }
    
    .nav-links ul li a {
        font-size: 1.2rem;
        display: block;
        padding: 10px 0;
    }
    
    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}

/* Dark mode adjustments for mobile menu */
.dark-mode .mobile-menu-btn span {
    background: var(--text-primary);
}

.dark-mode .nav-links {
    backdrop-filter: blur(20px);
}

/* ============================================
   END OF STYLESHEET
============================================ */