/* ==========================================================================
   ENORS S.R.L. - Modern Corporate Light Tech Theme
   ========================================================================== */

:root {
    /* Color Palette - Corporate Premium */
    --primary: #0f172a; 
    --primary-light: #f1f5f9; 
    --primary-lighter: #e2e8f0; 
    --accent: #1e3a8a;       /* Azul Corporativo Profundo */
    --accent-hover: #1e40af;
    --accent-light: #3b82f6;
    --gold: #dc2626;         /* Corporate Red de ENORS */
    --gold-hover: #b91c1c;
    
    /* Text Colors */
    --text-light: #475569; 
    --text-muted: #64748b; 
    --text-dark: #0f172a; 
    --text-inverse: #ffffff; 
    
    /* Backgrounds */
    --bg-main: #ffffff; 
    --bg-panel: #ffffff;
    --bg-section: #f8fafc;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Variables */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 14px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-accent: 0 8px 30px rgba(30,58,138,0.15);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text-dark); margin-bottom: 1rem; }
p { margin-bottom: 1rem; color: var(--text-muted); }
a { text-decoration: none; color: var(--accent); transition: var(--transition); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 6rem 0; }
.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }

/* ==========================================================================
   Typography & Titles
   ========================================================================== */
.section-title { margin-bottom: 3rem; }
.section-title h2 { font-size: 2.5rem; position: relative; display: inline-block; }
.section-title h2 span { background: linear-gradient(135deg, var(--accent), var(--accent-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary, .btn-secondary {
    display: inline-block; padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: var(--transition); border: none;
}
.btn-large { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: #fff; box-shadow: 0 4px 14px rgba(30,58,138,0.35); }
.btn-primary:hover { background: linear-gradient(135deg, var(--accent-hover), var(--accent)); transform: translateY(-2px); color: #fff; box-shadow: 0 8px 25px rgba(30,58,138,0.4); }
.btn-secondary { background: transparent; color: var(--primary); border: 2px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { border-color: var(--accent-light); color: #fff; background: rgba(255,255,255,0.1); }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: var(--transition); padding: 1rem 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 1px 3px rgba(0,0,0,0.04); border-bottom: 1px solid rgba(0,0,0,0.04);
}
.navbar.scrolled { padding: 0.7rem 0; box-shadow: var(--shadow-md); background: rgba(255,255,255,0.98); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-wrapper { display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.logo-wrapper:hover { transform: translateY(-1px); }
.logo img { height: 45px; object-fit: contain; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--primary); font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a.btn-primary { color: #fff; }
.mobile-toggle { display: none; background: none; border: none; color: var(--primary); font-size: 1.5rem; cursor: pointer; }

/* ==========================================================================
   Hero Section Dinámica (Tech Slider)
   ========================================================================== */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--text-inverse);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 10s linear;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.1); /* Efecto cinematográfico */
}

/* Filtro Ultra-Tecnológico mezclando Azul Base y Rojo */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
    background: linear-gradient(135deg, rgba(46,52,142,0.85) 0%, rgba(220,38,38,0.5) 100%);
}

.hero-overlay::after {
    content: ''; position: absolute; top:0; left:0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

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

.hero-content { position: relative; z-index: 2; max-width: 800px; padding-top: 5rem; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; margin-bottom: 1.5rem; line-height: 1.1; color: #ffffff; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.25rem; max-width: 600px; margin-bottom: 2.5rem; font-weight: 400; color: #cbd5e1; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 12; }
.mouse { width: 30px; height: 50px; border: 2px solid #cbd5e1; border-radius: 15px; position: relative; opacity: 0.8; }
.mouse::before { content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--gold); border-radius: 2px; animation: scroll 2s infinite; }
@keyframes scroll { 0% { transform: translate(-50%, 0); opacity: 1; } 100% { transform: translate(-50%, 15px); opacity: 0; } }

/* ==========================================================================
   Quick Stats - Dark contrast strip
   ========================================================================== */
.quick-stats { background: #0f172a; padding: 3rem 0; position: relative; margin-top: -1px; }
.stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.stat-box i { font-size: 2.5rem; color: var(--accent); margin-bottom: 1rem; }
.stat-box h3 { margin-bottom: 0.25rem; font-size: 1.2rem; color: #ffffff; }
.stat-box p { margin: 0; font-size: 0.9rem; color: #94a3b8; }

/* ==========================================================================
   Services Section (Grid Cards with Images)
   ========================================================================== */
.service-area-header {
    text-align: left;
    border-bottom: 2px solid var(--primary-lighter);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    margin-top: 4rem;
}
.service-area-header h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    text-transform: uppercase;
}
.service-area-header h2 span {
    color: var(--gold);
}
.service-area-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin-top: 0.75rem;
}
.services-grid-img { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 2.5rem; 
}
.featured-grid {
    grid-template-columns: repeat(2, 1fr);
}
.service-image-card {
    background: #fff;
    border: 1px solid var(--primary-lighter);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-image-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-accent);
    border-color: var(--accent);
}
.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f1f5f9;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.service-image-card:hover .card-image img {
    transform: scale(1.05);
}
.card-content {
    padding: 1.5rem;
    flex-grow: 1;
}
.card-content h3 {
    color: var(--accent); /* Deep corporate blue */
    font-size: 1.15rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.card-content ul {
    list-style: none;
}
.card-content ul li {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 15px;
}
.card-content ul li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* Image Slider */
.auto-slider { position: relative; }
.auto-slider img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease-in-out; }
.auto-slider img:first-child { position: relative; }
.auto-slider img.active { opacity: 1; }

/* ==========================================================================
   About Section
   ========================================================================== */
.about { background: var(--primary-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-content p, .about-content .lead-text { text-align: justify; }
.lead-text { font-size: 1.25rem; color: var(--accent); font-weight: 600; }
.features-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.feature-item { display: flex; gap: 1rem; }
.feature-item p { text-align: justify; }
.feature-item i { font-size: 1.5rem; color: var(--gold); margin-top: 0.25rem; flex-shrink: 0; }
.glass-panel { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.tech-bg {
    width: 100%; height: 400px;
    background: linear-gradient(135deg, #e0e7ff, #f8fafc); position: relative;
}
.tech-bg::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; height: 80%;
    border: 1px solid rgba(37,99,235,0.1); border-radius: 50%; animation: rotate 20s linear infinite;
}
@keyframes rotate { 100% { transform: translate(-50%, -50%) rotate(360deg); } }
.experience-badge {
    position: absolute; bottom: -20px; right: -20px; background: var(--accent); width: 150px; height: 150px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff;
    border: 8px solid var(--bg-panel); box-shadow: 0 5px 15px rgba(0,0,0,0.1); z-index: 2;
}
.experience-badge .number { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.experience-badge .text { font-size: 0.85rem; font-weight: 600; text-align: center; }

/* ==========================================================================
   Clients Categories (Grid)
   ========================================================================== */
.client-categories { display: flex; flex-direction: column; gap: 3rem; }
.client-category { background: #fff; border: 1px solid var(--primary-lighter); border-radius: var(--radius); padding: 2rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.category-title { color: var(--accent); font-size: 1.3rem; margin-bottom: 2rem; text-align: center; text-transform: uppercase; letter-spacing: 1px; border-bottom: 2px solid var(--primary-light); padding-bottom: 1rem; }
.client-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; align-items: center; }
.client-grid-item { width: 180px; padding: 1rem; display: flex; justify-content: center; align-items: center; transition: var(--transition); background: var(--primary-light); border-radius: 8px; border: 1px solid transparent; }
.client-grid-item img { max-width: 100%; max-height: 80px; object-fit: contain; filter: grayscale(50%) opacity(0.8); transition: var(--transition); }
.client-grid-item:hover { transform: translateY(-5px); background: #fff; border-color: var(--gold); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.client-grid-item:hover img { filter: grayscale(0%) opacity(1); transform: scale(1.05); }

/* ==========================================================================
   News & Projects Section
   ========================================================================== */
.news-section { background: var(--primary-light); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2.5rem; margin-top: 3rem; }

.news-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid var(--primary-lighter);
}

.news-card:hover { transform: translateY(-10px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border-color: var(--accent); }

.news-img { width: 100%; height: 240px; overflow: hidden; position: relative; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.news-card:hover .news-img img { transform: scale(1.1); }

.news-badge {
    position: absolute; top: 1.5rem; left: 1.5rem; background: var(--accent); color: #fff; padding: 0.4rem 1rem;
    border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; z-index: 2;
}

.news-content { padding: 2rem; }
.news-date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; display: block; }
.news-content h3 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--text-dark); }
.news-content p { font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.btn-read-more {
    color: var(--accent); font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 8px;
}
.btn-read-more:hover { color: var(--gold); }

/* Video Showcase Area */
.video-showcase { margin-top: 5rem; }
.video-container {
    position: relative; width: 100%; max-width: 900px; margin: 0 auto; border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); aspect-ratio: 16/9;
}
.video-placeholder {
    width: 100%; height: 100%; background: #0f172a; display: flex; align-items: center; justify-content: center; position: relative;
}
.video-placeholder img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.play-btn {
    position: absolute; width: 80px; height: 80px; background: var(--gold); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 2rem; cursor: pointer; transition: var(--transition);
    z-index: 5; box-shadow: 0 0 0 0 rgba(220,38,38,0.4); animation: pulse-red 2s infinite;
}
.play-btn:hover { transform: scale(1.1); background: var(--accent); }

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(220,38,38,0.7); }
    70% { box-shadow: 0 0 0 20px rgba(220,38,38,0); }
    100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-float {
    position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background-color: #25d366; color: #FFF; border-radius: 50px;
    text-align: center; font-size: 35px; box-shadow: 0 4px 15px rgba(0,0,0,0.15); z-index: 1000; display: flex; justify-content: center; align-items: center; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); background-color: #1ebe57; color: #FFF; }

/* ==========================================================================
   Contact Section & Form - Premium
   ========================================================================== */
.contact-section { background: linear-gradient(180deg, var(--bg-section) 0%, #fff 100%); padding-top: 3rem; }
.contact-info-bar { display: flex; justify-content: center; gap: 3rem; padding: 2.5rem 0; margin-bottom: 3rem; flex-wrap: wrap; border-bottom: none; }
.info-item { display: flex; align-items: flex-start; gap: 18px; flex: 0 1 auto; min-width: 250px; justify-content: flex-start; background: #fff; padding: 1.5rem 2rem; border-radius: var(--radius); box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.04); transition: var(--transition); }
.info-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.info-item i { font-size: 1.8rem; color: var(--accent); margin-top: 2px; background: linear-gradient(135deg, rgba(30,58,138,0.1), rgba(59,130,246,0.08)); width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-item h4 { margin-bottom: 0.3rem; color: var(--text-dark); font-size: 1rem; font-weight: 700; }
.info-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.contact-grid-alt { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: stretch; margin-bottom: 3rem; }
.form-group-alt { margin-bottom: 0.85rem; }
.form-control-alt { width: 100%; padding: 0.9rem 1.2rem; border: 2px solid #e2e8f0; border-radius: 10px; font-family: var(--font-body); font-size: 0.95rem; color: var(--text-dark); transition: var(--transition); background: #f8fafc; }
.form-control-alt:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(30,58,138,0.08); background: #fff; }
.form-control-alt::placeholder { color: #94a3b8; }
select.form-control-alt { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; cursor: pointer; }
textarea.form-control-alt { resize: vertical; min-height: 120px; }
.btn-submit-alt { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: #fff; border: none; width: 100%; padding: 1.1rem; font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: var(--transition); text-transform: uppercase; border-radius: 10px; letter-spacing: 0.5px; box-shadow: 0 4px 15px rgba(30,58,138,0.3); }
.btn-submit-alt:hover { background: linear-gradient(135deg, var(--accent-hover), var(--accent)); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(30,58,138,0.4); }

.map-container { height: 100%; min-height: 350px; border: 2px solid #e2e8f0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.map-container iframe { width: 100%; height: 100%; min-height: 350px; }

.security-notice { background: rgba(37,211,102,0.1); color: #15803d; padding: 0.75rem; border-radius: 8px; font-size: 0.85rem; margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: 10px; border: 1px solid rgba(37,211,102,0.2); }
.security-notice i { margin-top: 3px; font-size: 1rem; }
.form-message.success { color: #15803d; background: #dcfce7; padding: 10px; border-radius: 5px; text-align: center; }
.form-message.error { color: #b91c1c; background: #fee2e2; padding: 10px; border-radius: 5px; text-align: center; }

/* ==========================================================================
   Footer (Dark for framing the layout)
   ========================================================================== */
.footer { background: linear-gradient(180deg, #0a0f1e 0%, #0f172a 100%); padding-top: 0; border-top: none; color: #cbd5e1; }
.footer h4 { color: #ffffff; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-top: 3rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { height: 50px; margin-bottom: 1.5rem; filter: brightness(0) invert(1); opacity: 0.9; } /* Vuelve blanco el logo ENORS sobre oscuro */
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.05); border-radius: 50%; color: #fff; }
.social-links a:hover { background: var(--accent); transform: translateY(-3px); color: #fff; }
.col-footer h4 { margin-bottom: 1.5rem; position: relative; padding-bottom: 0.5rem; }
.col-footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--accent); }
.col-footer ul { list-style: none; }
.col-footer ul li { margin-bottom: 0.8rem; display: flex; gap: 10px; align-items: center; }
.col-footer ul li a { color: #cbd5e1; }
.col-footer ul li a:hover { color: var(--accent); }
.col-footer ul li i { color: var(--accent); }
.contact-col ul li { align-items: flex-start; }
.contact-col ul li i { margin-top: 5px; }
.map-container { width: 100%; border-radius: var(--radius); overflow: hidden; margin-bottom: 3rem; opacity: 0.8; transition: var(--transition); box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
.map-container:hover { opacity: 1; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; }

/* ==========================================================================
   New Sections (About Stats & Why Choose Us)
   ========================================================================== */
.stats-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.is-visible { opacity: 1; transform: translate(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@media (max-width: 992px) { 
    .about-grid, .footer-top, .contact-grid, .contact-grid-alt { grid-template-columns: 1fr; } 
    .tech-bg { height: 300px; } 
    .stats-mini-grid { grid-template-columns: 1fr; }
    .why-choose-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .featured-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 70%; height: 100vh; background: #ffffff;
        flex-direction: column; justify-content: center; transition: var(--transition); box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    .nav-links.active { right: 0; }
    .mobile-toggle { display: block; z-index: 1001; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
