/* Colores Corporativos Premium y Modernos */
:root {
    --primary-color: #2C3531;
    /* Un tono más profundo y elegante */
    --secondary-color: #D1E231;
    /* Verde lima vibrante para acentos */
    --accent-color: #116466;
    /* Azul verdoso profundo */
    --text-dark: #1a1a1a;
    --text-muted: #555;
    --text-light: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --transition: cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- Top Bar Espectacular --- */
.top-bar {
    background: #000000;
    /* Negro puro para máximo contraste */
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 0;
    font-size: 0.8rem;
    position: relative;
    z-index: 101;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-info span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.top-info span:hover {
    color: var(--secondary-color);
}

.top-info i {
    color: var(--secondary-color);
}

.top-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.top-link:hover {
    color: var(--secondary-color);
}

/* --- Main Header "Dark Mode Premium" --- */
.main-header {
    /* Fondo oscuro sólido/gradiente para que resalte el LOGO blanco */
    background: linear-gradient(180deg, #222825 0%, #1a1e1c 100%);
    padding: 30px 0;
    position: relative;
    z-index: 100;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Decoración de fondo abstracta */
.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(209, 226, 49, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 95% 50%, rgba(17, 100, 102, 0.05) 0%, transparent 25%);
    pointer-events: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* --- LOGO VISIBILITY PERFECTA --- */
.logo-container {
    padding: 5px;
}

.logo {
    max-height: 90px;
    width: auto;
    /* Un ligero brillo blanco para separarlo del fondo */
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.05));
    transition: transform 0.5s ease;
}

.logo-container:hover .logo {
    transform: scale(1.03);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
}

/* Contact Styles upgraded for Dark Background */
.contact-center {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 25px;
    border-radius: 12px;
    /* Fondo semi-transparente oscuro */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(209, 226, 49, 0.3);
    transform: translateY(-2px);
}

.contact-item .icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-item:hover .icon-box {
    background: var(--secondary-color);
    color: #000;
    box-shadow: 0 0 15px rgba(209, 226, 49, 0.6);
    transform: rotate(15deg);
}

.contact-item .text-box {
    display: flex;
    flex-direction: column;
}

.contact-item .label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    /* Texto tenue */
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 3px;
}

.contact-item .value {
    text-decoration: none;
    font-weight: 600;
    color: #ffffff;
    /* Texto blanco brillante */
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Button with Pulse Animation */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(209, 226, 49, 0.3);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(209, 226, 49, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(209, 226, 49, 0);
    }
}

.btn-client-access {
    background: var(--secondary-color);
    color: #1a1a1a;
    padding: 15px 32px;
    border-radius: 4px;
    /* Un poco más cuadrado para seriedad corporativa */
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    animation: pulse-glow 3s infinite;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    /* Forma tech/moderna */
}

.btn-client-access:hover {
    transform: translateY(-2px);
    background: #fff;
    color: #000;
}

/* --- Navigation Bar --- */
.main-nav {
    background: #151816;
    /* Ligeramente más oscuro que el header */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links li {
    position: relative;
    overflow: hidden;
}

.nav-links a {
    display: block;
    padding: 22px 25px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
}

/* Hover Effect: Cyberpunk line */
.nav-links li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links li:hover::after,
.nav-links li a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links li:hover a {
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
}

.nav-links li a.active {
    color: var(--secondary-color);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 10px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.7;
}

.lang-option:hover,
.lang-option.active {
    opacity: 1;
    color: #fff;
}

.lang-option img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.divider {
    color: rgba(255, 255, 255, 0.1);
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 85vh;
    /* Alto impacto visual */
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1);
    /* Efecto inicial zoom */
}

.slide.active {
    opacity: 1;
    transform: scale(1.05);
    /* Efecto Ken Burns suave al activarse */
    z-index: 1;
}

/* Dark overlay para legibilidad del texto */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 90%;
    padding: 0 20px;
}

/* Tipografía Espectacular para el Slider */
.slide-title {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.3s;
    /* Delay para que entre después de la imagen */
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.6s, background 0.3s ease, border-color 0.3s ease;
    /* Delay mayor */
    position: relative;
    overflow: hidden;
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--secondary-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.slide-btn:hover::before {
    width: 100%;
}

.slide-btn:hover {
    color: #000;
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(209, 226, 49, 0.6);
}

.slide.active .slide-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Controls (Arrows) */
.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--secondary-color);
    color: #000;
    border-color: var(--secondary-color);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Indicators (Dots) */
.indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dot.active,
.dot:hover {
    background: var(--secondary-color);
    transform: scale(1.3);
    border-color: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        gap: 30px;
        padding-bottom: 20px;
    }

    .contact-center {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .slide-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
    }

    .slide-title {
        font-size: 2.2rem;
        /* Más legible en móvil */
        letter-spacing: -0.5px;
    }

    .slide-btn {
        padding: 14px 30px;
        font-size: 0.85rem;
    }

    .prev-btn,
    .next-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* --- About Us Section Espectacular --- */
.about-us {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Decoración sutil de fondo */
.about-us::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(209, 226, 49, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

/* Image Wrapper con diseño creativo */
.about-image-wrapper {
    flex: 1;
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s ease;
    display: block;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 4px solid #fff;
    text-align: center;
    min-width: 140px;
    animation: float-badge 6s ease-in-out infinite;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.experience-badge .years {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Content Styles */
.about-content {
    flex: 1;
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
    position: relative;
    padding-left: 60px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 2px;
    background: var(--secondary-color);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin: 0 0 30px 0;
    line-height: 1.1;
}

.section-title .highlight {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(209, 226, 49, 0.3);
    z-index: -1;
    transform: skewX(-15deg);
}

.about-text {
    margin-bottom: 40px;
}

.about-text p {
    font-family: 'Outfit', sans-serif;
    /* Fuente espectacular moderna */
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: justify;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn-about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-about:hover {
    color: var(--primary-color);
}

.btn-about:hover::after {
    height: 100%;
}

.btn-about i {
    transition: transform 0.3s ease;
}

.btn-about:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 60px;
    }

    .about-image-wrapper,
    .about-content {
        width: 100%;
    }

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

    .experience-badge {
        right: 20px;
        bottom: -20px;
        padding: 20px;
        min-width: 120px;
    }

    .experience-badge .years {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .about-us {
        padding: 60px 0;
    }

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

    .experience-badge {
        position: static;
        margin-top: -30px;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        transform: translateY(0) !important;
        /* Desactivar animación en móvil si molesta, o dejarla */
    }
}

/* --- ESTILOS PAGE QUIENES SOMOS (SPECTACULAR) --- */

/* Page Hero */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2069&auto=format&fit=crop') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
}

.overlay-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(44, 53, 49, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--secondary-color);
    animation: fadeInUp 1.2s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* History & Mission */
.history-mission-section {
    padding-bottom: 100px;
}

.history-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.history-text-col {
    flex: 3;
}

.section-tag {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.history-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: justify;
}

.history-visual {
    flex: 2;
    display: flex;
    justify-content: center;
}

.visual-card-glass {
    width: 300px;
    height: 350px;
    background: linear-gradient(145deg, var(--primary-color), var(--accent-color));
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    box-shadow: 20px 20px 60px #d1d1d1, -20px -20px 60px #ffffff;
    position: relative;
    overflow: hidden;
}

.visual-card-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.icon-history {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    z-index: 1;
}

.visual-card-glass .year {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    z-index: 1;
    font-family: 'Playfair Display', serif;
}

.visual-card-glass .label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.7);
}

/* Mission Card */
.mission-block {
    background: linear-gradient(135deg, #f0f2f5 0%, #ffffff 100%);
    border-radius: 30px;
    padding: 60px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.mission-card {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.mission-icon-wrapper {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 3rem;
    color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(44, 53, 49, 0.4);
}

.mission-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    color: var(--primary-color);
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Values Section */
.values-section {
    background: #2C3531;
    padding: 100px 0;
    color: #fff;
    position: relative;
}

.values-header {
    text-align: center;
    margin-bottom: 80px;
}

.values-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #fff;
    margin: 0 0 20px 0;
}

.separator-line {
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.values-intro {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    cursor: default;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.2);
}

.value-item h3 {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    font-family: 'Playfair Display', serif;
    color: #fff;
}

.value-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 992px) {
    .history-block {
        flex-direction: column;
        text-align: center;
    }

    .history-text-col {
        width: 100%;
    }

    .history-visual {
        width: 100%;
    }

    .mission-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-heading {
        font-size: 2.5rem;
    }

    .values-title {
        font-size: 2.5rem;
    }
}

/* --- ESTILOS PAGE SERVICIOS (ULTRA SPECTACULAR) --- */

.services-hero {
    position: relative;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat fixed;
    /* Parallax puro */
    overflow: hidden;
}

.services-hero::after {
    /* Partículas o textura overlay */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.3;
    animation: pulseTexture 10s infinite alternate;
}

@keyframes pulseTexture {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }

    100% {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

.services-section {
    padding: 120px 0;
    background: radial-gradient(circle at 50% 50%, #f9f9f9 0%, #ececec 100%);
    position: relative;
}

/* Título con gradiente metálico/elegante */
.services-intro .section-heading {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.services-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    padding: 20px 0;
    perspective: 1000px;
    /* Para efectos 3D */
}

.service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    animation: fadeInUpCard 0.8s ease-out forwards;
}

/* Staggered Animation Logic */
.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUpCard {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effect: Glass & Glow */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(209, 226, 49, 0.3);
}

.service-card:hover::before {
    opacity: 1;
    width: 100%;
    /* Fill effect opcional o barra lateral */
    width: 6px;
    /* Keep subtle bar */
}

/* Gradient Top Border on Hover */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 6px;
    background: var(--secondary-color);
    transition: width 0.5s ease;
    z-index: 5;
}

.service-card:hover::after {
    width: 100%;
}

/* Background Icon Animation */
.card-icon-bg {
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 15rem;
    color: rgba(44, 53, 49, 0.02);
    transition: all 0.7s ease;
    z-index: 0;
    top: auto;
    /* override prev styling */
}

.service-card:hover .card-icon-bg {
    color: rgba(209, 226, 49, 0.08);
    /* Glow color */
    transform: rotate(20deg) scale(1.2) translate(-20px, -20px);
}

.card-content {
    position: relative;
    z-index: 2;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0f2f5, #ffffff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    transition: all 0.5s ease;
    box-shadow: 10px 10px 20px #d1d1d1, -10px -10px 20px #ffffff;
    /* Neumorphism */
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.service-card:hover .icon-wrapper {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    transform: rotateY(360deg);
    box-shadow: 0 15px 30px rgba(44, 53, 49, 0.3);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    line-height: 1.2;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: var(--accent-color);
}

.service-card p {
    color: #5a5a5a;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(44, 53, 49, 0.05);
    /* fondo sutil */
    padding: 10px 25px;
    border-radius: 30px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* CTA Section Styles Upgrade */
.cta-section {
    background: linear-gradient(135deg, #222825 0%, #151816 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--secondary-color);
}

.cta-section::before {
    /* Abstract lines */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 50px);
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    font-weight: 300;
}

.cta-btn {
    background: var(--secondary-color);
    color: #1a1a1a;
    padding: 22px 55px;
    border-radius: 0px;
    /* Sharp corporate look */
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    font-weight: 800;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #fff;
    z-index: -1;
    transition: width 0.3s ease;
}

.cta-btn:hover::before {
    width: 100%;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(209, 226, 49, 0.2);
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
}

/* --- ESTILOS PAGE DOCUMENTACION (SPECTACULAR UX/UI) --- */

.doc-hero {
    background: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat fixed;
    height: 50vh;
}

.doc-downloads-section {
    padding: 100px 0;
    background: #f4f6f8;
    position: relative;
}

.section-badge-center {
    text-align: center;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.section-heading-center {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin: 0 auto 60px auto;
    max-width: 800px;
}

.section-heading-center .highlight {
    color: var(--accent-color);
    position: relative;
    white-space: nowrap;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.doc-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.doc-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary-color);
    transition: height 0.4s ease;
}

.doc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.doc-card.full-width {
    grid-column: 1 / -1;
}

.doc-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    width: 60px;
    height: 60px;
    background: rgba(44, 53, 49, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.doc-card:hover .doc-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(10deg);
}

.doc-info {
    margin-bottom: 30px;
    flex-grow: 1;
}

.doc-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.doc-info p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.doc-actions {
    display: flex;
    gap: 15px;
}

.btn-download {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-download.word {
    background: rgba(43, 87, 154, 0.1);
    color: #2b579a;
}

.btn-download.word:hover {
    background: #2b579a;
    color: #fff;
    box-shadow: 0 5px 15px rgba(43, 87, 154, 0.3);
}

.btn-download.pdf {
    background: rgba(244, 15, 2, 0.1);
    color: #f40f02;
}

.btn-download.pdf:hover {
    background: #f40f02;
    color: #fff;
    box-shadow: 0 5px 15px rgba(244, 15, 2, 0.3);
}

/* LINKS SECTION */
.links-section {
    padding: 100px 0;
    background: #fff;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.link-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
    background: #fafafa;
}

.link-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.link-item:hover .link-icon {
    background: var(--secondary-color);
    color: #1a1a1a;
    transform: rotate(360deg);
}

.link-item span {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* DOC FOOTER CTA */
.doc-footer-cta {
    background: var(--primary-color);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.doc-footer-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.btn-doc-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: #1a1a1a;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-doc-cta:hover {
    transform: scale(1.05);
    background: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .docs-grid {
        grid-template-columns: 1fr;
    }

    .section-heading-center {
        font-size: 2.2rem;
    }

    .link-item {
        flex-direction: column;
        text-align: center;
    }
}

/* --- ESTILOS PAGE FAQ (SPECTACULAR LAYOUT) --- */

.faq-hero {
    background: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat fixed;
    height: 50vh;
}

.faq-section {
    padding: 100px 0;
    min-height: 800px;
    background: linear-gradient(180deg, #f9f9f9 0%, #fff 100%);
}

.faq-accordion-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: rgba(209, 226, 49, 0.4);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question span {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-right: 20px;
    transition: color 0.3s ease;
}

.faq-question .icon-toggle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    background: rgba(44, 53, 49, 0.02);
}

.faq-item.active .faq-question span {
    color: var(--accent-color);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: #fff;
}

.faq-answer p,
.faq-answer .faq-list {
    padding: 0 30px 30px 30px;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.faq-list {
    list-style: none;
}

.faq-list li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

/* --- ESTILOS PAGE CONTACTENOS (MASTERPIECE UX/UI) --- */

.contact-hero {
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat fixed;
    height: 50vh;
}

.contact-section-wrapper {
    padding: 80px 0;
    background: #f0f2f5;
    background-image: radial-gradient(circle at 10% 20%, rgba(209, 226, 49, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(44, 53, 49, 0.05) 0%, transparent 20%);
}

.contact-card-glass {
    display: flex;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    min-height: 800px;
}

/* Left Column */
.contact-info-col {
    flex: 1;
    background: #2c3531;
    /* Primary Dark */
    color: #fff;
    padding: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-info-col::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--secondary-color);
    filter: blur(80px);
    opacity: 0.1;
}

.badge-contact {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.info-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-header .highlight {
    color: var(--secondary-color);
}

.info-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.info-item .details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.info-item .details p,
.info-item .details a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s;
}

.email-link:hover {
    color: var(--secondary-color) !important;
}

.phones-grid {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.phones-grid a:hover {
    color: var(--secondary-color);
}

.map-container {
    margin-top: auto;
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Right Column */
.contact-form-col {
    flex: 1.2;
    padding: 60px;
    background: #fff;
    display: flex;
    align-items: center;
}

.spectacular-form {
    width: 100%;
}

.spectacular-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.spectacular-form p {
    color: #666;
    margin-bottom: 40px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group.two-col {
    display: flex;
    gap: 30px;
}

.form-group.two-col .sub-group {
    flex: 1;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: none;
    border-bottom: 2px solid #eee;
    background: transparent;
    font-size: 1rem;
    color: #333;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    border-radius: 5px 5px 0 0;
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
    background: rgba(44, 53, 49, 0.02);
}

.form-group label {
    position: absolute;
    left: 50px;
    top: 15px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 18px;
    color: #ccc;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.textarea-icon {
    top: 18px;
}

/* Floating Label Logic */
.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group .sub-group input:focus~label,
.form-group .sub-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -12px;
    left: 15px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input:focus~.form-icon,
.form-group textarea:focus~.form-icon {
    color: var(--secondary-color);
}

.btn-submit-form {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(44, 53, 49, 0.2);
}

.btn-submit-form:hover {
    background: var(--secondary-color);
    color: #1a1a1a;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(209, 226, 49, 0.4);
}

.btn-submit-form i {
    transition: transform 0.3s ease;
}

.btn-submit-form:hover i {
    transform: translateX(5px) rotate(-10deg);
}

@media (max-width: 992px) {
    .contact-card-glass {
        flex-direction: column;
    }

    .form-group.two-col {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info-col,
    .contact-form-col {
        padding: 40px;
    }
}

/* --- SUPERLATVE FOOTER STYLES --- */

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
    background-size: 200% auto;
    animation: gradientFlow 3s linear infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-col:hover h3::after {
    width: 100%;
}

/* Col 1: Brand */
.footer-logo {
    max-width: 180px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    /* Make logo white if it's dark */
}

.footer-desc {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--secondary-color);
    color: #1a1a1a;
    transform: translateY(-5px);
}

/* Col 2: Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    color: var(--secondary-color);
    font-weight: bold;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Col 3 & 4: Contact */
.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #aaa;
    line-height: 1.6;
}

.contact-list i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 5px;
}

.phones-footer a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phones-footer a i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.phones-footer a:hover {
    color: var(--secondary-color);
}

/* Footer Bottom */
.footer-bottom {
    background: #111;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.copyright {
    color: #666;
    font-size: 0.9rem;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .footer-legal a {
        margin: 0 10px;
    }
}

/* --- NEW HOMEPAGE SECTIONS (SPECTACULAR EXTRA CONTENT) --- */

/* Services Preview Section */
.home-services-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

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

.service-preview-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-preview-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--secondary-color);
    /* Corrected variable name just in case, assuming secondary is neon green */
    z-index: -1;
    transition: height 0.4s ease;
    opacity: 0.1;
}

.service-preview-card:hover::after {
    height: 100%;
}

.service-preview-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-icon-large {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    transition: transform 0.4s ease;
    display: inline-block;
}

.service-preview-card:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
}

.service-preview-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-preview-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.link-arrow {
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.link-arrow:hover {
    color: var(--primary-color);
    letter-spacing: 2px;
}

/* Values / Why Choose Us Section */
.why-us-section {
    padding: 100px 0;
    background: #2c3531;
    color: #fff;
    position: relative;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    /* Subtle texture if available */
}

.why-us-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.why-us-text {
    flex: 1;
    min-width: 300px;
}

.why-us-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 30px;
}

.why-us-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.stats-grid {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    min-width: 300px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
    position: relative;
}

/* Connector Line */
.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: #eee;
    z-index: -1;
}

.step-card {
    background: #fff;
    width: 250px;
    padding: 20px;
}

.step-icon-circle {
    width: 100px;
    height: 100px;
    background: #fff;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon-circle {
    background: var(--secondary-color);
    color: #1a1a1a;
    box-shadow: 0 0 30px rgba(209, 226, 49, 0.5);
}

.step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.step-card p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-steps::before {
        display: none;
    }

    .why-us-content {
        flex-direction: column;
    }
}

/* Home CTA Section */
.home-cta {
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.9)), url('https://images.unsplash.com/photo-1494412574643-35d324698428?q=80&w=2066&auto=format&fit=crop');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

.home-cta h2 {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.8);
}

/* --- RESPONSIVE & MOBILE MENU STYLES --- */

/* Mobile Menu Toggle Button (Hidden on Desktop) */
.mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

/* Responsive Navigation */
@media (max-width: 992px) {
    .main-header .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .contact-center {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin: 0;
    }

    .contact-center::before,
    .contact-center::after {
        display: none;
    }

    .header-actions {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* Mobile Menu Logic */
    .mobile-menu-toggle {
        display: block;
        margin-right: 15px;
    }

    .nav-content {
        justify-content: space-between;
        padding: 10px 20px;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        /* Drawer width */
        max-width: 300px;
        height: 100vh;
        background: #1a1a1a;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
    }

    .nav-links a {
        display: block;
        padding: 15px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1.1rem;
    }

    .nav-links a::after {
        display: none;
        /* Remove hover underline on mobile */
    }

    .language-switcher {
        margin-left: auto;
        /* Push to right */
    }
}

/* Small Screen Adjustments */
@media (max-width: 768px) {
    .slide-title {
        font-size: 2.5rem;
    }

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

    .about-us {
        padding: 60px 0;
    }

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

    .about-image-wrapper {
        min-height: 400px;
        margin-bottom: 40px;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-info {
        flex-direction: column;
        gap: 5px;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
    }

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

/* Extra Small Screen Adjustments */
@media (max-width: 480px) {
    .slide-title {
        font-size: 1.8rem;
    }

    .cta-btn,
    .slide-btn,
    .btn-about {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
}