/* 
   LDG The Store - Main Stylesheet (Vanilla CSS)
   Design System, Layout, and Custom Animations
*/

/* 1. Global Reset & Variables */
:root {
    /* Brand Colors */
    --primary-navy: #010080;
    --navy-dark: #00005a;
    --navy-light: #1b1bff;
    --accent-lime: #A3FA4B;
    --accent-lime-hover: #8de436;
    --accent-gold: #f5c518;
    
    /* Backgrounds */
    --bg-light: #ffffff;
    --bg-offset: #f8fafc;
    --bg-cool: #edf0fd;
    --bg-dark: #0e0f11;
    --bg-charcoal: #2e3037;
    
    /* Typography Colors */
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --text-dim: #cbd5e1;

    /* Borders & Shadows */
    --border-color: #e2e8f0;
    --border-light: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transition defaults */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

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

/* Headings Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-navy);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 2. Helper Classes & Layout Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

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

.flex {
    display: flex;
}

.grid {
    display: grid;
}

/* Icon Sizing & Fill Utilities */
.w-4 { width: 16px !important; }
.h-4 { height: 16px !important; }
.w-5 { width: 20px !important; }
.h-5 { height: 20px !important; }
.w-6 { width: 24px !important; }
.h-6 { height: 24px !important; }
.fill-current { fill: currentColor; }

/* Badge Styling */
.badge-lime {
    display: inline-block;
    background-color: var(--accent-lime);
    color: var(--primary-navy);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.75rem;
    border-radius: 80px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-navy {
    background-color: var(--primary-navy);
    color: #ffffff;
}

.btn-navy:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 0, 128, 0.2);
}

.btn-lime {
    background-color: var(--accent-lime);
    color: var(--primary-navy);
}

.btn-lime:hover {
    background-color: var(--accent-lime-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(163, 250, 75, 0.3);
}

/* 3. Header & Navigation */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 130px;
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}

.site-header.scrolled {
    height: 100px;
    box-shadow: var(--shadow-md);
}

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

.nav-row-desktop {
    display: none;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary-navy);
}

.header-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.site-header.scrolled .header-logo {
    height: 90px;
}

@media (min-width: 1024px) {
    .site-header {
        height: 240px;
    }

    .site-header.scrolled {
        height: 170px;
    }

    .nav-container {
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        padding: 1.25rem 0 2rem 0; /* 20px top, 32px bottom */
    }

    .site-header.scrolled .nav-container {
        padding: 0.75rem 0 1.25rem 0; /* 12px top, 20px bottom */
    }

    .header-logo {
        height: 135px;
    }

    .site-header.scrolled .header-logo {
        height: 95px;
    }

    .nav-row-desktop {
        display: flex;
        justify-content: center;
        gap: 4.5rem;
        align-items: center;
        width: 100%;
    }
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    letter-spacing: -0.02em;
}

.logo-text span {
    font-weight: 400;
    font-size: 0.9rem;
    display: block;
    margin-top: -3px;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* Desktop Menu */
.nav-menu {
    display: none;
    list-style: none;
    gap: 2.25rem;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-navy);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-lime);
    transition: var(--transition-fast);
}

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

.nav-actions {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .nav-actions {
        display: flex;
    }
}

/* Hamburger button */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-navy);
    border-radius: 3px;
    transition: var(--transition-normal);
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-light);
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    z-index: 1005;
    padding: 6rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: var(--transition-normal);
}

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

.mobile-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--primary-navy);
    display: block;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Hamburger active transformation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* 4. Hero Section */
.hero {
    margin-top: 130px;
    min-height: 80vh;
    background-image: linear-gradient(rgba(1, 0, 128, 0.55), rgba(1, 0, 128, 0.75)), url('../img/fondo_inicio.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--text-light);
    padding: 4rem 0;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

@media (min-width: 768px) {
    .hero {
        background-image: linear-gradient(to right, rgba(1, 0, 128, 1) 0%, rgba(1, 0, 128, 0.95) 20%, rgba(1, 0, 128, 0.65) 45%, rgba(1, 0, 128, 0) 80%), url('../img/fondo_inicio.jpeg');
        background-size: 90% auto;
        background-position: right center;
        background-repeat: no-repeat;
        background-color: var(--primary-navy);
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        margin-top: 240px;
    }
    .hero-content h1 {
        font-size: 4rem;
    }
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

@media (min-width: 768px) {
    .hero-content p {
        font-size: 1.25rem;
    }
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}


/* 5. About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .about-content h2 {
        font-size: 2.75rem;
        line-height: 1.2;
    }
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-image img {
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
}


/* 6. Services Section */
.services {
    background-color: var(--bg-offset);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--bg-light);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-lime);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(1, 0, 128, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.service-card:hover .service-icon {
    background-color: var(--primary-navy);
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Suplidores Logo Carousel Section */
.suplidores {
    background-color: var(--bg-cool);
    overflow: hidden;
    position: relative;
    padding: 5rem 0;
}

.suplidores-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 3rem;
}

/* Premium gradient fades at the edges */
.suplidores-carousel-wrapper::before,
.suplidores-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.suplidores-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-cool) 0%, rgba(237, 240, 253, 0) 100%);
}

