/* ========================================
   FONTANEL — Agua Pura 24hs
   Full Redesign inspired by AMAWA
   ======================================== */

:root {
    --primary: #0a5e9c;
    --primary-light: #1a8fd4;
    --primary-dark: #074a7c;
    --secondary: #6db856;
    --accent: #00b894;
    --text-dark: #1a2332;
    --text-body: #4a5568;
    --text-muted: #718096;
    --bg-light: #f7f9fc;
    --bg-white: #ffffff;
    --bg-dark: #1a2332;
    --bg-stats: #2d3748;
    --border-light: #e2e8f0;
    --gradient-brand: linear-gradient(135deg, #0a5e9c 0%, #1a8fd4 50%, #00b894 100%);
    --gradient-hero: linear-gradient(135deg, rgba(10, 94, 156, 0.85), rgba(0, 184, 148, 0.75));
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 4px 20px rgba(10, 94, 156, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Outfit', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--bg-light);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

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

ul { list-style: none; }

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

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Utilities ── */
.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 0.45rem 1.2rem;
    background: rgba(10, 94, 156, 0.08);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(10, 94, 156, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 94, 156, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 75px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    height: 65px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 42px;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-body);
    font-size: 0.9rem;
    position: relative;
    padding: 0.3rem 0;
}

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

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

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

.btn-nav {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

.menu-toggle {
    display: none;
    font-size: 1.4rem;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

/* ========================================
   HERO — Split Screen (AMAWA style)
   ======================================== */
.hero {
    padding: 100px 0 40px;
    background: var(--bg-light);
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.hero-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    transition: var(--transition);
}

.hero-card:hover {
    transform: scale(1.01);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-card:hover img {
    transform: scale(1.05);
}

.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.hero-card-overlay h2 {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.hero-card-overlay .btn {
    border-radius: var(--radius-xs);
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
    background: var(--bg-stats);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 2.2rem;
    color: var(--primary-light);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 0.4rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #a0aec0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ========================================
   VALUE PROPS (3 cards)
   ======================================== */
.value-props {
    padding: 80px 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.prop-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.prop-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.prop-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(10, 94, 156, 0.08), rgba(0, 184, 148, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prop-card .icon i {
    font-size: 1.8rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prop-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.prop-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ========================================
   EQUIPMENT SECTION (Dispenser y Franquicias)
   ======================================== */
.equipment {
    padding: 100px 0;
    background: var(--bg-white);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.equipment-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.equipment-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.equipment-card-image {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.equipment-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.equipment-card:hover .equipment-card-image img {
    transform: scale(1.05);
}

.equipment-card-body {
    padding: 2rem;
}

.equipment-card-body .eq-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(10, 94, 156, 0.1);
    color: var(--primary);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.equipment-card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.equipment-card-body > p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.eq-features {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.eq-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.eq-features li i {
    color: var(--secondary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* ========================================
   BARRIOS Y EDIFICIOS
   ======================================== */
.barrios {
    padding: 100px 0;
    background: var(--bg-light);
}

.barrios-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.barrios-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.barrios-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.barrios-benefits {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.barrios-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.barrios-benefits li i {
    width: 28px;
    height: 28px;
    background: rgba(109, 184, 86, 0.12);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.barrios-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.barrios-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   ABOUT US (Quiénes Somos)
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-stats {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 3rem;
    border: 1px solid var(--border-light);
}

.about-stat {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.about-stat:last-child {
    border-bottom: none;
}

.about-stat .number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.about-stat .label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   PURIFICATION PROCESS (Vertical Timeline)
   ======================================== */
.process {
    padding: 100px 0;
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: repeating-linear-gradient(
        to bottom,
        var(--primary-light) 0px,
        var(--primary-light) 12px,
        transparent 12px,
        transparent 22px
    );
}

.timeline-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    min-height: 180px;
    height: 180px;
}

/* Odd steps: content on left, icon in center, right empty */
.timeline-step:nth-child(odd) .timeline-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
    padding-right: 1.25rem;
}

.timeline-step:nth-child(odd) .timeline-icon {
    grid-column: 2;
    grid-row: 1;
}

/* Even steps: left empty, icon in center, content on right */
.timeline-step:nth-child(even) .timeline-content {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
    padding-left: 1.25rem;
}

.timeline-step:nth-child(even) .timeline-icon {
    grid-column: 2;
    grid-row: 1;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    border: 3px solid var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
    justify-self: center;
}

.timeline-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.timeline-step:hover .timeline-icon {
    background: var(--primary);
    border-color: var(--primary);
}

.timeline-step:hover .timeline-icon i {
    color: white;
}

.timeline-content {
    padding: 0 1.25rem;
}

.timeline-content h4 {
    font-size: 1.15rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.timeline-content p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.cta-box {
    background: var(--bg-light);
    text-align: center;
    padding: 5rem 3rem;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.cta-box h2 {
    color: var(--text-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    line-height: 1.7;
}

.cta-box .btn {
    position: relative;
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(10, 94, 156, 0.3);
}

.cta-box .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 94, 156, 0.4);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-methods {
    margin-top: 2rem;
    display: grid;
    gap: 1.2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.contact-method .cm-icon {
    width: 45px;
    height: 45px;
    background: rgba(10, 94, 156, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method .cm-icon i {
    font-size: 1.1rem;
    color: var(--primary);
}

.contact-method .cm-text {
    font-size: 0.95rem;
}

.contact-method .cm-text strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.1rem;
}

.contact-form {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
}

.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-xs);
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(10, 94, 156, 0.1);
    background: var(--bg-white);
}

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

.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    color: var(--secondary);
    font-weight: 600;
}

.form-success i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.8rem;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--bg-dark);
    color: white;
    padding: 100px 0 140px; /* Extra bottom padding for sticky CTA */
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 45px;
    margin-bottom: 1.5rem;
    background: white;
    padding: 6px 16px;
    border-radius: 8px;
}

footer h4 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.03em;
}

footer a {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
}

/* ========================================
   STICKY CTA BAR (WhatsApp)
   ======================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 0.8rem 0;
    z-index: 999;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta a {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.sticky-cta a:hover {
    opacity: 0.9;
}

.sticky-cta i {
    font-size: 1.3rem;
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .hero-split {
        grid-template-columns: 1fr;
    }

    .hero-card {
        height: 280px;
    }

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

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

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

    .barrios-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .barrios-image {
        order: -1;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 0.5rem;
        box-shadow: var(--shadow-md);
        border-bottom: 2px solid var(--primary-light);
    }

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

    .nav-links a {
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-light);
    }

    .btn-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-step,
    .timeline-step:nth-child(even) {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        position: relative;
        left: 5px;
    }

    .timeline-step .timeline-content,
    .timeline-step:nth-child(odd) .timeline-content,
    .timeline-step:nth-child(even) .timeline-content {
        grid-column: unset;
        text-align: left;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }

    .hero {
        padding: 85px 0 20px;
    }

    .hero-card {
        height: 220px;
    }

    .hero-card-overlay h2 {
        font-size: 1.2rem;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

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