/* =============================================
   INTEGRA FIGHT GYM - Unified Header & Navigation CSS
   This file provides consistent styling across all pages
   ============================================= */

/* ===== CSS Variables ===== */
:root {
    --ifg-red: #dc2626;
    --ifg-red-dark: #b91c1c;
    --ifg-red-glow: rgba(220, 38, 38, 0.4);
    --ifg-black: #0a0a0a;
    --ifg-gray-900: #141414;
    --ifg-gray-800: #1f1f1f;
    --ifg-gray-600: #525252;
    --ifg-gray-400: #a3a3a3;
    --ifg-gray-200: #e5e5e5;
    --ifg-gray-100: #f5f5f5;
    --ifg-white: #fafafa;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 300ms var(--ease);
}

[data-theme="dark"] {
    --bg: var(--ifg-black);
    --bg-alt: var(--ifg-gray-900);
    --bg-card: var(--ifg-gray-900);
    --text: var(--ifg-white);
    --text-muted: #b8b8b8; /* Improved contrast ratio */
    --border: var(--ifg-gray-800);
}

[data-theme="light"] {
    --bg: var(--ifg-white);
    --bg-alt: var(--ifg-gray-100);
    --bg-card: #ffffff;
    --text: #171717;
    --text-muted: var(--ifg-gray-600);
    --border: var(--ifg-gray-200);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition);
}

[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
}

[data-theme="light"] .header.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

/* Reset any container inside header to prevent double-padding */
.header > .container {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .header-inner {
        height: 80px;
        padding: 0 2rem;
    }
}

/* ===== LOGO ===== */
.logo img {
    height: 45px;
    width: auto;
    transition: transform var(--transition);
}

@media (min-width: 768px) {
    .logo img {
        height: 55px;
    }
}

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

/* ===== NAVIGATION ===== */
.nav {
    display: none;
}

@media (min-width: 1140px) {
    .nav {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }
}

.nav-link {
    position: relative;
    padding: 0.5rem 0.875rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 150ms ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--ifg-red);
    transform: translateX(-50%);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--ifg-red);
    text-decoration: none;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* ===== NAV CTA BUTTON ===== */
.nav-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.75rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--ifg-red), var(--ifg-red-dark)) !important;
    color: white !important;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 150ms ease;
    overflow: hidden;
}

.nav-cta::before,
.nav-cta::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    position: static !important;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--ifg-red-dark), var(--ifg-red-dark)) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--ifg-red-glow);
    text-decoration: none !important;
    color: white !important;
}

/* ===== HEADER ACTIONS ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    cursor: pointer;
    transition: all 150ms ease;
}

.theme-toggle:hover {
    background: var(--ifg-red);
    border-color: var(--ifg-red);
    color: white;
    transform: rotate(15deg);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

.theme-toggle .icon-moon {
    display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
    display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon {
    display: block;
}

/* ===== MOBILE MENU BUTTON ===== */
.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

@media (min-width: 1140px) {
    .menu-btn {
        display: none;
    }
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE NAVIGATION ===== */
.nav-mobile {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .nav-mobile {
        top: 80px;
        padding: 2rem;
    }
}

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

.nav-mobile .nav-link {
    display: block;
    padding: 1.25rem 0;
    font-size: 1.75rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
}

.nav-mobile .nav-link::after {
    display: none;
}

.nav-mobile .nav-link:hover,
.nav-mobile .nav-link.active {
    color: var(--ifg-red);
}

.nav-mobile .nav-cta {
    display: block;
    text-align: center;
    margin: 2rem 0;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 1.25rem;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger delays for grid items */
.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.reveal-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.reveal-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
}

.floating-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--ifg-red), var(--ifg-red-dark));
    color: white;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: none !important;
    animation: none !important;
    transition: transform 0.2s ease, background 0.2s ease;
}

.floating-cta .btn::before,
.floating-cta .btn::after {
    display: none !important;
    content: none !important;
    box-shadow: none !important;
}

.floating-cta .btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ef4444, var(--ifg-red));
    box-shadow: none !important;
}

.floating-cta .btn svg {
    width: 20px;
    height: 20px;
}

/* ===== PAGE HERO (Unterseiten) ===== */
.page-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .page-hero {
        height: 45vh;
        min-height: 350px;
        margin-top: 80px;
    }
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../hero.jpg') center 30% / cover no-repeat;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.85));
}

.page-hero h1 {
    position: relative;
    z-index: 10;
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--ifg-red);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand img {
    width: auto;
    height: auto;
    max-width: 180px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff4444; /* Brighter red for better contrast */
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #c4c4c4; /* Improved contrast */
    text-decoration: none;
    transition: color 150ms ease;
}

[data-theme="light"] .footer-links a {
    color: #4a4a4a;
}

.footer-links a:hover {
    color: var(--ifg-red);
}

/* Social Text Links (Icon + Text) */
.social-text-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-text-links svg {
    flex-shrink: 0;
    color: var(--ifg-red);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 150ms ease;
}

.social-link:hover {
    background: var(--ifg-red);
    border-color: var(--ifg-red);
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    color: #c4c4c4; /* Improved contrast */
    font-size: 0.875rem;
    margin: 0;
}

