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

:root {
    --orange: #FF8000;
    --dark-blue: #1a3a52;
    --light-blue: #2d5a7b;
    --gray-light: #f5f5f5;
    --gray-dark: #333;
    --text-primary: #1a1a1a;
    --border: #ddd;
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 25px rgba(0,0,0,0.15);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

/* ========== ANIMACIONES GLOBALES ========== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* ========== HEADER ========== */
header {
    background: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    animation: slideDown 0.6s ease-out;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 32px;
    color: var(--orange);
    font-weight: 900;
    animation: float 3s ease-in-out infinite;
}

.logo-text {
    color: var(--gray-dark);
}

.logo-text span {
    color: var(--orange);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray-dark);
    transition: color 0.3s ease;
    padding: 10px;
}

.menu-toggle:hover {
    color: var(--orange);
}

.menu-toggle.active {
    color: var(--orange);
}

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

nav a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

nav a:hover {
    color: var(--orange);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--orange);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--orange);
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: #e67e00;
    border-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 128, 0, 0.3);
}

/* ========== MENU MÓVIL ========== */
.nav-mobile {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    width: 100%;
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.4s ease-out;
    z-index: 999;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    padding: 18px 20px;
    border-bottom: 1px solid var(--gray-light);
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-mobile a:hover {
    background: var(--gray-light);
    color: var(--orange);
    padding-left: 30px;
}

.nav-mobile .cta-button {
    border-radius: 0;
    margin: 0;
    width: 100%;
    text-align: center;
}

/* ========== FOOTER ========== */
footer {
    background: var(--dark-blue);
    color: white;
    padding: 50px 20px 20px;
    animation: fadeInUp 0.8s ease-out;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    animation: fadeInUp 0.8s ease-out both;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

.footer-section h4 {
    color: var(--orange);
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-section a:hover {
    color: var(--orange);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.social-links a:hover::before {
    width: 80px;
    height: 80px;
}

.social-links a:hover {
    color: white;
    transform: translateY(-5px);
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-title h2 {
    font-size: 42px;
    color: var(--gray-dark);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
    animation: scaleIn 0.6s ease-out 0.3s both;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 30px auto 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ========== CARDS ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 0.8s ease-out both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--orange) 0%, #ff9933 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card:hover .card-image {
    background: linear-gradient(135deg, #e67e00 0%, #ff8000 100%);
    filter: brightness(1.1);
}

.card-image::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: top 0.4s ease;
}

.card:hover .card-image::before {
    top: 100%;
}

.card-content {
    padding: 25px;
    animation: fadeInUp 0.6s ease-out;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--gray-dark);
    font-weight: 600;
}

.card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ========== SERVICIOS SECTION ========== */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.servicio-item {
    padding: 30px;
    border-left: 4px solid var(--orange);
    background: var(--gray-light);
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInLeft 0.8s ease-out both;
    position: relative;
    overflow: hidden;
}

.servicio-item:nth-child(1) { animation-delay: 0.1s; }
.servicio-item:nth-child(2) { animation-delay: 0.2s; }
.servicio-item:nth-child(3) { animation-delay: 0.3s; }
.servicio-item:nth-child(4) { animation-delay: 0.4s; }
.servicio-item:nth-child(5) { animation-delay: 0.5s; }
.servicio-item:nth-child(6) { animation-delay: 0.6s; }
.servicio-item:nth-child(7) { animation-delay: 0.7s; }
.servicio-item:nth-child(8) { animation-delay: 0.8s; }
.servicio-item:nth-child(9) { animation-delay: 0.9s; }

.servicio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 128, 0, 0.1);
    transition: left 0.4s ease;
    z-index: 0;
}

.servicio-item:hover::before {
    left: 0;
}

.servicio-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
    border-left-color: #e67e00;
}

.servicio-item > * {
    position: relative;
    z-index: 1;
}

.servicio-item h3 {
    color: var(--dark-blue);
    margin-bottom: 12px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.servicio-item:hover h3 {
    color: var(--orange);
}

.servicio-item p {
    color: #666;
    font-size: 14px;
}

/* ========== BOTONES ========== */
.btn-primary {
    background: var(--orange);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: #e67e00;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border: 2px solid white;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* ========== HERO SECTION ========== */
.hero {
    color: white;
    padding: 120px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.75) 0%, rgba(45, 90, 123, 0.75) 100%);
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 128, 0, 0.08);
    border-radius: 50%;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: rgba(255, 128, 0, 0.05);
    border-radius: 50%;
    z-index: 0;
    animation: float 8s ease-in-out infinite 1s;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInDown 0.8s ease-out;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ========== COBERTURA SECTION ========== */
.coverage-map {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    animation: scaleIn 0.8s ease-out;
}

.coverage-map h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--gray-dark);
    font-size: 24px;
}

.coverage-map svg {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.coverage-map:hover svg {
    transform: scale(1.05);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background: var(--dark-blue);
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stat-box:nth-child(1) { animation-delay: 0.1s; }
.stat-box:nth-child(2) { animation-delay: 0.2s; }
.stat-box:nth-child(3) { animation-delay: 0.3s; }
.stat-box:nth-child(4) { animation-delay: 0.4s; }

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--orange);
    transition: left 0.5s ease;
    z-index: 0;
}

.stat-box:hover::before {
    left: 0;
}

.stat-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.stat-box:hover .stat-number {
    color: white;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

/* ========== INFRAESTRUCTURA SECTION ========== */
.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.infra-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.8s ease-out both;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.infra-card:nth-child(1) { animation-delay: 0.1s; }
.infra-card:nth-child(2) { animation-delay: 0.2s; }
.infra-card:nth-child(3) { animation-delay: 0.3s; }
.infra-card:nth-child(4) { animation-delay: 0.4s; }
.infra-card:nth-child(5) { animation-delay: 0.5s; }
.infra-card:nth-child(6) { animation-delay: 0.6s; }

.infra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--orange);
    transition: height 0.4s ease;
}

