/* ═══════════════════════════════════════════════════════════════
   The Pride Group — 2026 corporate design system
   ═══════════════════════════════════════════════════════════════ */
:root {
    --bg: #06080f;
    --bg-elevated: #0e1219;
    --bg-card: #141a24;
    --bg-soft: #f4f6fa;
    --text: #0f172a;
    --text-muted: #5c6b82;
    --text-on-dark: #e8ecf4;
    --text-dim: #94a3b8;
    --gold: #d4a853;
    --gold-light: #f0cc7a;
    --gold-glow: rgba(212, 168, 83, 0.35);
    --border: rgba(15, 23, 42, 0.08);
    --border-dark: rgba(255, 255, 255, 0.08);
    --font: "DM Sans", system-ui, sans-serif;
    --font-display: "Fraunces", Georgia, serif;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --shadow: 0 4px 24px rgba(6, 8, 15, 0.08);
    --shadow-lg: 0 24px 64px rgba(6, 8, 15, 0.18);
    --nav-h: 80px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --container: min(1200px, calc(100% - 2.5rem));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-soft);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.has-fixed-nav { padding-top: var(--nav-h); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
hr { display: none; }

.container-xl {
    width: var(--container);
    margin-inline: auto;
}

/* ─── Header / Nav ─── */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1050;
    background: rgba(6, 8, 15, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.site-header.is-scrolled {
    background: rgba(6, 8, 15, 0.95);
    border-bottom-color: var(--border-dark);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.site-nav {
    padding: 0.75rem 0;
    min-height: var(--nav-h);
}

.site-nav .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.logo_main {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 10px;
}

.brand-text,
.main_heading_pride {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0;
}

.site-nav .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.45rem 0.7rem !important;
    border-radius: var(--radius-pill);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active,
.site-nav .nav-dropdown-trigger.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
}

@media (min-width: 992px) {
    .site-nav__list {
        gap: 0.15rem;
    }

    .brand-text {
        font-size: 1.15rem;
    }

    .logo_main {
        width: 40px;
        height: 40px;
    }
}

.site-nav .nav-link.nav-cta {
    background: linear-gradient(135deg, var(--gold), #b8923f);
    color: var(--bg) !important;
    font-weight: 600;
    margin-left: 0.35rem;
    padding: 0.5rem 1rem !important;
    font-size: 0.82rem;
}

.site-nav .nav-link.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--gold-glow);
    color: var(--bg) !important;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.55rem;
}

.navbar-toggler-icon {
    filter: invert(1);
}

@media (max-width: 991px) {
    .site-nav .navbar-collapse {
        background: var(--bg-elevated);
        border: 1px solid var(--border-dark);
        border-radius: var(--radius);
        padding: 1rem;
        margin-top: 0.75rem;
    }
    .site-nav .nav-link.nav-cta { margin: 0.5rem 0 0; display: inline-block; }
}

/* Legacy hover panel — disabled */
.nav-mega-panel,
#panel {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
}

/* ─── Custom nav dropdowns ─── */
.nav-has-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.nav-dropdown-trigger .nav-chevron {
    font-size: 0.55rem;
    opacity: 0.7;
    transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-has-dropdown.is-open .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    padding: 0.5rem;
    background: rgba(14, 18, 28, 0.98);
    border: 1px solid rgba(212, 168, 83, 0.22);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
    z-index: 1050;
}

.nav-has-dropdown.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown--mega {
    min-width: 320px;
    padding: 0.65rem;
}

.nav-dropdown__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem;
    margin-top: 0.35rem;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-dropdown__link {
    display: block;
    padding: 0.55rem 0.85rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}

.nav-dropdown__link:hover,
.nav-dropdown__link:focus-visible {
    color: var(--gold-light);
    background: rgba(212, 168, 83, 0.1);
}

.nav-dropdown__link--featured {
    font-weight: 600;
    color: var(--gold-light);
}

.nav-dropdown__link--featured:hover {
    background: rgba(212, 168, 83, 0.15);
}

@media (max-width: 991px) {
    .nav-has-dropdown {
        width: 100%;
    }

    .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown {
        position: static;
        transform: none;
        min-width: 0;
        width: 100%;
        margin-top: 0.25rem;
        padding: 0.35rem 0 0.35rem 0.75rem;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        border-left: 2px solid rgba(212, 168, 83, 0.35);
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: none;
        transition: max-height 0.3s var(--ease), padding 0.3s;
    }

    .nav-has-dropdown.is-open .nav-dropdown {
        max-height: 480px;
        pointer-events: auto;
        padding: 0.5rem 0 0.5rem 0.75rem;
    }

    .nav-dropdown--mega .nav-dropdown__grid {
        grid-template-columns: 1fr;
    }
}