[data-theme="light"] .footer-bottom p {
    color: #4a4a4a;
}

.footer-bottom a {
    color: var(--ifg-red);
    text-decoration: none;
    transition: all 150ms ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* KLA Visions highlight styling */
.footer-bottom a[href*="kla-visions"] {
    color: #ff6b6b;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.05));
    border-radius: 4px;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.footer-bottom a[href*="kla-visions"]:hover {
    background: linear-gradient(135deg, var(--ifg-red), var(--ifg-red-dark));
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-legal {
        justify-content: flex-end;
    }
}

.footer-legal a {
    color: #c4c4c4; /* Improved contrast */
    font-size: 0.875rem;
    text-decoration: none;
}

[data-theme="light"] .footer-legal a {
    color: #4a4a4a;
}

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

/* ===== SWIPER TOUCH TARGET FIX ===== */
.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    margin: 0 6px !important;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--ifg-red) !important;
    transform: scale(1.2);
}

/* Increase touch area without changing visual size */
.swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
}

.swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 1rem 0;
}

/* =============================================
   PROFESSIONAL ANIMATIONS
   ============================================= */

/* ===== PAGE LOAD ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

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

/* ===== HERO ANIMATIONS ===== */
.hero-content {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-title {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-actions {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-logo {
    animation: scaleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

/* ===== SECTION ANIMATIONS ===== */
.section-header {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--ifg-red);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header.revealed .section-title::after {
    width: 60px;
}

/* ===== CARD ANIMATIONS ===== */
.location-card,
.trainer-card,
.info-card,
.feature-card,
.team-card,
.gallery-item,
.faq-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.location-card.revealed,
.trainer-card.revealed,
.info-card.revealed,
.feature-card.revealed,
.team-card.revealed,
.gallery-item.revealed,
.faq-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.location-card:nth-child(1), .trainer-card:nth-child(1), .info-card:nth-child(1), .feature-card:nth-child(1), .team-card:nth-child(1), .gallery-item:nth-child(1), .faq-item:nth-child(1) { transition-delay: 0s; }
.location-card:nth-child(2), .trainer-card:nth-child(2), .info-card:nth-child(2), .feature-card:nth-child(2), .team-card:nth-child(2), .gallery-item:nth-child(2), .faq-item:nth-child(2) { transition-delay: 0.1s; }
.location-card:nth-child(3), .trainer-card:nth-child(3), .info-card:nth-child(3), .feature-card:nth-child(3), .team-card:nth-child(3), .gallery-item:nth-child(3), .faq-item:nth-child(3) { transition-delay: 0.2s; }
.location-card:nth-child(4), .trainer-card:nth-child(4), .info-card:nth-child(4), .feature-card:nth-child(4), .team-card:nth-child(4), .gallery-item:nth-child(4), .faq-item:nth-child(4) { transition-delay: 0.3s; }
.location-card:nth-child(5), .trainer-card:nth-child(5), .info-card:nth-child(5), .feature-card:nth-child(5), .team-card:nth-child(5), .gallery-item:nth-child(5), .faq-item:nth-child(5) { transition-delay: 0.4s; }
.location-card:nth-child(6), .trainer-card:nth-child(6), .info-card:nth-child(6), .feature-card:nth-child(6), .team-card:nth-child(6), .gallery-item:nth-child(6), .faq-item:nth-child(6) { transition-delay: 0.5s; }

/* ===== HOVER ANIMATIONS ===== */
.location-card:hover,
.trainer-card:hover,
.info-card:hover,
.feature-card:hover,
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--ifg-red);
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== BUTTON ANIMATIONS ===== */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--ifg-red-glow);
}

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

/* ===== TEXT REVEAL ANIMATION ===== */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ===== PARALLAX SCROLL EFFECT ===== */
.parallax-bg {
    transition: transform 0.1s linear;
    will-change: transform;
}

/* ===== IMAGE HOVER EFFECTS ===== */
.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-zoom:hover img {
    transform: scale(1.08);
}

/* ===== GLOW EFFECT ===== */
.glow-on-hover {
    position: relative;
}

.glow-on-hover::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--ifg-red), var(--ifg-red-dark));
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: opacity 0.3s ease;
}

.glow-on-hover:hover::after {
    opacity: 0.6;
}

/* ===== LOADING SKELETON ===== */
.skeleton {
    background: linear-gradient(90deg, var(--bg-alt) 25%, var(--border) 50%, var(--bg-alt) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== SMOOTH NUMBER COUNTER ===== */
.counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

/* ===== TOOLTIP ANIMATION ===== */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-8px);
}

/* ===== PAGE TRANSITION ===== */
.page-transition {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ===== ICON ANIMATIONS ===== */
.icon-spin {
    animation: spin 1s linear infinite;
}

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

.icon-bounce {
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.icon-pulse {
    animation: iconPulse 2s ease infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== UNDERLINE ANIMATION ===== */
.underline-hover {
    position: relative;
    display: inline-block;
}

.underline-hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ifg-red);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.underline-hover:hover::after {
    width: 100%;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-content,
    .hero-title,
    .hero-actions,
    .hero-logo {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
