/* ============================================================
   Gökmen Zeki Futbol Akademisi — Main Stylesheet
   ============================================================ */

:root {
    --red:          #C8102E;
    --red-dark:     #a00d24;
    --navy:         #0A1628;
    --navy-light:   #1B2A4A;
    --white:        #edf0f4;
    --off-white:    #edf0f4;
    --gold:         #F5A623;
    --gray:         #6c757d;
    --gray-light:   #edf0f4;
    --transition:   all 0.3s ease;
    --shadow:       0 4px 20px rgba(0,0,0,0.09);
    --shadow-lg:    0 10px 40px rgba(0,0,0,0.15);
    --radius:       12px;
    --font-head:    'Bebas Neue', sans-serif;
    --font-body:    'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--navy); background: var(--gray-light); overflow-x: hidden; }
img { max-width: 100%; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 { font-family: var(--font-head); letter-spacing: 1px; }

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    font-size: .95rem;
    color: var(--gray);
    max-width: 620px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-line {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #1B2A4A 0%, #C8102E 35%, #ffffff 50%, #C8102E 65%, #1B2A4A 100%);
    background-size: 300% 100%;
    animation: flowGradient 3.5s ease infinite;
    margin: .9rem auto 1.4rem;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 0 10px rgba(200,16,46,0.3);
}
.section-line::before, .section-line::after {
    content: '';
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 6px rgba(200,16,46,0.6);
}
.section-line::before { left: -12px; }
.section-line::after { right: -12px; }

@keyframes flowGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.section-divider {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(27,42,74,0.15) 20%, #C8102E 45%, #ffffff 50%, #C8102E 55%, rgba(27,42,74,0.15) 80%, transparent 100%);
    background-size: 250% 100%;
    animation: dividerGlow 4s ease-in-out infinite;
    border: none;
    margin: 0;
    opacity: 0.85;
}
@keyframes dividerGlow {
    0% { background-position: 250% 0; }
    100% { background-position: -250% 0; }
}
.label-tag {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: .5rem;
}

/* ---- PRELOADER ---- */
#preloader {
    position: fixed; inset: 0;
    background: var(--navy); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity .5s ease;
}
#preloader.hidden { opacity: 0; pointer-events: none; }
.preloader-inner { text-align: center; color: #fff; }
.loader-ring {
    width: 56px; height: 56px;
    border: 3px solid rgba(255,255,255,.15);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin .8s linear infinite;
    margin: 0 auto 1rem;
}
.preloader-inner h3 { font-family: var(--font-head); font-size: 1.4rem; letter-spacing: 3px; }
.preloader-inner span { font-size: .72rem; color: rgba(255,255,255,.45); letter-spacing: 2px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- NAVBAR ---- */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1.1rem 0;
    background: var(--navy);
    transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
#navbar.scrolled {
    background: var(--navy);
    padding: .7rem 0;
    box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.navbar-brand {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.nav-logo-icon {
    width: 46px; height: 46px;
    background: var(--red); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); color: #fff; font-size: 1.1rem;
    flex-shrink: 0; letter-spacing: 1px;
}
.nav-logo-text { color: #fff; line-height: 1.15; }
.nav-logo-text strong { font-family: var(--font-head); font-size: 1.25rem; display: block; letter-spacing: 2px; }
.nav-logo-text span   { font-size: .68rem; opacity: .75; text-transform: uppercase; letter-spacing: 1px; }

.nav-links {
    display: flex; list-style: none; gap: .3rem;
    align-items: center; margin: 0; padding: 0;
}
.nav-links a {
    color: rgba(255,255,255,.82);
    text-decoration: none;
    font-size: .82rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1px;
    padding: .45rem .85rem; border-radius: 6px;
    transition: var(--transition); position: relative;
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: 2px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--red);
    transition: width .3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 60%; }

.nav-cta {
    background: var(--red) !important; color: #fff !important;
    border-radius: 22px !important; padding: .45rem 1.2rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }

.hamburger {
    display: none; flex-direction: column;
    gap: 5px; cursor: pointer;
    background: none; border: none; padding: 4px;
}
.hamburger span {
    width: 24px; height: 2px;
    background: #fff; border-radius: 2px;
    transition: var(--transition); display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 991px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 270px; height: 100vh;
        background: var(--navy);
        flex-direction: column; align-items: flex-start;
        padding: 5rem 1.5rem 2rem; gap: .15rem;
        transition: right .3s ease;
        box-shadow: -6px 0 20px rgba(0,0,0,.35);
    }
    .nav-links.open { right: 0; }
    .nav-links a { width: 100%; padding: .7rem 1rem; font-size: .95rem; border-radius: 8px; }
    .nav-links a:hover { background: rgba(255,255,255,.08); }
}

/* ---- HERO ---- */
#hero { position: relative; height: 100vh; min-height: 580px; }

.hero-swiper { width: 100%; height: 100%; }

.hero-slide { position: relative; overflow: hidden; }
.hero-slide::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,.88) 0%, rgba(200,16,46,.28) 55%, rgba(10,22,40,.75) 100%);
    z-index: 1;
}
.hero-bg {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.06);
    transition: transform 6.5s ease;
}
.swiper-slide-active .hero-bg { transform: scale(1); }