/* Legacy nav class hooks */
#main_box_nav { padding: 0; }
.bg_extra { background: transparent !important; }

/* ─── Buttons ─── */
.btn-primary,
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--bg);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover,
.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--gold-glow);
    color: var(--bg);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    background: transparent;
    border-radius: var(--radius-pill);
    padding: 0.85rem 1.75rem;
    font-weight: 600;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ─── Section utilities ─── */
.section {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-dark {
    background: var(--bg);
    color: var(--text-on-dark);
}

.section-light {
    background: var(--bg-soft);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 1rem;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 42rem;
    margin: 0 auto;
}

.section-dark .section-lead { color: var(--text-dim); }

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Homepage Hero ─── */
.hero-modern {
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--bg);
    color: #fff;
    overflow: hidden;
}

.hero-modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(212, 168, 83, 0.15), transparent 50%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(99, 102, 241, 0.08), transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, #0a0e18 100%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0 0 1.25rem;
}

.hero-title .typewrite,
.hero-title .wrap,
.main-hero_heading .wrap,
span.wrap {
    color: var(--gold-light);
    border-right: 3px solid var(--gold);
    padding-right: 6px;
    min-width: 10ch;
    display: inline-block;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 32rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-visual {
    position: relative;
}

.hero-card-stack {
    display: grid;
    gap: 1rem;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(12px);
}

.hero-stat-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-light);
    line-height: 1;
}

.hero-stat-card span {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Legacy hero */
.hero_section {
    margin: 0;
    padding: clamp(5rem, 12vw, 8rem) 1.5rem;
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--bg);
    color: #fff;
}

.define_category { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 600; }
.des_hero_section {
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 1.5rem;
}

/* ─── Stats ─── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.stat-card,
.bus_info .achivement {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.stat-card:hover,
.bus_info .achivement:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.stat-card .num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--bg);
    line-height: 1.2;
}

.stat-card .label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

/* ─── Home: stats / achievements strip ─── */
.section.bus_info {
    padding: clamp(4.5rem, 8vw, 6.5rem) 0;
    margin: 0;
    background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}

.bus_info__header {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.bus_info__title {
    margin-bottom: 0;
}

.bus_info .stats-grid {
    max-width: 1080px;
    margin: 0 auto;
    gap: clamp(1.5rem, 3vw, 2rem);
    grid-template-columns: repeat(3, 1fr);
}

.bus_info .stat-card,
.bus_info .achivement {
    padding: clamp(2rem, 4vw, 2.75rem) 1.25rem;
    border-radius: var(--radius-lg);
    border-top: 3px solid var(--gold);
    background: #fff;
}

.bus_info .achivement .num,
.bus_info .stat-card .num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--bg);
    line-height: 1.15;
}

.bus_info .achivement .label,
.bus_info .stat-card .label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.bus_info .border_bus_right,
.bus_info .border_bus_left { border: none; }

@media (max-width: 768px) {
    .bus_info .stats-grid {
        grid-template-columns: 1fr;
        max-width: 22rem;
    }
}

/* ─── Content cards ─── */
.content-card,
.about_us .shadow {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 5vw, 3.5rem);
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.about_us {
    margin: 0;
    padding: 0;
}

.heading_about_us,
.chairman div.main_head,
.what_is_new .main_heading,
.carasoul .keywords,
.main_head {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    text-align: center;
    color: var(--text);
    margin-bottom: 1rem;
}

.des_about_us,
.chairman div.main_des,
.chairman .history_sir {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 40rem;
    margin: 0 auto 1.5rem;
}

