/**
 * CAMPRE - C.A. Medina Plásticos Reforzados
 * Estilos Principales
 * Versión Moderna 2024
 */

/* ============================================
   VARIABLES CSS
   ============================================ */
:root {
    /* Colores Principales */
    --primary-color: #0047AB;
    --primary-dark: #003380;
    --primary-light: #1a6ad4;
    --secondary-color: #7CB342;
    --secondary-dark: #5a8a2a;
    --secondary-light: #9ccc65;

    /* Colores de Acento */
    --accent-orange: #FF6B35;
    --accent-cyan: #00BCD4;
    --accent-purple: #9C27B0;

    /* Colores Neutros */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --black: #000000;

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 71, 171, 0.95) 0%, rgba(0, 51, 128, 0.9) 50%, rgba(124, 179, 66, 0.85) 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);

    /* Tipografía */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    /* Tamaños de fuente */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Espaciado */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Bordes */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Sombras */
    --shadow-sm: 0 1px 2px 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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(0, 71, 171, 0.3);
    --shadow-glow-green: 0 0 20px rgba(124, 179, 66, 0.3);

    /* Transiciones */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Z-index */
    --z-preloader: 10001;
    --z-mobile-nav: 10000;
    --z-header: 9999;
    --z-fab: 9990;
    --z-modal: 9980;
    --z-dropdown: 9970;
    --z-tooltip: 9960;
}

/* ============================================
   RESET Y BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ============================================
   CUSTOM SCROLLBAR (Moderna y Limpia)
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 71, 171, 0.3);
    /* Primary color con transparencia */
    border-radius: var(--radius-full, 10px);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color, #0047AB);
}

/* Mozilla Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 71, 171, 0.3) transparent;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: clip;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: clip;
    margin-top: 0;
    padding-top: 0;
}

/* ============================================
    MAIN CONTENT
    ============================================ */
.main-content {
    padding-top: 0;
    margin-top: 0;
}

/* Prevenir scroll cuando el menú móvil está abierto */
body.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

/* Estilos para el body durante la carga */
body.loading {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

ul,
ol {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   UTILIDADES
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    box-sizing: border-box;
}

.section {
    padding: var(--space-24) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: var(--space-4);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-green);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.logo-animation {
    margin-bottom: var(--space-6);
}

.preloader-logo {
    width: 200px;
    height: 80px;
}

.preloader-logo .logo-text {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 800;
    fill: var(--primary-color);
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawLogo 1.5s ease forwards, fillLogo 0.5s ease 1.5s forwards;
}

@keyframes drawLogo {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fillLogo {
    to {
        fill: var(--primary-color);
    }
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto var(--space-4);
}

.loading-progress {
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: loadingProgress 2s ease forwards;
}

@keyframes loadingProgress {
    0% {
        width: 0;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

.loading-text {
    font-size: var(--text-sm);
    color: var(--gray-500);
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--gray-900);
    padding: var(--space-2) 0;
    position: relative;
    z-index: var(--z-header);
}

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

.contact-info {
    display: flex;
    gap: var(--space-6);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--gray-300);
    font-size: var(--text-sm);
    transition: color var(--transition-base);
}

.contact-item:hover {
    color: var(--secondary-color);
}

.contact-item i {
    color: var(--secondary-color);
    font-size: var(--text-xs);
}

.social-links {
    display: flex;
    gap: var(--space-2);
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: var(--text-sm);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.social-link.whatsapp:hover {
    background: #25D366;
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: var(--z-header);
    transition: all var(--transition-base);
    overflow: hidden;
}

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

.main-header .container {
    position: relative;
    z-index: 1;
}

/* Partículas en menú móvil */
#particles-mobile-nav {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

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

#particles-js canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* Contenido del menú móvil SIEMPRE encima de las partículas */
.mobile-nav-header {
    position: relative;
    z-index: 10;
    background: transparent;
}

.mobile-nav-menu {
    position: relative;
    z-index: 10;
    background: transparent;
}

.mobile-nav-footer {
    position: relative;
    z-index: 10;
    background: transparent;
}

.mobile-nav-list {
    position: relative;
    z-index: 10;
}

.mobile-nav-item {
    position: relative;
    z-index: 10;
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.logo-svg {
    width: 100%;
    height: 100%;
}

.logo-circle-outer {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 3;
}

.logo-circle-inner {
    fill: var(--secondary-color);
    opacity: 0.2;
}

.logo-wave {
    stroke: var(--secondary-color);
    stroke-width: 3;
    stroke-linecap: round;
}

.logo-text-content {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-secondary);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.logo-sub {
    font-size: var(--text-xs);
    color: var(--gray-600);
    font-weight: 500;
}

/* Navigation */
.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    gap: var(--space-2);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-700);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link i {
    font-size: var(--text-xs);
    opacity: 0.7;
}

.nav-item:hover .nav-link,
.nav-item.active .nav-link {
    color: var(--primary-color);
    background: rgba(0, 71, 171, 0.08);
}

.nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: var(--radius-full);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    z-index: calc(var(--z-mobile-nav) + 10);
    position: relative;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-mobile-nav);
    visibility: hidden;
    opacity: 0;
    transition: all var(--transition-base);
}

.mobile-nav.active {
    visibility: visible;
    opacity: 1;
}

.mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    touch-action: none;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-2xl);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 2;
}