.hero-content {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column;
    justify-content: center; padding: 0 8% 0 10%;
    max-width: 860px;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: #fff;
    padding: .38rem 1rem; border-radius: 20px;
    font-size: .75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 1.4rem;
    opacity: 0;
    animation: none;
}
.hero-title {
    font-family: var(--font-head);
    font-size: clamp(3rem, 8vw, 7rem);
    color: #fff; line-height: .95;
    text-transform: uppercase; margin-bottom: 1.4rem;
    opacity: 0; animation: none;
}
.hero-title .accent { color: var(--red); }
.hero-subtitle {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,.82);
    max-width: 500px; line-height: 1.7;
    margin-bottom: 2.4rem;
    opacity: 0; animation: none;
}
.hero-btns { opacity: 0; animation: none; display: flex; flex-wrap: wrap; gap: 1rem; }

/* Slide-active animations */
.swiper-slide-active .hero-badge    { animation: heroUp .7s .15s ease both; }
.swiper-slide-active .hero-title    { animation: heroUp .7s .35s ease both; }
.swiper-slide-active .hero-subtitle { animation: heroUp .6s .55s ease both; }
.swiper-slide-active .hero-btns     { animation: heroUp .6s .72s ease both; }

@keyframes heroUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: .85rem 2.2rem; border-radius: 50px;
    font-size: .88rem; font-weight: 700;
    text-decoration: none; text-transform: uppercase;
    letter-spacing: 1px; transition: var(--transition);
}
.hero-btn-primary { background: var(--red); color: #fff; }
.hero-btn-primary:hover {
    background: var(--red-dark); color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(200,16,46,.45);
}
.hero-btn-outline { border: 2px solid rgba(255,255,255,.55); color: #fff; }
.hero-btn-outline:hover {
    border-color: #fff; background: rgba(255,255,255,.12);
    color: #fff; transform: translateY(-2px);
}

/* Pagination & nav */
.hero-pagination { bottom: 2rem !important; }
.hero-pagination .swiper-pagination-bullet {
    width: 9px; height: 9px;
    background: rgba(255,255,255,.45); opacity: 1;
}
.hero-pagination .swiper-pagination-bullet-active {
    background: var(--red); width: 28px; border-radius: 5px;
}
.hero-prev, .hero-next {
    color: #fff !important;
    width: 48px !important; height: 48px !important;
    background: rgba(255,255,255,.14) !important;
    border-radius: 50% !important;
    backdrop-filter: blur(4px);
    transition: var(--transition) !important;
}
.hero-prev:hover, .hero-next:hover { background: var(--red) !important; }
.hero-prev::after, .hero-next::after { font-size: .95rem !important; }

.scroll-indicator {
    position: absolute; bottom: 2.2rem; left: 50%;
    transform: translateX(-50%); z-index: 3;
    animation: bounce 2s ease-in-out infinite;
}
.scroll-indicator a { color: rgba(255,255,255,.6); font-size: 1.4rem; text-decoration: none; }
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(9px); }
}

/* ---- SECTIONS ---- */
section { padding: 5.5rem 0; }

/* Hero sıfırla — navbar hemen altından başlasın */
#hero { padding: 0 !important; margin-top: 0 !important; }