/* Chairman */
.chairman {
    margin: 0;
    padding: clamp(4rem, 8vw, 6rem) 1.5rem;
    background: linear-gradient(135deg, #0e1219 0%, #1a2230 100%);
    color: var(--text-on-dark);
}

.chairman .main_head { color: #fff; }
.chairman div.main_des,
.chairman .history_sir { color: var(--text-dim); }

.chairman-quote {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 1.5rem;
    border-left: 3px solid var(--gold);
}

/* Logo marquee */
.carasoul {
    margin: 0;
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--bg);
}

.carasoul .keywords {
    color: #fff;
    padding-bottom: 2rem;
}

.marquee-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.slider {
    height: 100px;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.slider::before,
.slider::after {
    display: none;
}

.slider .slide-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: marquee 45s linear infinite;
    will-change: transform;
}

.slider .slide-track:hover { animation-play-state: paused; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.slider .slide {
    width: auto;
    height: auto;
    flex-shrink: 0;
}

/* Legacy slider — prefer .logo-marquee in components.css */
.carasoul .slider .slide img {
    filter: none;
    opacity: 1;
}

/* What's new — see components.css .what-new-showcase */
.carasoul-what_is_new { display: none; }

.carousel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.carousel-inner .carousel-item img {
    width: 100%;
    height: clamp(280px, 45vw, 480px);
    object-fit: cover;
}

/* Video */
.frameset {
    background: var(--bg);
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.frameset .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tv .video,
.tv .youtube-embed {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
}

.youtube-embed {
    position: relative;
    display: block;
    overflow: hidden;
    background: #0a0c12;
}

.youtube-embed__thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube-embed__play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: 0;
    background: linear-gradient(180deg, rgba(6, 8, 15, 0.15), rgba(6, 8, 15, 0.55));
    cursor: pointer;
    transition: background 0.25s ease;
}

.youtube-embed__play:hover,
.youtube-embed__play:focus-visible {
    background: linear-gradient(180deg, rgba(6, 8, 15, 0.25), rgba(6, 8, 15, 0.7));
    outline: none;
}

.youtube-embed__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(3.5rem, 10vw, 5rem);
    height: clamp(3.5rem, 10vw, 5rem);
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.95);
    color: #0a0c12;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.youtube-embed__play:hover .youtube-embed__icon,
.youtube-embed__play:focus-visible .youtube-embed__icon {
    transform: scale(1.06);
    box-shadow: 0 16px 48px rgba(201, 162, 39, 0.35);
}

.youtube-embed__fallback {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 3;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(6, 8, 15, 0.75);
    color: #fff;
    font-size: 0.8rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.youtube-embed__fallback:hover {
    color: var(--gold, #c9a227);
    border-color: rgba(201, 162, 39, 0.5);
}

.youtube-embed.is-playing .youtube-embed__thumb,
.youtube-embed.is-playing .youtube-embed__play,
.youtube-embed.is-playing .youtube-embed__fallback {
    display: none;
}

.youtube-embed__iframe,
.tv iframe.video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
}

/* History */
.history {
    margin: 0;
    padding: clamp(4rem, 8vw, 6rem) 1.5rem;
    background:
        linear-gradient(135deg, rgba(6, 8, 15, 0.92), rgba(6, 8, 15, 0.75)),
        url("../images/sir_bg.jpg") center/cover no-repeat;
    color: #fff;
}

.main_head .main_line,
.main_head .year {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    line-height: 1.1;
}

.main_head .year { color: var(--gold-light); }

div.history div.main_des { color: var(--text-dim); font-size: 1.05rem; }

/* ─── Footer ─── */
.site-footer,
.footer {
    margin: 0;
    background: var(--bg);
    color: var(--text-dim);
}

.footer-inner { padding: clamp(3rem, 6vw, 4.5rem) 0 0; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-dark);
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 280px;
    margin: 0;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col a {
    color: var(--text-dim);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-contact li {
    display: flex;
    gap: 0.65rem;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.footer-contact i { color: var(--gold); margin-top: 0.2rem; flex-shrink: 0; }

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-dark);
    color: #fff;
    font-size: 1.1rem;
    transition: background 0.2s, transform 0.2s;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--bg);
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 1.25rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Legacy footer */
.bg-copy { background: transparent; color: inherit; padding: 0; }
.ad-con { padding: 0; text-align: left; }
.ad-con h3 { font-family: var(--font-display); color: #fff; }
.text-centern { text-align: center; padding: 1.5rem 0; border-top: 1px solid var(--border-dark); color: var(--text-dim); font-size: 0.85rem; }
.fab, .social-media i { font-size: 1.25rem; }

/* Alert */
.alert-box {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 8, 15, 0.85);
    backdrop-filter: blur(8px);
}

.alert-box img {
    max-width: min(90%, 520px);
    border-radius: var(--radius-lg);
}
