﻿@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Corporate Palette */
    --primary: #4F8699;
    /* Industrial Teal */
    --primary-dark: #115E59;
    --primary-light: #F0FDFA;

    --secondary: #2C3E50;
    /* Dark Charcoal */
    --gray-dark: #374151;
    --gray-medium: #6B7280;
    --gray-light: #E5E7EB;

    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;

    --accent: #F59E0B;
    /* Subtle Safety Orange accent if needed */

    --font-main: 'Plus Jakarta Sans', sans-serif;

    /* Sharp Radius */
    --radius-sm: 2px;
    --radius-md: 4px;

    /* Shadow System */
    --shadow-sm: 0 1px 2px 0 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);
}

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

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    scroll-snap-type: y proximity;
}

body {
    font-family: var(--font-main);
    color: var(--gray-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

section {
    max-width: 100%;
    overflow-x: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* Compensar header fixed en todas las secciones excepto Hero */
section:not(.hero-section) {
    padding-top: 70px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    /* Sharp corners */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* ========================================
   HEADER & NAVIGATION - Pure CSS Mobile Menu
   ======================================== */

/* Header principal */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    padding: 16px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-light);
}

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

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1001;
}

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

/* Checkbox oculto para controlar el menú */
.menu-toggle {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Botón hamburguesa (oculto en desktop) */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    opacity: 1;
    transform: translateY(0) rotate(0);
    transition: all 0.3s ease;
}

/* Transformación a X cuando el menú está abierto */
#menu-toggle:checked~.header-container .hamburger-line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

#menu-toggle:checked~.header-container .hamburger-line:nth-child(2) {
    opacity: 0;
}

#menu-toggle:checked~.header-container .hamburger-line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Navegación - Desktop */
.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-weight: 500;
    color: var(--gray-medium);
    font-size: 0.95rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links li>a:hover {
    color: var(--primary);
}

.nav-links li>a:hover::after {
    width: 100%;
}

/* Mantener línea visible cuando dropdown está activo */
.dropdown.active>a::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.4s ease;
}

.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 16px;
    background: white;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 290px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    z-index: 1000;
    pointer-events: none;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    margin: 0;
    border-bottom: 1px solid var(--gray-light);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--gray-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 24px;
}

/* CTA Button - Desktop */
.nav-cta-desktop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background-color: var(--primary);
    color: white;
    border: 1px solid var(--primary);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(79, 134, 153, 0.2);
}

.nav-cta-desktop::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-cta-desktop:hover::before {
    left: 100%;
}

.nav-cta-desktop:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(79, 134, 153, 0.4);
}

.nav-cta-desktop:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(79, 134, 153, 0.3);
}

/* CTA Button - Mobile (oculto en desktop) */
.nav-cta-mobile {
    display: none;
}

/* ========================================
   RESPONSIVE - HEADER/NAVBAR
   ======================================== */