.suplidores-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-cool) 0%, rgba(237, 240, 253, 0) 100%);
}

.suplidores-carousel {
    display: flex;
    overflow: hidden;
    user-select: none;
    padding: 1rem 0;
}

.suplidores-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

/* Pause scroll animation on hover */
.suplidores-carousel:hover .suplidores-track {
    animation-play-state: paused;
}

.suplidor-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3.5rem;
    height: 60px;
    width: 220px;
    flex-shrink: 0;
}

.suplidor-logo-wrapper img {
    height: 100%;
    max-height: 55px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: none;
    opacity: 0.95;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Hover effect on logos */
.suplidor-logo-wrapper img:hover {
    opacity: 1;
    transform: scale(1.08);
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
    .suplidores-carousel-wrapper::before,
    .suplidores-carousel-wrapper::after {
        width: 60px;
    }
    .suplidor-logo-wrapper {
        padding: 0 2rem;
        width: 170px;
        height: 45px;
    }
    .suplidor-logo-wrapper img {
        max-height: 40px;
    }
}


/* 7. Featured Models Slider Section */
.featured-models {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.featured-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.featured-header-wrapper h2 {
    font-size: 2rem;
}

@media (min-width: 1024px) {
    .featured-header-wrapper h2 {
        font-size: 2.5rem;
    }
}

.slider-controls {
    display: flex;
    gap: 0.75rem;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background-color: var(--primary-navy);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background-color: var(--accent-lime);
    color: var(--primary-navy);
    transform: scale(1.05);
}

.slider-container {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    scroll-behavior: smooth;
    margin-bottom: 3.5rem;
}

.slider-container::-webkit-scrollbar {
    display: none; /* Safari & Chrome */
}

.model-card {
    min-width: 290px;
    width: 290px;
    flex-shrink: 0;
    background-color: var(--bg-charcoal);
    border-radius: 20px;
    overflow: hidden;
    color: var(--text-light);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

@media (min-width: 768px) {
    .model-card {
        min-width: calc(33.333% - 1.35rem);
        width: calc(33.333% - 1.35rem);
    }
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.model-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.model-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.model-card:hover .model-image-wrapper img {
    transform: scale(1.08);
}


.model-info {
    padding: 2rem 1.75rem;
}

.model-info h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.model-info p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}


/* 8. Testimonials & Stats Section */
.testimonials {
    background-image: linear-gradient(rgba(1, 0, 128, 0.65), rgba(0, 0, 90, 0.75)), url('../img/fondo_seccion.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.testimonials .section-header h2 {
    color: #ffffff;
}

.testimonials .section-header p {
    color: var(--text-dim);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: var(--bg-light);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(163, 250, 75, 0.4);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: var(--accent-gold);
    margin-bottom: 1.25rem;
}

.testimonial-quote {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-lime);
    color: var(--primary-navy);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--primary-navy);
}

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

/* Stats Row styling */
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
}

@media (min-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 3.5rem;
    }
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}


/* 9. FAQ Section */
.faq {
    background-color: var(--bg-light);
    padding: 5rem 0 2rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-navy);
    gap: 1.5rem;
}

.accordion-header:hover {
    color: var(--accent-lime);
}

.accordion-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.accordion-icon svg {
    width: 100%;
    height: 100%;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.accordion-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-top: 1rem;
    line-height: 1.7;
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* Adjust height dynamically using JS */
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--accent-lime);
}


/* 10. Call to Action Banner */
.cta-section {
    padding: 2rem 0 5rem 0;
}

.cta-banner {
    background-color: var(--accent-lime);
    color: var(--primary-navy);
    text-align: center;
    border-radius: 24px;
    padding: 4.5rem 2rem;
    margin: 0 1.5rem;
}

.cta-banner h2 {
    color: var(--primary-navy);
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

@media (min-width: 768px) {
    .cta-banner h2 {
        font-size: 3rem;
    }
}

.cta-banner p {
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    font-weight: 500;
    opacity: 0.9;
}

.badge-navy {
    display: inline-block;
    background-color: var(--primary-navy);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-outline-navy {
    background-color: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.btn-outline-navy:hover {
    background-color: rgba(1, 0, 128, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 0, 128, 0.1);
}


/* 11. Footer */
.site-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 5rem 0 2rem 0;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

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

.footer-brand .logo {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

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

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--accent-lime);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-lime);
    padding-left: 4px;
}

/* Footer Contact Info */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--accent-lime);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer-legal-links a:hover {
    color: var(--accent-lime);
}

/* 12. Scroll Reveal Animations */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal {
    transform: translateY(35px);
}

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

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

.reveal-scale {
    transform: scale(0.95);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Delay classes for staggered animations */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

