@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #1a472a;
    --primary-light: #2d5a3f;
    --secondary: #d9b99b;
    --accent: #ff8c00;
    --dark: #0f1710;
    --light: #f4f7f5;
    --text-main: #e0e7e1;
    --text-muted: #a0b0a5;
    --transition-speed: 0.8s;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark);
    color: var(--text-main);
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    scroll-behavior: smooth;
}

/* Landing Page Container */
.presentation-container {
    width: 100%;
    position: relative;
}

.section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    scroll-margin-top: 100px; /* Ensures navigation lands correctly below sticky header */
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 16, 0.6),
        rgba(15, 23, 16, 0.85)
    );
    z-index: -1;
}

.section-hero { background-image: url('../images/hero.png'); }
.section-about { background-image: url('../images/about.png'); }
.section-activity { background-image: url('../images/activity.png'); }
.section-news { background-image: url('../images/hero.png'); } /* Menggunakan hero bg dengan filter gelap */

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1100;
    transition: all 0.4s ease;
    backdrop-filter: blur(0px);
}

.main-header.scrolled {
    padding: 1rem 5%;
    background: rgba(15, 23, 16, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

/* Burger Button Style */
.burger-btn {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1200;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--light);
    position: absolute;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.burger-btn span:nth-child(1) { top: 0; }
.burger-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger-btn span:nth-child(3) { bottom: 0; }

.burger-btn.open span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: translate(-20px, -50%);
}

.burger-btn.open span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}


/* Typography */
h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 1rem;
    color: var(--light);
}

.highlight {
    color: var(--accent);
    display: block;
}

p {
    font-size: 1.25rem;
    max-width: 600px;
    text-align: center;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Morphing Background */
.morph-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.blob-1 {
    width: 60vw;
    height: 60vw;
    background: var(--primary);
    top: -10%;
    right: -10%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.blob-2 {
    width: 50vw;
    height: 50vw;
    background: var(--primary-light);
    bottom: -10%;
    left: -10%;
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
}

/* Navigation Dots */
.nav-dots {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

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

/* PERSONNEL GRID - CLEANED UP FOR LANDING PAGE */
.section-about {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    padding: 8rem 10%;
}

.about-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.personnel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Single row for 4 persons */
    gap: 2rem;
    position: relative;
    max-width: 1100px;
    width: 100%;
}

.person-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    cursor: pointer; /* Added for clickability */
}

.person-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: var(--accent);
}

.person-frame {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1/1;
    border-radius: 5px;
    border: 2px solid var(--accent);
    overflow: hidden;
    background: var(--dark);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.person-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-name {
    font-weight: 700;
    color: var(--light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Buttons */
.btn-primary {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 3.5rem; }
    p { font-size: 1rem; }
    .nav-dots { right: 1rem; }
}

/* OUTBOUND SOLUTIONS - PREMIUM GRID */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    width: 100%;
}

.solutions-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 5px; /* Consistent with owner photos */
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    transition: all 0.4s ease;
}

.solutions-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-10px);
}

.solutions-card i {
    font-size: 2.5rem;
    color: var(--accent);
}

.solutions-card h3 {
    font-size: 1.5rem;
    color: var(--light);
}

.solutions-card p {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: left;
    max-width: 100%;
}

/* ADVENTURE EXPERIENCE - CINEMATIC CARDS */
.adventure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 1100px;
}

@media (max-width: 1024px) {
    .adventure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .adventure-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.adventure-card {
    position: relative;
    height: 350px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.adventure-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.adventure-card:hover .adventure-img {
    transform: scale(1.1);
}

.adventure-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 16, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    transition: background 0.4s ease;
}

.adventure-card:hover .adventure-overlay {
    background: linear-gradient(to top, rgba(26, 71, 42, 0.8), transparent);
}

.adventure-overlay h3 {
    font-size: 1.8rem;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.adventure-overlay p {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.adventure-card:hover .adventure-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* HERO SECTION CUSTOMS */
.hero-slogan {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 800; /* Much bolder as requested */
    color: var(--light);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    animation: fadeInDown 1.5s ease-out;
    background: linear-gradient(to bottom, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* SOCIAL LINKS */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light);
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icon:hover {
    transform: translateY(-10px) scale(1.1);
    color: white;
}

.social-icon.tiktok:hover {
    background: #000;
    border-color: #ff0050;
    box-shadow: 0 10px 25px rgba(255, 0, 80, 0.5), 0 -5px 15px rgba(0, 242, 234, 0.5);
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    border-color: #d6249f;
    box-shadow: 0 10px 25px rgba(214, 36, 159, 0.5);
}

.social-icon.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.5);
}

.social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.5);
}

/* TESTIMONIALS SECTION */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
    width: 100%;
    max-width: 1100px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 5px; /* Consistent with owner photos */
    padding: 3rem;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--accent);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-author h5 {
    font-size: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonial-card {
        padding: 2rem;
    }
}

