/* ============================================
   ROYAL INSTITUTION - MAIN STYLESHEET
   ============================================ */

:root {
    --ri-navy: #0a1628;
    --ri-gold: #c8932a;
    --ri-gold-light: #e8b84b;
    --ri-red: #c0392b;
    --ri-red-btn: #e74c3c;
    --ri-blue: #1a3a6e;
    --ri-blue-light: #2563eb;
    --ri-white: #ffffff;
    --ri-light: #f8f9fa;
    --ri-border: rgba(200,147,42,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Raleway', sans-serif;
    color: #2c2c2c;
    overflow-x: hidden;
}

/* ---- TOP BAR ---- */
.top-bar {
    background: var(--ri-navy);
    padding: 7px 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid var(--ri-border);
}
.top-bar span { color: rgba(255,255,255,0.7); }
.top-bar-right a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.top-bar-right a:hover { color: var(--ri-gold); }

/* ---- NAVBAR ---- */
.main-navbar {
    background: transparent;
    padding: 10px 0;
    z-index: 1000;
    position: fixed;
    width: 100%;
    top: 0;
    transition: background-color .3s ease,box-shadow .3s ease,padding .3s ease;
}
.main-navbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.12);
    padding: 0;
}

.logo-emblem {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
}
.logo-emblem.small { width: 42px; height: 42px; }
.logo-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ri-navy) 0%, var(--ri-blue) 100%);
    border: 3px solid var(--ri-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    color: var(--ri-gold);
    font-size: 1.1rem;
    box-shadow: 0 0 0 2px var(--ri-navy);
}
.logo-emblem.small .logo-ring { font-size: 0.85rem; }
.brand-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.15rem;    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.5px;
}
.main-navbar.scrolled .brand-name {
    color: var(--ri-navy);
}

.brand-tagline {
    font-size: 0.65rem;
    color: var(--ri-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.main-navbar .nav-link {
    color: #fff !important;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 1.4rem 0.8rem !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}
.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 3px;
    background: var(--ri-gold);
    transition: all 0.3s;
}
.main-navbar.scrolled .nav-link {
    color: #333 !important;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: var(--ri-gold-light) !important; }
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { left: 0; right: 0; }
.main-navbar.scrolled .nav-link:hover,
.main-navbar.scrolled .nav-link.active { color: var(--ri-blue) !important; }

.ri-dropdown {
    border: none;
    border-top: 3px solid var(--ri-gold);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    min-width: 200px;
}
.ri-dropdown .dropdown-item {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 20px;
    color: #333;
    transition: all 0.2s;
}
.ri-dropdown .dropdown-item:hover {
    background: var(--ri-blue);
    color: #fff;
    padding-left: 28px;
}

.btn-member {
    background: var(--ri-blue);
    color: #fff !important;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    border: 2px solid var(--ri-blue);
    transition: all 0.2s;
    text-decoration: none;
}
.btn-member:hover {
    background: transparent;
    color: var(--ri-blue) !important;
}
.btn-login {
    background: var(--ri-red);
    color: #fff !important;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    border: 2px solid var(--ri-red);
    transition: all 0.2s;
    text-decoration: none;
}
.btn-login:hover {
    background: transparent;
    color: var(--ri-red) !important;
}

/* ---- HERO SECTION ---- */
.hero-section {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../../images/HomeHero.jpg') center/cover no-repeat;
    background-attachment: fixed;
    filter: brightness(0.45);
}
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,22,40,0.85) 0%,
        rgba(26,58,110,0.6) 50%,
        rgba(10,22,40,0.75) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    padding-top: 150px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,147,42,0.2);
    border: 1px solid var(--ri-gold);
    color: var(--ri-gold-light);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-badge .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--ri-gold);
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-title .highlight {
    color: var(--ri-gold-light);
    display: block;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 36px;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.btn-hero-primary {
    background: var(--ri-gold);
    color: var(--ri-navy);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: 2px solid var(--ri-gold);
    transition: all 0.3s;
    text-transform: uppercase;
}
.btn-hero-primary:hover {
    background: transparent;
    color: var(--ri-gold);
}
.btn-hero-outline {
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
    text-transform: uppercase;
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ri-gold-light);
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Hero card / congress banner */
.hero-congress-card {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(200,147,42,0.4);
    border-radius: 16px;
    padding: 30px;
    color: #fff;
}
.congress-number {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--ri-gold);
    line-height: 1;
}
.congress-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}
.congress-theme {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    margin-top: 12px;
    line-height: 1.5;
}
.honoree-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 12px;
    margin-top: 12px;
    border: 1px solid rgba(200,147,42,0.2);
}
.honoree-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ri-blue), var(--ri-navy));
    border: 2px solid var(--ri-gold);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--ri-gold); font-size: 1rem;
    flex-shrink: 0;
}
.honoree-name { font-size: 0.8rem; font-weight: 700; }
.honoree-title { font-size: 0.7rem; color: rgba(255,255,255,0.6); }