.infra-card:hover::before {
    height: 100%;
}

.infra-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.infra-card h3 {
    color: var(--orange);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.infra-card ul {
    list-style: none;
    color: #666;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.infra-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.infra-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.infra-card:hover li::before {
    transform: scale(1.3);
}

/* ========== CONTACTO SECTION ========== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    animation: fadeInLeft 0.8s ease-out;
}

.contact-form h3 {
    color: var(--gray-dark);
    margin-bottom: 25px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out both;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 10px rgba(255, 128, 0, 0.2);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 10px;
    animation: fadeInRight 0.8s ease-out;
}

.contact-info h3 {
    color: var(--gray-dark);
    margin-bottom: 30px;
    font-size: 24px;
}

.info-item {
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease-out both;
    transition: all 0.3s ease;
}

.info-item:nth-child(1) { animation-delay: 0.1s; }
.info-item:nth-child(2) { animation-delay: 0.2s; }
.info-item:nth-child(3) { animation-delay: 0.3s; }
.info-item:nth-child(4) { animation-delay: 0.4s; }
.info-item:nth-child(5) { animation-delay: 0.5s; }

.info-item:hover {
    transform: translateX(10px);
}

.info-item h4 {
    color: var(--orange);
    margin-bottom: 8px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.info-item:hover h4 {
    color: #e67e00;
}

.info-item p {
    color: #666;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
    }

    .cta-button:not(.nav-mobile .cta-button) {
        display: none;
    }

    .hero {
        padding: 80px 20px 60px;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .container {
        padding: 60px 20px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .infrastructure-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .container {
        padding: 40px 15px;
    }

    .card-image {
        height: 150px;
        font-size: 40px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 28px;
    }

    .nav-mobile {
        top: 60px;
    }
}

/* MARQUEE SECTION */
.marquee-section {
    position: relative;
    padding: 120px 20px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0 100%);
}

.marquee-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(26, 58, 82, 0.9) 0%,
        rgba(26, 58, 82, 0.8) 50%,
        rgba(26, 58, 82, 0.9) 100%);
    z-index: 1;
}

.marquee-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
}

.marquee-text {
    display: flex;
    gap: 120px;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
    padding: 40px 0;
}

.marquee-text span {
    font-size: 48px;
    font-weight: 900;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    flex-shrink: 0;
    -webkit-text-stroke: 2px white;
    text-stroke: 2px white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .marquee-section {
        min-height: 320px;
        padding: 80px 20px;
        clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
    }

    .marquee-text {
        gap: 100px;
        padding: 30px 0;
    }

    .marquee-text span {
        font-size: 40px;
        -webkit-text-stroke: 1.8px white;
    }
}

@media (max-width: 768px) {
    .marquee-section {
        min-height: 280px;
        padding: 60px 20px;
        clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0 100%);
    }

    .marquee-text {
        gap: 80px;
        padding: 25px 0;
    }

    .marquee-text span {
        font-size: 28px;
        letter-spacing: 2px;
        -webkit-text-stroke: 1.5px white;
    }
}

@media (max-width: 480px) {
    .marquee-section {
        min-height: 220px;
        padding: 40px 20px;
        clip-path: polygon(0 8%, 100% 0%, 100% 92%, 0 100%);
    }

    .marquee-text {
        gap: 50px;
        padding: 20px 0;
    }

    .marquee-text span {
        font-size: 18px;
        letter-spacing: 1px;
        -webkit-text-stroke: 1px white;
    }
}

/* MISSION SECTION */
.mission-section {
    padding: 100px 20px;
    background: white;
    animation: fadeInUp 0.8s ease-out;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-left {
    animation: fadeInLeft 0.8s ease-out;
}

.mission-left h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--gray-dark);
    line-height: 1.2;
    margin-bottom: 50px;
    margin-top: 0;
}

.mission-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.mission-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.mission-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-dark);
    margin: 0 0 8px 0;
}

.mission-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.mission-dots {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--orange);
    width: 30px;
    border-radius: 5px;
}

.dot:hover {
    background: var(--orange);
}

.mission-description {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-signature {
    margin-top: 40px;
}

.mission-signature p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

.mission-signature p.signature {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-dark);
    font-style: italic;
    margin-top: 10px;
}

.mission-right {
    animation: fadeInRight 0.8s ease-out;
    position: relative;
}

.mission-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.mission-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.mission-image-wrapper:hover .mission-image {
    transform: scale(1.05);
}

.mission-image-overlay {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--orange);
    z-index: -1;
    transition: all 0.3s ease;
}

.mission-image-wrapper:hover .mission-image-overlay {
    bottom: -40px;
    right: -40px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .mission-container {
        gap: 60px;
    }

    .mission-left h2 {
        font-size: 40px;
    }

    .mission-image-overlay {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 60px 20px;
    }

    .mission-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mission-left h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .mission-image-overlay {
        width: 120px;
        height: 120px;
        bottom: -30px;
        right: -30px;
    }
}

@media (max-width: 480px) {
    .mission-section {
        padding: 40px 20px;
    }

    .mission-left h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .mission-item {
        margin-bottom: 30px;
    }

    .mission-icon {
        font-size: 32px;
    }

    .mission-text h3 {
        font-size: 16px;
    }

    .mission-description {
        font-size: 14px;
    }

    .mission-image-overlay {
        width: 100px;
        height: 100px;
        bottom: -25px;
        right: -25px;
    }

    .mission-signature p.signature {
        font-size: 18px;
    }
}