/* =====================================================
   Veterans Law Associates — Main Stylesheet
   ===================================================== */

:root {
    --maroon: #800000;
    --dark-maroon: #5a0000;
    --gold: #c8a84b;
    --dark-gold: #a8882b;
    --dark-navy: #0d1b2a;
    --navy: #1a2744;
    --light-bg: #f8f5f0;
    --text-dark: #1a1a1a;
    --text-muted: #666;
    --border-color: #e0d8cc;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Source Sans Pro', sans-serif;
}

/* Base */
body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.7;
    background: #fff;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
}

/* Colors */
.bg-maroon { background-color: var(--maroon) !important; }
.bg-dark-maroon { background-color: var(--dark-maroon) !important; }
.bg-dark-navy { background-color: var(--dark-navy) !important; }
.bg-gold { background-color: var(--gold) !important; }
.bg-light-bg { background-color: var(--light-bg) !important; }
.text-gold { color: var(--gold) !important; }
.text-maroon { color: var(--maroon) !important; }

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: #000;
    border-color: var(--gold);
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: var(--dark-gold);
    border-color: var(--dark-gold);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 168, 75, 0.4);
}
.btn-maroon {
    background-color: var(--maroon);
    color: #fff;
    border-color: var(--maroon);
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.btn-maroon:hover {
    background-color: var(--dark-maroon);
    border-color: var(--dark-maroon);
    color: #fff;
}
.btn-outline-gold {
    border-color: var(--gold);
    color: var(--gold);
    font-weight: 600;
    border-radius: 3px;
}
.btn-outline-gold:hover {
    background-color: var(--gold);
    color: #000;
}
.btn-outline-maroon {
    border-color: var(--maroon);
    color: var(--maroon);
    font-weight: 600;
    border-radius: 3px;
}
.btn-outline-maroon:hover {
    background-color: var(--maroon);
    color: #fff;
}
.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    border: none;
    font-size: 0.78rem;
    padding: 3px 10px;
    border-radius: 20px;
}
.btn-whatsapp:hover { background-color: #1ebe57; color: #fff; }
.btn-hero-whatsapp {
    background-color: #25d366;
    color: #fff;
    border: none;
    width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
}
.btn-hero-whatsapp:hover {
    background-color: #1ebe57;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37,211,102,0.55);
}

/* Topbar */
.topbar { border-bottom: 1px solid rgba(255,255,255,0.1); }

/* Navbar */
.navbar.bg-dark-navy { background-color: var(--dark-navy) !important; }
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 0.9rem;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--gold);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-main { color: #fff; font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; }
.brand-sub { color: var(--gold); font-size: 0.68rem; letter-spacing: 1px; text-transform: uppercase; }

/* Hero Section */
.hero-section {
    min-height: 500px; /* JS overrides this with exact window - header height */
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 50%, var(--dark-maroon) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 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='%23c8a84b' fill-opacity='0.04'%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");
    opacity: 0.3;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block;
    background: rgba(200, 168, 75, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 18px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--gold);
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}
.hero-description {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    max-width: 550px;
    margin-bottom: 2rem;
}
.hero-stats {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 2rem;
    margin-top: 2rem;
    padding-bottom: 1.5rem;
}
.hero-stat-item { text-align: center; }
.hero-stat-item .stat-number { font-size: 2.2rem; font-weight: 700; color: var(--gold); font-family: var(--font-serif); }
.hero-stat-item .stat-label { color: rgba(255,255,255,0.6); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; }
.hero-court-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(200,168,75,0.15);
    border: 1px solid rgba(200,168,75,0.4);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Section Headings */
.section-header { margin-bottom: 3rem; }
.section-badge {
    display: inline-block;
    background: rgba(200, 168, 75, 0.15);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 4px 16px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    color: var(--dark-navy);
    font-weight: 700;
    margin-bottom: 1rem;
}
.section-title .text-gold { color: var(--gold) !important; }
.section-divider {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 1rem;
}

/* =====================================================
   PRACTICE AREA CARDS
   ===================================================== */
.practice-card {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.8rem 1.5rem;
    background: #fff;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: default;
}
.practice-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 0;
    background: linear-gradient(to bottom, var(--gold), var(--maroon));
    transition: height 0.4s ease;
    border-radius: 0 3px 3px 0;
}
.practice-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,168,75,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 10px;
    pointer-events: none;
}
.practice-card:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.13);
    transform: translateY(-6px);
    border-color: rgba(200,168,75,0.3);
}
.practice-card:hover::before { height: 100%; }
.practice-card:hover::after  { opacity: 1; }
.practice-icon {
    width: 62px; height: 62px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--maroon);
    margin-bottom: 1.2rem;
    transition: all 0.35s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.practice-card:hover .practice-icon {
    background: var(--maroon);
    color: var(--gold);
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 6px 20px rgba(128,0,0,0.25);
}
.practice-card h5 { font-size: 1rem; font-weight: 600; color: var(--dark-navy); margin-bottom: 0.5rem; transition: color 0.2s; }
.practice-card:hover h5 { color: var(--maroon); }
.practice-card p  { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1rem; }
.practice-card .read-more { color: var(--maroon); font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 4px; }
.practice-card:hover .read-more { color: var(--gold); letter-spacing: 0.4px; }

