:root {
    --primary: #2D73B3; /* Azul Original */
    --accent: #2D73B3;  /* Reemplazo de Naranja por Azul Corporativo */
    --dark: #001A33;    /* Navy Profundo de Logo */
    --light: #F8F9FA;
    --text: #333333;
    --text-muted: #666666;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    touch-action: manipulation; /* Prevents double-tap zoom in some browsers */
}

/* --- Top Info Bar (Dashboard) --- */
.top-info-bar {
    background: #001A33;
    color: white;
    padding: 8px 0;
    font-size: 0.75rem; /* Slightly smaller for mobile */
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    overflow: hidden;
}


.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
}

.indicator-item span {
    color: var(--primary);
}

.trend-up { color: #2ecc71 !important; }
.trend-down { color: #e74c3c !important; }

/* Adjust Header for Top Bar */
header {
    top: 35px !important; /* Move header down to make space for top bar */
}

header.scrolled {
    top: 0 !important;
}


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

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

h1, h2, h3, h4 {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark);
}

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

/* --- Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo img {
    height: 50px;
    transition: var(--transition);
    filter: brightness(0) invert(1); /* Logo blanco sobre slider oscuro */
}

header.scrolled .logo img {
    filter: none; /* Logo original sobre fondo blanco */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--white); /* Texto blanco sobre slider */
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

header.scrolled nav ul li a {
    color: var(--dark); /* Texto oscuro cuando hay scroll */
}

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

.btn-contact {
    background: var(--accent);
    color: white !important;
    padding: 12px 25px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* --- Hero Slider & Particles --- */
.hero-slider {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #001A33;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

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

.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;
}

.slide.active {
    opacity: 1;
}

/* Dark overlay for slider */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 26, 51, 0.55); /* Oscurecemos un poco más para mayor contraste */
}

.hero-content {
    position: relative;
    z-index: 5;
    color: white;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 5rem;
    color: white;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 0.9;
}

.hero-content h1 span {
    color: var(--accent);
}

.typewriter-container {
    font-size: 1.5rem;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    min-height: 1.6em;
}

#typewriter-text {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.cursor {
    margin-left: 5px;
    font-weight: 200;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* --- Sections --- */
section {
    padding: 120px 0;
}

#nosotros {
    padding-bottom: 100px;
}

.section-title {
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--accent);
}

/* --- Nosotros --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-image {
    position: relative;
}

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

.about-experience {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--accent);
    color: white;
    padding: 30px;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.about-experience span {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

/* --- Servicios --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light);
    padding: 50px;
    border-radius: 8px;
    border-bottom: 5px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    border-bottom-color: var(--accent);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    margin-top: 20px;
}

.service-card ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
}

.service-card ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* --- Pilares --- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.pillar-card {
    text-align: center;
    padding: 30px;
    transition: var(--transition);
}

.pillar-card i {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 25px;
    display: block;
}

.pillar-card h4 {
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.pillar-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.pillar-card:hover {
    transform: translateY(-10px);
}

/* --- Gallery (Grid Mosaic) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 26, 51, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
    font-weight: 600;
}

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

/* --- Tech Capabilities Grid --- */
.tech-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tech-item {
    background: #f1f4f8;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.tech-item:nth-child(2) {
    border-left-color: var(--accent);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.tech-item h4 {
    font-size: 1.3rem;
    font-family: 'Barlow', sans-serif;
    color: var(--dark);
    margin-bottom: 12px;
}

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

/* --- Contacto --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info-card {
    margin-bottom: 40px;
}

.contact-info-card h4 {
    margin-bottom: 10px;
    color: var(--accent);
}

.contact-form {
    background: var(--light);
    padding: 50px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    background: white;
}

.btn-submit {
    background: var(--dark);
    color: white;
    border: none;
    padding: 15px 40px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--accent);
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- Seguridad HSE Section --- */
.hse-section {
    background: linear-gradient(rgba(0,26,51,0.95), rgba(0,26,51,0.95)), url('assets/nosotros-bg.jpg') center/cover fixed;
    color: white;
    padding: 100px 0;
}

.hse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.hse-item {
    text-align: center;
    padding: 35px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.hse-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
    border-color: var(--accent);
}

.hse-item i {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 25px;
    display: block;
}

.hse-item h4 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    color: white;
}

.hse-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

/* --- KPI & Metrics Section (Redesigned Iconic) --- */
.kpi-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #001A33 0%, #002D59 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.kpi-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(45, 115, 179, 0.1) 0%, transparent 70%);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}