/* ===== TABLET (768px - 1024px) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .site-header {
        padding: 24px 0;
        /* Aumentado para mayor altura */
    }

    .header-container {
        padding: 0 20px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-links {
        gap: 24px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .nav-cta-desktop {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

/* ===== TABLET PORTRAIT & MOBILE (≤ 768px) ===== */
@media (max-width: 768px) {

    /* Header ajustado - un poco más alto */
    .site-header {
        padding: 20px 0;
    }

    .header-container {
        padding: 0 20px;
    }

    /* Logo optimizado para tablet */
    .logo {
        font-size: 1.35rem;
    }

    /* Ocultar botón CTA desktop */
    .nav-cta-desktop {
        display: none;
    }

    /* Mostrar botón hamburguesa */
    .hamburger-btn {
        display: flex !important;
    }

    /* Botón hamburguesa optimizado */
    .hamburger-btn span {
        width: 26px;
        height: 2.5px;
    }

    /* Mostrar botón cerrar */
    .close-btn {
        display: flex;
    }

    /* Navegación móvil - Estado cerrado por defecto */
    .nav-list {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 80px 32px 40px;

        /* Estado inicial: oculto */
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: opacity 0.4s ease,
            transform 0.4s ease,
            visibility 0.4s ease;
    }

    /* Estado ABIERTO - cuando checkbox está marcado */
    #menu-toggle:checked~.header-container .nav-list {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    /* Links en tablet */
    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
        position: relative;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    /* Línea separadora con gradiente */
    .nav-links li::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 5%;
        width: 90%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(79, 134, 153, 0.3), transparent);
        opacity: 0.8;
    }

    .nav-links li:last-child::after {
        display: none;
    }

    .nav-links a {
        font-size: 1.15rem;
        padding: 20px 32px;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-weight: 500;
    }

    .nav-links a::after {
        display: none;
    }

    /* CTA Link destacado en mobile */
    .nav-cta-item {
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-bottom: none !important;
    }

    .nav-cta-link {
        background: var(--primary) !important;
        color: white !important;
        border-radius: var(--radius-sm);
        font-weight: 600 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(79, 134, 153, 0.3);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .nav-cta-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
        z-index: 0;
    }

    .nav-cta-link:hover::before {
        left: 100%;
    }

    .nav-cta-link:hover {
        background: var(--primary-dark) !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(79, 134, 153, 0.5) !important;
    }

    .nav-cta-link:active {
        transform: translateY(0);
        box-shadow: 0 4px 12px rgba(79, 134, 153, 0.4) !important;
    }

    /* Dropdown en tablet */
    .dropdown-menu {
        position: static;
        margin-top: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        padding: 0;
        min-width: 100%;
        width: 100%;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu a {
        font-size: 1.05rem;
        padding: 18px 32px;
        min-height: 56px;
        width: 100%;
    }

    .dropdown-menu a:hover {
        padding-left: 36px;
    }

    /* CTA tablet dentro del menú */
    .nav-cta-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 36px;
        width: 100%;
        max-width: 320px;
        padding: 16px 36px;
        font-size: 1.05rem;
        font-weight: 600;
        border-radius: var(--radius-sm);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        background-color: var(--primary);
        color: white;
        border: 1px solid var(--primary);
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(79, 134, 153, 0.3);
    }

    .nav-cta-mobile::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .nav-cta-mobile:hover::before {
        left: 100%;
    }

    .nav-cta-mobile:hover {
        background-color: var(--primary-dark);
        border-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(79, 134, 153, 0.5);
    }

    .nav-cta-mobile:active {
        transform: translateY(0);
        box-shadow: 0 4px 12px rgba(79, 134, 153, 0.4);
    }

    /* Botón cerrar optimizado para tablet */
    .close-btn {
        top: 18px;
        right: 20px;
        font-size: 2.8rem;
    }

    /* Hero Section - Tablet */
    .hero-section {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-bg {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .hero-btns {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-btns .btn {
        flex: 1;
        min-width: 200px;
        max-width: 280px;
    }

    /* About Section - Tablet 100vh */
    #nosotros {
        min-height: 100vh;
        padding: 40px 0 !important;
        /* Reducido para mejor distribución */
        display: flex;
        align-items: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 0;
        /* Sin gap extra */
    }

    .about-video-wrapper {
        display: none;
    }

    .about-img {
        display: none;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
        /* Reducido */
    }

    .section-desc {
        font-size: 1rem;
        margin-bottom: 20px;
        /* Reducido */
    }

    .mission-vision-inline {
        margin-top: 20px;
        /* Reducido */
        margin-bottom: 20px;
        /* Reducido */
        gap: 12px;
        /* Reducido */
    }

    .mv-item h4 {
        font-size: 0.7rem;
        /* Reducido de 1rem */
    }

    .mv-item p {
        font-size: 1rem;
        /* Igual que .section-desc */
    }

    .stats-grid {
        margin-top: 20px;
        /* Reducido */
        padding-top: 16px;
        /* Reducido */
        gap: 12px;
        /* Reducido */
    }

    .stat-item strong {
        font-size: 1.5rem;
    }

    .stat-item span {
        font-size: 0.5rem;
    }

    /* Services Section - Tablet 100vh Compact */
    #servicios {
        min-height: 100vh;
        padding: 60px 0 !important;
        display: flex;
        align-items: center;
    }

    .service-row {
        margin-bottom: 32px;
        /* Reducido para caber más */
        display: flex;
        flex-direction: column;
        /* Contenido arriba, imagen abajo */
        gap: 16px;
    }

    .service-row:last-child {
        margin-bottom: 0;
    }

    .feature-list {
        display: grid !important;
        /* Mostrar en grid */
        grid-template-columns: repeat(2, 1fr);
        /* 2 columnas */
        gap: 8px 12px;
        /* gap vertical y horizontal */
        margin-top: 12px;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 0.75rem;
        /* Texto pequeño */
    }

    .feature-icon {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
        font-size: 0.65rem;
    }

    .feature-text {
        line-height: 1.3;
    }

    .service-content h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .service-content p {
        font-size: 0.9rem;
        margin-bottom: 0;
        /* Sin margen extra */
    }

    .service-visual {
        display: block;
        /* Mostrar imágenes */
        width: 100%;
        order: 2;
        /* Imagen después del contenido */
    }

    .service-visual img {
        width: 100%;
        /* Ancho completo */
        height: auto;
        border-radius: var(--radius-md);
        object-fit: cover;
        max-height: 200px;
        /* Limitar altura para no ocupar mucho espacio */
    }

    /* Contact Section - Tablet 100vh */
    #contacto {
        min-height: 100vh;
        padding: 60px 0 !important;
        display: flex;
        align-items: center;
    }

    .contact-grid {
        gap: 32px;
    }

    .input-field,
    textarea {
        padding: 12px 14px;
        margin-bottom: 12px;
        font-size: 0.95rem;
    }

    /* Footer - Tablet 100vh */
    .site-footer {
        min-height: 100vh;
        padding: 40px 0 20px !important;
        display: flex;
        align-items: center;
    }

    .footer-grid {
        gap: 24px;
        margin-bottom: 20px;
    }

    .footer-col h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .footer-col ul li {
        margin-bottom: 6px;
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 16px;
        font-size: 0.8rem;
    }
}

/* ===== MOBILE (≤ 390px) ===== */
@media (max-width: 320px) {

    /* Header más compacto pero con buen aire */
    .site-header {
        padding: 16px 0;
    }

    .header-container {
        padding: 0 16px;
    }

    /* Logo más pequeño */
    .logo {
        font-size: 1.25rem;
        gap: 3px;
    }

    /* Hamburguesa más compacta */
    .hamburger-btn {
        padding: 6px;
        gap: 5px;
    }

    .hamburger-btn span {
        width: 24px;
        height: 2px;
    }

    /* Menú móvil más compacto */
    .nav-list {
        padding: 70px 20px 32px;
    }

    /* Links más pequeños */
    .nav-links {
        max-width: 100%;
    }

    .nav-links a {
        font-size: 1.05rem;
        padding: 18px 20px;
        min-height: 56px;
    }

    /* Dropdown móvil */
    .dropdown-menu a {
        font-size: 0.95rem;
        padding: 15px 20px;
        min-height: 50px;
    }

    .dropdown-menu a:hover {
        padding-left: 28px;
    }

    /* CTA móvil más compacto */
    .nav-cta-mobile {
        margin-top: 28px;
        max-width: 280px;
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* Botón cerrar más pequeño */
    .close-btn {
        top: 14px;
        right: 16px;
        font-size: 2.5rem;
        width: 40px;
        height: 40px;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 8px;
    }

    .hero-content h1 {
        font-size: 1.85rem;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    /* About Section - Mobile 100vh */
    #nosotros {
        min-height: 100vh;
        padding: 40px 0 !important;
        display: flex;
        align-items: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-video-wrapper {
        display: none;
    }

    .about-img {
        display: none;
    }

    .section-tag {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .section-desc {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .mission-vision-inline {
        margin-top: 16px;
        margin-bottom: 16px;
        gap: 12px;
    }

    .mv-item {
        gap: 8px;
    }

    .mv-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .mv-item h4 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .mv-item p {
        font-size: 0.75rem;
    }

    .mv-divider {
        margin: 8px 0;
    }

    .stats-grid {
        margin-top: 16px;
        padding-top: 16px;
        gap: 6px;
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        grid-template-rows: 1fr;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
    }

    .stat-item strong {
        font-size: 0.95rem;
        margin-bottom: 0;
        line-height: 1;
    }

    .stat-item span {
        font-size: 0.5rem;
        /* Muy pequeño */
        line-height: 1.1;
        text-align: center;
    }

    /* Services Section - Mobile 100vh Compact */
    #servicios {
        min-height: 100vh;
        padding: 40px 0 !important;
        display: flex;
        align-items: center;
    }

    .section-header {
        margin-bottom: 32px !important;
    }

    .service-row {
        margin-bottom: 24px;
    }

    .service-row:last-child {
        margin-bottom: 0;
    }

    .feature-list {
        display: none;
    }

    .service-content h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .service-content p {
        font-size: 0.8rem;
    }

    .service-visual {
        display: none;
    }

    /* Contact Section - Mobile 100vh */
    #contacto {
        min-height: 100vh;
        padding: 40px 0 !important;
        display: flex;
        align-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-info {
        order: 2;
    }

    .input-field,
    textarea {
        padding: 10px 12px;
        margin-bottom: 10px;
        font-size: 0.9rem;
    }

    textarea {
        min-height: 80px;
    }

    .btn-submit {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Footer - Mobile 100vh */
    .site-footer {
        min-height: 100vh;
        padding: 32px 0 16px !important;
        display: flex;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 16px;
    }

    .footer-col h4 {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .footer-col ul li {
        margin-bottom: 5px;
        font-size: 0.75rem;
    }

    .footer-col p {
        font-size: 0.75rem;
    }

    .footer-bottom {
        padding-top: 12px;
        font-size: 0.7rem;
    }
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    overflow: hidden;
    padding: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    /* Modern CSS: covers top, right, bottom, left */
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Modern CSS: covers top, right, bottom, left */
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

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

.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: 64px;
    max-width: 800px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--gray-medium);
}


/* --- About Section (New) --- */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.about-video-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    /* border-top removed */
}

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

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: var(--primary);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    font-weight: 600;
}

/* --- Mission & Vision Inline (No Cards) --- */
.mission-vision-inline {
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mv-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mv-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(79, 134, 153, 0.25);
}

.mv-text h4 {
    color: var(--secondary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mv-text p {
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.mv-divider {
    height: 1px;
    background: linear-gradient(to right, transparent 0%, var(--gray-light) 20%, var(--gray-light) 80%, transparent 100%);
    margin: 8px 0;
}

/* --- Services Section (Zig-Zag) --- */
.services-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* Minimalist Divider Line */
.service-row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gray-light), transparent);
    opacity: 0.7;
}

.service-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-row:last-child::after {
    display: none;
}

/* Strict Alternating Order */
.service-row:nth-child(even) .service-content {
    order: 2;
}

.service-row:nth-child(even) .service-visual {
    order: 1;
}

.service-visual img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 480px;
    /* Consistent height */
    object-fit: cover;
    filter: saturate(0.9);
    /* Slightly desaturated for professional look */
    transition: all 0.5s ease;
}

.service-visual img:hover {
    filter: saturate(1.1);
    transform: scale(1.01);
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--secondary);
}

.service-content p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 32px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    /* row gap 16px, column gap 24px */
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    border-radius: 2px;
    /* Sharp */
    flex-shrink: 0;
}