/* =====================================================
   TEAM CARDS
   ===================================================== */
.team-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #fff;
    position: relative;
}
.team-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--maroon), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.16);
}
.team-card:hover::after { transform: scaleX(1); }
.team-card img { transition: transform 0.5s ease; }
.team-card:hover img { transform: scale(1.06); }
.team-card-img { height: 280px; object-fit: cover; width: 100%; }
.team-card-body { padding: 1.5rem; }
.team-card-body h5 { font-weight: 700; color: var(--dark-navy); margin-bottom: 0.25rem; transition: color 0.2s; }
.team-card:hover .team-card-body h5 { color: var(--maroon); }
.team-card-body .designation { color: var(--maroon); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.team-card-body .specialization { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.5rem; }
.team-social a { color: var(--text-muted); margin-right: 8px; transition: all 0.2s; }
.team-social a:hover { color: var(--maroon); transform: translateY(-2px); display: inline-block; }

/* Compact 4-per-row team card */
.team-card-compact { display: flex; flex-direction: column; }
.team-card-compact .team-card-body { padding: 1.4rem; display: flex; flex-direction: column; flex-grow: 1; }
.team-compact-top {
    height: 6px;
    background: linear-gradient(90deg, var(--maroon), var(--gold));
    flex-shrink: 0;
}
.team-initials-circle {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark-navy), #2a3f6e);
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    letter-spacing: 1px;
    border: 2px solid rgba(200,168,75,0.35);
    transition: all 0.3s;
    flex-shrink: 0;
}
.team-card:hover .team-initials-circle {
    background: linear-gradient(135deg, var(--maroon), #8b1a1a);
    border-color: var(--gold);
}
.team-exp-badge {
    background: linear-gradient(135deg, var(--maroon), #8b1a1a);
    color: #fff;
    border-radius: 8px;
    padding: 5px 9px;
    text-align: center;
    line-height: 1.2;
    flex-shrink: 0;
}
.team-specialization-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.team-tag {
    background: rgba(139,26,26,0.07);
    color: var(--maroon);
    border: 1px solid rgba(139,26,26,0.18);
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 2px 8px;
    letter-spacing: 0.2px;
    transition: all 0.2s;
}
.team-card:hover .team-tag {
    background: var(--maroon);
    color: #fff;
    border-color: var(--maroon);
}

/* =====================================================
   TESTIMONIAL CARDS
   ===================================================== */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.8rem;
    height: 100%;
    position: relative;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px; left: 20px;
    font-size: 5rem;
    color: var(--gold);
    line-height: 1;
    font-family: Georgia, serif;
    opacity: 0.25;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--maroon));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: rgba(200,168,75,0.35);
}
.testimonial-card:hover::before { opacity: 0.55; transform: scale(1.1); }
.testimonial-card:hover::after  { transform: scaleX(1); }
.stars { color: #ffc107; font-size: 0.9rem; }
.testimonial-text { color: var(--text-muted); font-style: italic; margin: 1rem 0; transition: color 0.2s; }
.testimonial-card:hover .testimonial-text { color: #444; }
.client-info img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; transition: transform 0.3s ease; }
.testimonial-card:hover .client-info img { transform: scale(1.08); }
.client-info .client-name { font-weight: 700; font-size: 0.9rem; }
.client-info .client-service { color: var(--gold); font-size: 0.78rem; }

/* =====================================================
   BLOG CARDS
   ===================================================== */
.blog-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
}
.blog-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--maroon), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.14);
}
.blog-card:hover::after { transform: scaleX(1); }
.blog-card img { transition: transform 0.5s ease; }
.blog-card:hover img { transform: scale(1.06); }
.blog-card-img { height: 200px; object-fit: cover; width: 100%; }
.blog-card-body { padding: 1.5rem; }
.blog-category-badge { background: var(--maroon); color: #fff; padding: 3px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; text-decoration: none; display: inline-block; margin-bottom: 0.75rem; transition: all 0.2s; }
.blog-category-badge:hover { background: var(--gold); color: #000; }
.blog-card-body h5 { font-size: 1rem; font-weight: 700; color: var(--dark-navy); margin-bottom: 0.5rem; line-height: 1.4; transition: color 0.2s; }
.blog-card:hover .blog-card-body h5 { color: var(--maroon); }
.blog-meta { color: var(--text-muted); font-size: 0.8rem; }

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-section .accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 0.75rem;
    border-radius: 8px !important;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.faq-section .accordion-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.09);
    transform: translateX(4px);
}
.faq-section .accordion-button { font-weight: 600; color: var(--dark-navy); background: var(--light-bg); font-size: 0.95rem; transition: all 0.25s; }
.faq-section .accordion-button:not(.collapsed) { color: var(--maroon); background: #fff; box-shadow: none; }
.faq-section .accordion-button:hover { background: #fff; color: var(--maroon); }
.faq-section .accordion-button::after { filter: none; }
.faq-section .accordion-button:not(.collapsed)::after { filter: invert(1) sepia(1) saturate(2) hue-rotate(330deg); }

/* =====================================================
   CONTACT INFO CARDS
   ===================================================== */
.contact-card { background: var(--light-bg); border-radius: 10px; padding: 2rem; height: 100%; }
.contact-icon { width: 55px; height: 55px; background: var(--maroon); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; flex-shrink: 0; transition: all 0.3s ease; }
#contact .card { transition: all 0.35s ease; }
#contact .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12) !important;
}
#contact .card:hover .contact-icon {
    transform: scale(1.12) rotate(-8deg);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.form-control, .form-select { border: 1px solid var(--border-color); border-radius: 5px; padding: 0.65rem 1rem; font-size: 0.9rem; transition: all 0.25s; }
.form-control:focus, .form-select:focus { border-color: var(--maroon); box-shadow: 0 0 0 0.15rem rgba(128,0,0,0.15); transform: translateY(-1px); }
.form-label { font-weight: 600; font-size: 0.88rem; color: var(--dark-navy); }

/* =====================================================
   WHY CHOOSE US / ADVANTAGE CARDS
   ===================================================== */
.why-choose-item {
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.35s ease;
}
.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.1);
    border-left-color: var(--maroon);
}
.why-choose-item .icon { font-size: 2rem; color: var(--maroon); margin-bottom: 1rem; transition: transform 0.3s ease; }
.why-choose-item:hover .icon { transform: scale(1.15) rotate(-5deg); }
.why-choose-item h5 { font-weight: 700; color: var(--dark-navy); margin-bottom: 0.5rem; transition: color 0.2s; }
.why-choose-item:hover h5 { color: var(--maroon); }
.why-choose-item p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* =====================================================
   ABOUT — ADVANTAGE (inline style) CARDS
   ===================================================== */