/* ---- STATS ---- */
#istatistikler {
    background: var(--gray-light) !important;
    padding: 3.5rem 0 !important;
    border-top: 1px solid rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.stat-card {
    text-align: center; color: var(--navy); padding: 1.8rem 1rem;
    border-right: 1px solid rgba(0,0,0,.08);
}
.stat-card:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1; color: var(--red); display: block;
}
.stat-label {
    font-size: .82rem; text-transform: uppercase;
    letter-spacing: 2px; color: var(--gray); font-weight: 600; margin-top: .45rem;
}
@media (max-width: 575px) {
    .stat-card { border-right: none; border-bottom: 1px solid rgba(0,0,0,.08); }
}

/* ---- ABOUT ---- */
#hakkimizda { background: var(--gray-light) !important; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); }
.about-badge {
    position: absolute; bottom: -18px; right: -18px;
    background: var(--red); color: #fff;
    padding: 1.4rem 1.2rem; border-radius: var(--radius);
    text-align: center; min-width: 115px;
    box-shadow: 0 8px 24px rgba(200,16,46,.4);
}
.about-badge .num { font-family: var(--font-head); font-size: 2.8rem; line-height: 1; display: block; }
.about-badge .lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; opacity: .85; }

.about-text { padding-left: 2.5rem; }
@media (max-width: 991px) {
    .about-text { padding-left: 0; padding-top: 2rem; }
    .about-badge { right: 8px; }
}

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.8rem 0; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(200,16,46,.1); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red); font-size: 1rem;
}
.feature-item h6 { font-size: .88rem; font-weight: 700; margin-bottom: .15rem; color: var(--navy); }
.feature-item p  { font-size: .78rem; color: var(--gray); margin: 0; line-height: 1.5; }

/* ---- AGE GROUPS ---- */
#yas-gruplari { background: var(--gray-light) !important; }
#yas-gruplari .section-title    { color: var(--navy); }
#yas-gruplari .section-subtitle { color: var(--gray); }

.age-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: var(--shadow);
    border-radius: var(--radius); padding: 2.4rem 1.8rem;
    text-align: center; transition: var(--transition);
    position: relative; overflow: hidden; height: 100%;
}
.age-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--red);
    transform: scaleX(0); transition: transform .3s ease;
}
.age-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200,16,46,.3);
}
.age-card:hover::after { transform: scaleX(1); }

.age-icon {
    width: 68px; height: 68px;
    background: var(--red); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.4rem; font-size: 1.75rem; color: #fff;
}
.age-card h3 { font-family: var(--font-head); font-size: 1.9rem; color: var(--navy); margin-bottom: .5rem; }
.age-card p  { color: var(--gray); font-size: .88rem; line-height: 1.65; margin: 0; }

/* ---- TEAM ---- */
#kadro { background: var(--gray-light) !important; }

.team-filter { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
    padding: .45rem 1.4rem; border-radius: 22px;
    border: 2px solid var(--navy-light);
    background: transparent; color: var(--navy);
    font-size: .8rem; font-weight: 700; cursor: pointer;
    transition: var(--transition); text-transform: uppercase; letter-spacing: 1px;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--red); border-color: var(--red); color: #fff;
}

.player-card {
    background: #fff; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow);
    transition: var(--transition); height: 100%;
}
.player-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.player-img-wrap { position: relative; overflow: hidden; padding-top: 108%; }
.player-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.player-card:hover .player-img { transform: scale(1.06); }

.player-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,.9) 0%, transparent 55%);
    display: flex; align-items: flex-end; padding: 1.2rem;
    opacity: 0; transition: opacity .3s ease;
}
.player-card:hover .player-overlay { opacity: 1; }
.player-bio { color: rgba(255,255,255,.85); font-size: .78rem; line-height: 1.5; }

.coach-badge {
    position: absolute; top: .9rem; right: .9rem;
    background: var(--red); color: #fff;
    font-size: .65rem; padding: .25rem .7rem;
    border-radius: 16px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
}

.player-info { padding: 1.15rem; text-align: center; }
.player-info h4  { font-family: var(--font-head); font-size: 1.25rem; color: var(--navy); margin-bottom: .15rem; }
.player-position { font-size: .82rem; color: var(--red); font-weight: 700; margin-bottom: .12rem; }
.player-group    { font-size: .76rem; color: var(--gray); }

/* ---- GALLERY ---- */
#galeri { background: var(--gray-light) !important; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