/* ---- SECTION STYLES ---- */
.section-header { margin-bottom: 50px; }
.section-tag {
    display: inline-block;
    background: rgba(200,147,42,0.1);
    color: var(--ri-gold);
    border: 1px solid var(--ri-border);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--ri-navy);
    line-height: 1.25;
}
.section-title .gold { color: var(--ri-gold); }
.section-divider {
    width: 60px; height: 3px;
    background: linear-gradient(to right, var(--ri-gold), var(--ri-blue));
    margin: 16px auto 0;
    border-radius: 2px;
}
.section-divider.left { margin-left: 0; }
.section-desc {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    line-height: 1.7;
    margin-top: 14px;
}

/* ---- WHY JOIN SECTION ---- */
.why-section { padding: 90px 0; background: var(--ri-light); }
.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px;
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--ri-gold), var(--ri-blue));
    transform: scaleX(0);
    transition: transform 0.3s;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: var(--ri-gold);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 64px; height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--ri-navy), var(--ri-blue));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--ri-gold);
    margin-bottom: 22px;
}
.feature-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ri-navy);
    margin-bottom: 12px;
}
.feature-card p { font-size: 0.9rem; color: #666; line-height: 1.65; }

/* ---- MEMBERSHIP SECTION ---- */
.membership-section { padding: 90px 0; background: var(--ri-navy); }
.membership-section .section-title { color: #fff; }

.membership-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,147,42,0.25);
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.membership-card.featured {
    background: rgba(200,147,42,0.12);
    border-color: var(--ri-gold);
    transform: scale(1.03);
}
.membership-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--ri-gold-light);
    box-shadow: 0 20px 50px rgba(200,147,42,0.2);
}
.membership-card.featured:hover { transform: translateY(-8px) scale(1.05); }
.featured-badge {
    position: absolute;
    top: 14px; right: -26px;
    background: var(--ri-gold);
    color: var(--ri-navy);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 32px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}
.membership-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 3px solid var(--ri-gold);
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: var(--ri-gold);
}
.membership-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--ri-gold-light);
    margin-bottom: 8px;
}
.membership-card .sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.membership-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 28px;
}
.membership-features li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex; align-items: center; gap: 10px;
}
.membership-features li i { color: var(--ri-gold); font-size: 0.8rem; }
.btn-apply {
    background: var(--ri-gold);
    color: var(--ri-navy);
    border: 2px solid var(--ri-gold);
    padding: 10px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    display: inline-block;
    text-transform: uppercase;
}
.btn-apply:hover {
    background: transparent;
    color: var(--ri-gold);
}

/* ---- NEWS SECTION ---- */
.news-section { padding: 90px 0; }
.news-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    background: #fff;
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--ri-gold);
}
.news-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--ri-navy), var(--ri-blue));
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: var(--ri-gold);
    overflow: hidden;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 22px; }