.kpi-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

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

.kpi-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
    display: block;
    text-shadow: 0 0 15px rgba(231, 76, 60, 0.4);
}

.kpi-card h4 {
    font-size: 3.8rem;
    line-height: 1;
    margin-bottom: 10px;
}

.kpi-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Skills Section (Radial Charts) --- */
.skills-section {
    padding: 120px 0;
    background: #f8fbff;
}

.radial-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 60px;
}


.radial-skill-item {
    text-align: center;
}

.radial-progress-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
}

.radial-progress-wrapper svg {
    width: 200px;
    height: 200px;
    transform: rotate(-90deg);
}

.radial-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 12;
}

.radial-fill {
    fill: none;
    stroke: var(--primary);
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 565; /* Circumference 2*PI*R (R=90) approx 565 */
    stroke-dashoffset: 565;
    transition: stroke-dashoffset 2s ease-out;
}

.radial-skill-item.quality .radial-fill {
    stroke: #27ae60;
}

.radial-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.radial-text .percentage {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    font-family: 'Barlow', sans-serif;
}

.radial-skill-item h4 {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 700;
}

.clients-section {
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
    position: relative;
}

.clients-slider {
    display: flex;
    width: calc(250px * 12); /* Double total items for seamless loop */
    animation: scroll 30s linear infinite;
    align-items: center;
}

.clients-slider:hover {
    animation-play-state: paused;
}

.client-logo-container {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.client-logo {
    max-width: 140px;
    height: auto;
    filter: grayscale(1) opacity(0.5);
    transition: var(--transition);
}

.client-logo:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.15);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); } /* Match number of unique logos */
}

/* --- Google Reviews Section --- */
.reviews-section {
    padding: 100px 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    position: relative;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.review-stars {
    color: #f1c40f;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #4285F4;
    font-weight: 600;
}


/* --- Reclutamiento / Careers --- */
.careers-box {
    margin-top: 60px;
    padding: 50px;
    background: #f1f4f8;
    border-radius: 12px;
    border-left: 10px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.careers-box::after {
    content: '\f0c0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 30px;
    bottom: -20px;
    font-size: 8rem;
    color: rgba(0,0,0,0.03);
}

.careers-box h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.careers-box p {
    max-width: 700px;
    margin-bottom: 25px;
}

.btn-careers {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-careers:hover {
    background: var(--dark);
    transform: translateX(5px);
}


/* --- Hero Buttons & Brochure --- */
.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-brochure {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-brochure:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-3px);
}

.btn-brochure i {
    color: #e74c3c; /* PDF Red */
    font-size: 1.2rem;
}

/* --- Encuesta de Satisfacción Section --- */
.survey-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f4f8 0%, #e9f0f7 100%);
    text-align: center;
}

.survey-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border: 1px dashed var(--primary);
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.survey-box i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.btn-survey {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 35px;
    background: var(--dark);
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 1px;
}

.btn-survey:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(45, 115, 179, 0.3);
}

/* --- Trabaja con nosotros (Main Page) --- */
.careers-main {
    padding: 100px 0;
    background: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.careers-main::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('assets/nosotros-bg.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.careers-main-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.careers-main h2 {
    color: white !important;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.careers-main p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* --- Noticias Mineras Section --- */
.news-section {
    padding: 100px 0;
    background: #f1f4f8;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

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

.news-image {
    height: 200px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 30px;
}

.news-tag {
    display: inline-block;
    background: rgba(45, 115, 179, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.news-content h4 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--dark);
}

.news-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.btn-news {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-news:hover {
    gap: 12px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .container { padding: 0 25px; }
    .hero-content h1 { font-size: 2.8rem; }
    .top-bar-left { display: none; } /* Hide time/weather */

    /* Hamburger Display */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 30px;
        height: 3px;
        background: var(--white);
        transition: var(--transition);
    }

    header.scrolled .hamburger span {
        background: var(--dark);
    }

    /* Mobile Nav */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        padding: 100px 40px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 25px;
    }

    nav ul li a {
        color: var(--dark) !important;
        font-size: 1.2rem;
    }

    /* Hamburger Active State */
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }
}

@media (max-width: 480px) {
    #current-weather { display: none; }
    .top-info-bar { font-size: 0.7rem; }
    .top-bar-right { gap: 10px; justify-content: center; width: 100%; }
    .hero-content h1 { font-size: 2.2rem; }
}