.gallery-item img {
    width: 100%; height: 100%; min-height: 190px;
    object-fit: cover; display: block;
    transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(200,16,46,.72);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #fff; font-size: 1.8rem; }

@media (max-width: 767px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
}

/* ---- NEWS ---- */
#haberler { background: var(--gray-light) !important; }

.news-card {
    background: #fff; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow);
    transition: var(--transition); height: 100%;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.news-img-wrap { position: relative; overflow: hidden; padding-top: 58%; }
.news-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.news-card:hover .news-img { transform: scale(1.05); }

.news-category {
    position: absolute; top: .9rem; left: .9rem;
    background: var(--red); color: #fff;
    font-size: .65rem; padding: .25rem .75rem;
    border-radius: 16px; font-weight: 700; text-transform: uppercase;
}
.news-body  { padding: 1.4rem; }
.news-date  { font-size: .76rem; color: var(--gray); margin-bottom: .45rem; display: flex; align-items: center; gap: 6px; }
.news-title { font-family: var(--font-head); font-size: 1.35rem; color: var(--navy); margin-bottom: .6rem; line-height: 1.2; }
.news-excerpt { font-size: .84rem; color: var(--gray); line-height: 1.65; }

/* ---- CONTACT ---- */
#iletisim { background: var(--gray-light) !important; }
#iletisim .section-title    { color: var(--navy); }
#iletisim .section-subtitle { color: var(--gray); }

.contact-info-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.4rem; background: #fff;
    border-radius: var(--radius); margin-bottom: .9rem;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.contact-icon {
    width: 48px; height: 48px; background: var(--red);
    border-radius: 10px; display: flex;
    align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff; flex-shrink: 0;
}
.contact-info-item h6 { color: var(--gray); font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: .25rem; font-weight: 700; }
.contact-info-item p  { color: var(--navy); font-size: .95rem; margin: 0; font-weight: 600; }

.contact-form {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: var(--shadow);
    border-radius: var(--radius); padding: 2.4rem;
}
.form-label {
    color: var(--navy); font-size: .78rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: .45rem;
}
.form-control, .form-select {
    background: #f8f9fb !important;
    border: 1px solid #dce1e7 !important;
    color: var(--navy) !important; border-radius: 8px !important;
    padding: .72rem 1rem !important; font-size: .88rem !important;
}
.form-control:focus, .form-select:focus {
    border-color: var(--red) !important;
    box-shadow: 0 0 0 3px rgba(200,16,46,.15) !important;
    background: #fff !important;
}
.form-control::placeholder { color: #9aa2ac !important; }
.form-select option { background: #fff; color: var(--navy); }

.btn-submit {
    background: var(--red); color: #fff; border: none;
    padding: .9rem 2rem; border-radius: 50px;
    font-size: .9rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; transition: var(--transition);
    width: 100%; display: flex; align-items: center; justify-content: center; gap: 9px;
}
.btn-submit:hover {
    background: var(--red-dark); transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(200,16,46,.45);
}
.btn-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.social-links { display: flex; gap: .9rem; margin-top: 2rem; flex-wrap: wrap; }
.social-link {
    width: 44px; height: 44px; border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: var(--shadow);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); text-decoration: none; font-size: 1.05rem;
    transition: var(--transition);
}
.social-link:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(200,16,46,.35);
}

/* ---- FOOTER ---- */
footer {
    background: #050d19 !important;
    color: rgba(255,255,255,.42);
    padding: 1.8rem 0; text-align: center; font-size: .82rem;
}
footer a { color: var(--red); text-decoration: none; }
footer strong { color: rgba(255,255,255,.75); }

/* ---- ALERT FLOAT ---- */
.alert-float {
    position: fixed; bottom: 2rem; right: 2rem;
    z-index: 9999; min-width: 300px; max-width: 380px;
    border-radius: var(--radius); padding: 1rem 1.4rem;
    display: none; animation: slideRight .35s ease;
    font-size: .9rem; font-weight: 500;
}
@keyframes slideRight {
    from { transform: translateX(80px); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

/* ---- UTILITIES ---- */
.btn-red {
    background: var(--red); color: #fff;
    padding: .72rem 1.9rem; border-radius: 24px;
    font-weight: 700; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition); text-transform: uppercase;
    letter-spacing: 1px; font-size: .85rem;
}
.btn-red:hover {
    background: var(--red-dark); color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(200,16,46,.4);
}
.text-red   { color: var(--red) !important; }
.bg-navy    { background: var(--navy) !important; }
.bg-red     { background: var(--red)  !important; }