.mobile-nav.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6);
    border-bottom: 1px solid rgba(0, 71, 171, 0.1);
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.7);
}

.mobile-logo-text {
    font-family: var(--font-secondary);
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--primary-color);
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: var(--text-lg);
    transition: all var(--transition-base);
}

.mobile-nav-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.mobile-nav-menu {
    flex: 1;
    padding: var(--space-4);
    position: relative;
    z-index: 10;
    overflow-y: auto;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    position: relative;
    z-index: 10;
}

.mobile-nav-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.5);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--gray-700);
    transition: all var(--transition-base);
}

.mobile-nav-link i {
    width: 24px;
    text-align: center;
    color: var(--primary-color);
}

.mobile-nav-item:hover .mobile-nav-link,
.mobile-nav-item.active .mobile-nav-link {
    background: rgba(0, 71, 171, 0.08);
    color: var(--primary-color);
}

.mobile-nav-item.active .mobile-nav-link {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-nav-item.active .mobile-nav-link i {
    color: var(--white);
}

.mobile-nav-footer {
    padding: var(--space-6);
    border-top: 1px solid rgba(0, 71, 171, 0.1);
    background: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 10;
}

.mobile-contact {
    margin-bottom: var(--space-4);
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: var(--gray-600);
}

.mobile-contact-item i {
    color: var(--secondary-color);
}

.mobile-social {
    display: flex;
    gap: var(--space-3);
}

.mobile-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.mobile-social-link:hover {
    transform: translateY(-2px);
    color: var(--white);
}

.mobile-social-link.facebook:hover {
    background: #1877f2;
}

.mobile-social-link.instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.mobile-social-link.whatsapp:hover {
    background: #25d366;
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */
.fab-container {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    z-index: var(--z-fab);
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    position: relative;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.fab-phone {
    background: var(--gradient-primary);
}

.fab-scroll-top {
    background: var(--gray-800);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.fab-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-tooltip {
    position: absolute;
    right: calc(100% + var(--space-3));
    top: 50%;
    transform: translateY(-50%);
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.fab-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--gray-900);
}

.fab:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--gray-900);
    color: var(--gray-300);
}

.footer-top {
    padding: var(--space-20) 0 var(--space-12);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-10);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: var(--space-5);
}

.footer-logo-text {
    font-family: var(--font-secondary);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--white);
    display: block;
}

.footer-logo-sub {
    font-size: var(--text-sm);
    color: var(--secondary-color);
}

.footer-description {
    font-size: var(--text-sm);
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: var(--space-5);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all var(--transition-base);
}

.footer-social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-secondary);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-5);
    position: relative;
    padding-bottom: var(--space-3);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: var(--radius-full);
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.footer-links a i {
    font-size: var(--text-xs);
    color: var(--secondary-color);
    transition: transform var(--transition-base);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: var(--space-2);
}

.footer-links a:hover i {
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--gray-400);
    transition: color var(--transition-base);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-6) 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.copyright,
.footer-meta {
    font-size: var(--text-sm);
    color: var(--gray-500);
}