/* CONTACT MODAL & FORM STYLES */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.contact-modal {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 3rem;
    max-width: 700px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.modal-overlay.active .contact-modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--light);
    cursor: pointer;
    line-height: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form input, .contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 1rem;
    color: var(--light);
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group {
        grid-column: span 1 !important;
    }
    .contact-modal {
        padding: 2rem 1.5rem;
    }
}

/* GALLERY SECTION - ALBUM STYLE */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 1200px;
}

.album-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.album-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.album-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(15, 23, 16, 0.95), transparent);
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.album-date {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.album-card h3 {
    font-size: 1.4rem;
    color: var(--light);
    margin-bottom: 0.3rem;
}

.album-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: left;
    opacity: 0.7;
}

.album-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 140, 0, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    transform: translateX(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.album-card:hover img {
    transform: scale(1.15);
}

.album-card:hover .album-info {
    transform: translateY(0);
}

.album-card:hover .album-badge {
    transform: translateX(0);
    opacity: 1;
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .album-card {
        height: 350px;
    }
}

/* Latest Activities Section */
.news-section {
    width: 100%;
    max-width: 1100px;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-top: 1.5rem;
}

.news-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    overflow: hidden;
    padding: 0; /* Override glass-card padding */
}

.news-thumb {
    width: 100%;
    height: 140px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

.news-card:hover .news-thumb img {
    transform: scale(1.1);
}

.news-body {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.news-card h4 {
    font-size: 1.1rem;
    color: var(--light);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.news-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

/* Responsive Overrides */
@media (max-width: 992px) {
    .section-about {
        flex-direction: column;
        text-align: center;
        padding: 5rem 1rem;
    }
    .about-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 3rem;
    }
    .about-content h1, .about-content p {
        text-align: center !important;
    }
    .personnel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

    /* Handled after 768px to ensure precedence */

@media (max-width: 768px) {
    .slide {
        justify-content: flex-start;
        padding-top: 5rem;
        padding-bottom: 5rem; /* Space for bottom nav */
    }
    .slide-hero img {
        max-width: 85%;
        height: auto !important;
    }
    .service-icon-nav {
        display: none !important; /* Hide icons on Slide 1 for mobile */
    }
    .section {
        justify-content: flex-start; /* Start from top on mobile */
        padding-top: 120px; /* Consistent gap below sticky header */
        padding-bottom: 80px;
        scroll-margin-top: 70px; /* Aligns target with bottom of header */
    }

    .nav-dots {
        display: none !important; /* Hide side dots on mobile center to avoid clutter */
    }
}

@media (max-width: 600px) {
    .personnel-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .person-frame {
        max-width: 220px; /* Bit larger when single column */
    }
}

/* Mobile Bottom Navigation Bar */
.mobile-nav {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    display: none; /* Hidden on desktop */
    justify-content: space-around;
    align-items: center;
    padding: 0 1rem;
    z-index: 1000;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-item i {
    font-size: 1.2rem;
}

.mobile-nav-item.active {
    color: var(--accent);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .burger-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 16, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1150;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        pointer-events: none;
    }

    .nav-menu.open {
        transform: translateX(0);
        pointer-events: auto;
    }

    .nav-menu a {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .solutions-grid, .adventure-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .adventure-card {
        height: 300px;
    }

    .mobile-nav {
        display: flex;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.5rem; }
    .service-icon-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    .icon-label { font-size: 0.75rem; }
}

/* Progress Indicator */
.chapter-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--accent);
    z-index: 1000;
    transition: width 0.5s ease;
}

/* Page Intro/Title specific style */
.chapter-title {
    font-size: 1.5rem;
    letter-spacing: 4px;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

/* FOOTER STYLES */
.main-footer {
    background: rgba(15, 23, 16, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 10% 2rem;
    position: relative;
    z-index: 10;
}

/* Compensate for mobile bottom nav */
@media (max-width: 768px) {
    .main-footer {
        padding-bottom: 10rem;
    }
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-slogan {
    font-size: 1.1rem;
    color: var(--text-main);
    text-align: left;
    max-width: 300px;
    line-height: 1.4;
    margin-bottom: 2rem;
}

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

.footer-social a {
    color: var(--text-muted);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light);
}

/* Visitor Stats Style */
.visitor-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--accent);
    background: rgba(255, 140, 0, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-info strong {
    font-size: 1.2rem;
    color: var(--light);
    font-weight: 700;
}

.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 100%;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .branding {
        grid-column: span 2;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-slogan {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .branding, .footer-col {
        grid-column: span 1;
        text-align: center;
        align-items: center;
    }
    .footer-links {
        align-items: center;
    }
    .stat-item {
        justify-content: flex-start;
        width: fit-content;
        margin: 0 auto;
    }
    .stat-info {
        text-align: left;
    }
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 55px;
    height: 55px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: white;
    color: var(--accent);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 8rem; /* Above mobile bottom nav */
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