.news-category {
    display: inline-block;
    background: rgba(26,58,110,0.08);
    color: var(--ri-blue);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.news-card h5 {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: var(--ri-navy);
    line-height: 1.4;
    margin-bottom: 10px;
}
.news-card p { font-size: 0.85rem; color: #666; line-height: 1.6; }
.news-date { font-size: 0.75rem; color: #999; margin-top: 14px; }

/* ---- EVENTS SECTION ---- */
.events-section { padding: 90px 0; background: var(--ri-light); }
.event-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid #eee;
    transition: all 0.3s;
    margin-bottom: 16px;
}
.event-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--ri-gold);
}
.event-date-box {
    background: var(--ri-navy);
    color: var(--ri-gold);
    border-radius: 10px;
    padding: 12px 16px;
    text-align: center;
    min-width: 64px;
    flex-shrink: 0;
}
.event-date-box .day {
    font-family: 'Cinzel', serif;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
}
.event-date-box .month { font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; }
.event-info h5 {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: var(--ri-navy);
    margin-bottom: 6px;
}
.event-info p { font-size: 0.83rem; color: #666; }
.event-info .location { color: var(--ri-gold); font-size: 0.8rem; font-weight: 600; }

/* ---- GLOBAL BANNER ---- */
.global-banner {
    background: linear-gradient(135deg, var(--ri-gold) 0%, #a87520 100%);
    padding: 70px 0;
    text-align: center;
}
.global-banner h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--ri-navy);
    margin-bottom: 16px;
}
.global-banner p { color: rgba(10,22,40,0.75); font-size: 1rem; max-width: 560px; margin: 0 auto 28px; }
.btn-dark-outline {
    background: var(--ri-navy);
    color: var(--ri-gold);
    border: 2px solid var(--ri-navy);
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    text-transform: uppercase;
}
.btn-dark-outline:hover { background: transparent; color: var(--ri-navy); }

/* ---- FOOTER ---- */
.site-footer { background: #050d1a; }
.footer-top { padding: 70px 0 40px; }
.footer-heading {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--ri-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.footer-links a:hover { color: var(--ri-gold); padding-left: 6px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex; gap: 10px; align-items: flex-start;
}
.footer-contact li i { color: var(--ri-gold); margin-top: 2px; flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(200,147,42,0.4);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.85rem;
}
.footer-social a:hover { background: var(--ri-gold); color: var(--ri-navy); border-color: var(--ri-gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
}

/* ---- BACK TO TOP ---- */
.back-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    background: var(--ri-gold);
    color: var(--ri-navy);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(200,147,42,0.4);
    z-index: 999;
    transition: all 0.2s;
}
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top.show { display: flex; }

/* ---- PAGE HERO ---- */
.page-hero {
    background: linear-gradient(135deg, var(--ri-navy) 0%, var(--ri-blue) 100%);
    padding: 70px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8932a' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 12px;
}
.page-hero .breadcrumb {
    justify-content: center;
    background: transparent;
}
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a,
.page-hero .breadcrumb-item.active {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    text-decoration: none;
}
.page-hero .breadcrumb-item a:hover { color: var(--ri-gold); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ---- FORMS ---- */
.ri-form .form-control,
.ri-form .form-select {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}
.ri-form .form-control:focus,
.ri-form .form-select:focus {
    border-color: var(--ri-gold);
    box-shadow: 0 0 0 3px rgba(200,147,42,0.1);
}
.ri-form label { font-weight: 600; font-size: 0.85rem; color: #444; margin-bottom: 6px; }
.btn-submit {
    background: var(--ri-navy);
    color: #fff;
    border: 2px solid var(--ri-navy);
    padding: 12px 36px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-submit:hover {
    background: transparent;
    color: var(--ri-navy);
}

/* ---- ALERTS ---- */
.alert-success { border-left: 4px solid var(--ri-gold); background: rgba(200,147,42,0.08); color: #5a4a00; }
.alert-danger { border-left: 4px solid var(--ri-red); }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
    .hero-section { min-height: auto; }
    .hero-content { padding: 50px 0 30px; }
    .hero-congress-card { margin-top: 30px; }    .navbar-toggler {
        border-color: rgba(255,255,255,0.5) !important;
    }
    .main-navbar.scrolled .navbar-toggler {
        border-color: rgba(0,0,0,0.1) !important;
    }
    .navbar-toggler-icon {
        filter: invert(1) grayscale(100%) brightness(200%);
    }
    .main-navbar .nav-link { padding: 10px 12px !important; }
    .main-navbar .nav-link::after { display: none; }
    .membership-card.featured { transform: none; }
}
@media (max-width: 767px) {
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 1.8rem; }
}