.feature-text {
    font-size: 1rem;
    color: var(--gray-dark);
    font-weight: 500;
}

.input-field {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-light);
}

.input-field:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

.btn-full {
    width: 100%;
}

/* ========================================
   SERVICES SECTION - RESPONSIVE LAYOUT
   ======================================== */

/* ===== TABLET PORTRAIT (768px - 1024px) ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    .services-section {
        padding: 80px 0;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 100px;
    }

    /* CRUCIAL: Forzar IMAGEN siempre arriba en tablet */
    .service-row .service-visual {
        order: 1;
    }

    .service-row .service-content {
        order: 2;
    }

    /* Limitar altura de imagen en tablet */
    .service-visual img {
        height: 400px;
        max-height: 50vh;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    /* Typography ajustada */
    .service-content h3 {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .service-content p {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }

    /* Mantener checklists en 2 columnas en tablet */
    .feature-list {
        grid-template-columns: 1fr 1fr;
        gap: 14px 20px;
    }

    .feature-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 821px) {
    .about-video-wrapper {
        display: none;
    }
}

/* ===== MÓVIL (< 768px) ===== */
@media (max-width: 767px) {
    .services-section {
        padding: 60px 0;
    }

    .service-row {
        display: flex;
        flex-direction: column;
        gap: 32px;
        margin-bottom: 80px;
        padding: 0 20px;
        /* Espaciado lateral optimizado */
    }

    .service-row:last-child {
        margin-bottom: 0;
    }

    /* CRUCIAL: Forzar IMAGEN siempre arriba en móvil */
    .service-row .service-visual {
        order: 1;
    }

    .service-row .service-content {
        order: 2;
    }

    /* Imagen optimizada para móvil */
    .service-visual img {
        height: 250px;
        max-height: 40vh;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    /* Typography móvil */
    .service-content h3 {
        font-size: 1.5rem;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .service-content p {
        font-size: 1rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    /* Checklists en 1 columna para móvil */
    .feature-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-item {
        gap: 10px;
    }

    .feature-icon {
        width: 18px;
        height: 18px;
        min-width: 18px;
        min-height: 18px;
        font-size: 0.65rem;
    }

    .feature-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* ===== MÓVIL PEQUEÑO (< 480px) ===== */
@media (max-width: 480px) {

    .service-row {
        padding: 0 12px 60px 12px;
        /* Padding inferior para el divisor */
        gap: 24px;
        margin-bottom: 60px;
        /* Margen inferior reducido */
    }

    .service-row::after {
        left: 0;
        /* Línea completa en móvil */
        width: 100%;
    }

    .service-visual img {
        height: 200px;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .service-content p {
        font-size: 0.95rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }
}

/* --- Other Responsive Styles (960px breakpoint) --- */
@media (max-width: 960px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        gap: 16px;
    }

    .mv-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.25rem;
    }

    .mv-item {
        gap: 16px;
    }

    .mv-text h4 {
        font-size: 1.1rem;
    }
}

/* Mobile: 390px width and below */
@media (max-width: 390px) {
    .about-video-wrapper {
        display: none !important;
    }

    .about-img {
        display: none !important;
    }
}

/* Tablet Portrait: 768x1024 */
@media (min-width: 768px) and (max-width: 768px) and (min-height: 1024px) and (max-height: 1024px) {
    .about-video-wrapper {
        display: none;
    }
}

/* --- Contact Section --- */
.contact-section {
    min-height: 100vh;
    padding: 100px 0;
    background: #FFFFFF;
    color: var(--secondary);
    position: relative;
    display: flex;
    align-items: center;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info-wrapper .section-subtitle {
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.contact-info-wrapper h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.contact-info-wrapper p {
    color: var(--gray-medium);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--gray-light);
}

.contact-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.contact-profile strong {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary);
}

.contact-profile span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method small {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.method a {
    color: var(--secondary);
    font-weight: 500;
    font-size: 1.05rem;
}

.method a:hover {
    color: var(--primary);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #FFFFFF;
    flex-shrink: 0;
}

.glass-form {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-md);
    position: relative;
}

.glass-form h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--secondary);
}

.input-group {
    margin-bottom: 20px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-light);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--secondary);
    transition: all 0.2s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #FFFFFF;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: var(--radius-sm);
    padding: 14px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

/* --- Footer --- */
.main-footer {
    background: #2C3E50;
    color: #fff;
    padding-top: 80px;
    scroll-snap-align: start;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.3fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand Column */
.brand-col {
    max-width: 350px;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: inline-block;
    color: #fff;
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo span {
    color: var(--primary);
}

.brand-col p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Columns */
.links-col h4,
.services-col h4,
.contact-col h4 {
    font-size: 1rem;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.links-col ul,
.services-col ul {
    list-style: none;
}

.links-col ul li,
.services-col ul li {
    margin-bottom: 14px;
}

.links-col ul a,
.services-col ul a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.links-col ul a::after,
.services-col ul a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.links-col ul a:hover,
.services-col ul a:hover {
    color: var(--primary);
}

.links-col ul a:hover::after,
.services-col ul a:hover::after {
    width: 100%;
}

/* Contact Column */
.contact-col ul {
    list-style: none;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.footer-contact-list i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
    min-width: 20px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s ease;
}

.footer-contact-list a:hover {
    color: var(--primary);
}

.footer-contact-list span {
    color: rgba(255, 255, 255, 0.65);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Responsive Footer */
@media (max-width: 1024px) {

    .brand-col {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding-top: 60px;
    }

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

    .brand-col,
    .links-col,
    .services-col,
    .contact-col {
        text-align: center;
        margin-bottom: 0;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}




/* Ajuste para listas de servicios largas (2 columnas) */
.feature-list {
    align-items: flex-start;
    /* Alinea ícono arriba si el texto es largo */
}


/* ========================================
   MOBILE RESPONSIVE OPTIMIZATIONS
   ======================================== */

/* ===== TABLET & MOBILE LARGE (< 1024px) ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .contact-container {
        gap: 60px;
    }
}

/* ===== MOBILE & TABLET (< 768px) ===== */
@media (max-width: 768px) {

    /* Global Container */
    .container {
        padding: 0 16px;
    }

    /* Typography */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .section-desc {
        font-size: 1rem;
    }

    .section-tag {
        font-size: 0.8rem;
    }

    /* Buttons */

    /* Hero Section */
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    /* About Section */
    .about-section {
        padding: 60px 0;
    }

    .about-grid {
        gap: 40px;
    }

    /* Services Section */
    .services-section {
        padding: 60px 0;
    }

    .service-row {
        gap: 40px;
        margin-bottom: 80px;
    }

    .service-content h3 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .service-content p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    /* Mission/Vision Grid */
    .mission-vision-grid,
    .feature-list {
        grid-template-columns: 1fr;
    }

    /* Contact Section */
    .contact-section {
        padding: 60px 0;
        min-height: auto;
    }

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

    .contact-info-wrapper h2 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .contact-info-wrapper p {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .contact-profile {
        padding: 16px;
        margin-bottom: 40px;
    }

    .contact-profile img {
        width: 50px;
        height: 50px;
    }

    .contact-profile strong {
        font-size: 1rem;
    }

    .contact-methods {
        gap: 20px;
    }

    .method a {
        font-size: 1rem;
    }

    .glass-form {
        padding: 32px 24px;
    }

    .glass-form h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .input-group {
        margin-bottom: 16px;
    }

    /* Footer */
    .main-footer {
        padding-top: 60px;
    }

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

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

    .footer-logo {
        font-size: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .feature-list {
        grid-template-columns: 1fr 1fr;
    }

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

}

/* ===== MOBILE SMALL (< 480px) ===== */
@media (max-width: 480px) {

    /* Container */
    .container {
        padding: 0 12px;
    }

    /* Typography */
    .section-title {
        font-size: 1.5rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    /* Logo */
    .logo {
        font-size: 1.3rem;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-btns .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-rows: 1fr;
        text-align: center;
        gap: 6px;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
    }

    .stat-item strong {
        font-size: 1.2rem;
        /* Reducido para tablet */
        line-height: 1;
    }

    .stat-item span {
        font-size: 0.65rem;
        /* Reducido para tablet */
        line-height: 1.1;
    }

    /* Service Content */
    .service-content h3 {
        font-size: 1.3rem;
    }

    .service-content p {
        font-size: 0.95rem;
    }

    /* Contact Section */
    .contact-info-wrapper h2 {
        font-size: 1.75rem;
    }

    .contact-profile {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .glass-form {
        padding: 24px 16px;
    }

    .glass-form h3 {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer-logo {
        font-size: 1.75rem;
    }

    .brand-col p {
        font-size: 0.9rem;
    }

    .footer-bottom p,
    .footer-legal a {
        font-size: 0.85rem;
    }
}



/* ===== LANDSCAPE MOBILE (height < 500px) ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: auto;
        min-height: 400px;
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .hero-btns {
        flex-direction: row;
        gap: 12px;
    }

    .hero-btns .btn {
        width: auto;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}