.about-adv-card {
    transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.about-adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12) !important;
}
.about-adv-card:hover .adv-icon {
    transform: scale(1.15) rotate(-8deg);
}
.adv-icon { transition: transform 0.35s ease; }

/* =====================================================
   ABOUT FIRM CARD (About section right panel)
   ===================================================== */
.about-firm-card {
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
                box-shadow 0.4s ease;
    cursor: default;
    position: relative;
}
.about-firm-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,168,75,0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
}
.about-firm-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 28px 60px rgba(0,0,0,0.3) !important;
}
.about-firm-card:hover::before { opacity: 1; }
.about-firm-inner { position: relative; z-index: 2; }
.about-firm-icon {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}
.about-firm-card:hover .about-firm-icon {
    transform: scale(1.2) rotate(10deg);
    opacity: 1 !important;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 100%);
    padding: 80px 0 60px;
    position: relative;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon));
}
.page-hero h1 { color: #fff; font-weight: 700; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* Footer */
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.social-link:hover { background: var(--gold); color: #000; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 56px; height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    animation: pulse 2s infinite;
    transition: transform 0.2s;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.1); }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Utility */
.shadow-soft { box-shadow: 0 5px 20px rgba(0,0,0,0.08) !important; }
.rounded-lg { border-radius: 12px !important; }
.border-gold { border-color: var(--gold) !important; }
.gap-2 { gap: 0.5rem !important; }

/* Dropdown mega */
.mega-menu { min-width: 280px; column-count: 1; padding: 0.5rem 0; }
.mega-menu .dropdown-item { font-size: 0.85rem; padding: 0.45rem 1.2rem; color: rgba(255,255,255,0.75) !important; }
.mega-menu .dropdown-item:hover { color: var(--gold) !important; background: transparent; }
.mega-menu .dropdown-item i { width: 20px; }

/* Responsive */
@media (max-width: 768px) {
    .hero-section { min-height: 500px; padding: 40px 0; }
    .hero-stats { display: block; }
    .hero-stat-item .stat-number { font-size: 1.6rem; }
    .page-hero { padding: 50px 0 40px; }
}
