/*  ═══════════════════════════════════════════════════════════════════
    GLASSMORPHISM SUPREMACY — COMPLETE SITE-WIDE GLASS SYSTEM
    Applied to: Every page, every section, every card, every element
    ═══════════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────────────────────
   0. CSS BODY FOUNDATION — Subtle ambient gradient backdrop
   ──────────────────────────────────────────────────────────────────── */
body {
    background:
        radial-gradient(ellipse at 10% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(201, 169, 110, 0.03) 0%, transparent 50%),
        #08080a;
}

/* ────────────────────────────────────────────────────────────────────
   1. NAVBAR — Deep glass with gold undertone on scroll
   ──────────────────────────────────────────────────────────────────── */
.navbar {
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.8) 0%, rgba(8, 8, 10, 0) 100%);
}

.navbar.scrolled {
    background: rgba(6, 6, 8, 0.78) !important;
    backdrop-filter: blur(40px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(200%) !important;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1) !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.03),
        0 8px 40px rgba(0, 0, 0, 0.7),
        inset 0 -1px 0 rgba(201, 169, 110, 0.05) !important;
}

.nav-cta {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ────────────────────────────────────────────────────────────────────
   2. MOBILE NAV MENU — Full glass panel
   ──────────────────────────────────────────────────────────────────── */
.nav-menu {
    background: rgba(6, 6, 8, 0.92) !important;
    backdrop-filter: blur(48px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(48px) saturate(200%) !important;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8) !important;
}

/* ────────────────────────────────────────────────────────────────────
   3. DROPDOWN MENUS — Floating glass card
   ──────────────────────────────────────────────────────────────────── */
.dropdown-menu {
    background: rgba(8, 8, 10, 0.88) !important;
    backdrop-filter: blur(32px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(32px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-top: 1px solid rgba(201, 169, 110, 0.15) !important;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

/* ────────────────────────────────────────────────────────────────────
   4. HERO COUNTER BAR — Frosted bottom ribbon
   ──────────────────────────────────────────────────────────────────── */
.hero-counter-bar {
    background: rgba(8, 8, 10, 0.55) !important;
    backdrop-filter: blur(28px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(28px) saturate(160%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* ────────────────────────────────────────────────────────────────────
   5. MARQUEE STRIP — Frosted strip
   ──────────────────────────────────────────────────────────────────── */
.marquee-strip {
    background: rgba(12, 12, 14, 0.7) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* ────────────────────────────────────────────────────────────────────
   6. PILLAR CARDS — Glass tiles
   ──────────────────────────────────────────────────────────────────── */
.pillars {
    background: rgba(10, 10, 12, 0.6) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover {
    background: rgba(201, 169, 110, 0.05) !important;
    box-shadow: inset 0 0 40px rgba(201, 169, 110, 0.03), 0 0 0 1px rgba(201, 169, 110, 0.12);
}

.feature-icon {
    background: rgba(201, 169, 110, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 169, 110, 0.18) !important;
}

/* ────────────────────────────────────────────────────────────────────
   7. SERVICE ROWS — Glass hover state
   ──────────────────────────────────────────────────────────────────── */
.service-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.045) !important;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.045) !important;
}

.service-row:hover {
    background: rgba(201, 169, 110, 0.04) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 0 60px rgba(201, 169, 110, 0.03);
}

.service-arrow {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.service-row:hover .service-arrow {
    border-color: rgba(201, 169, 110, 0.4) !important;
    background: rgba(201, 169, 110, 0.08);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.1);
}

/* ────────────────────────────────────────────────────────────────────
   8. STATS BAND — Glass box
   ──────────────────────────────────────────────────────────────────── */
.stats-band {
    background: rgba(10, 10, 12, 0.7) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.045) !important;
    transition: background 0.6s ease;
}

.stat-item:hover {
    background: rgba(201, 169, 110, 0.04);
}

/* ────────────────────────────────────────────────────────────────────
   9. PORTFOLIO CARDS — Deep glass grid
   ──────────────────────────────────────────────────────────────────── */
.portfolio-grid {
    background: rgba(255, 255, 255, 0.04) !important;
}

.portfolio-card {
    background: rgba(8, 8, 10, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: none !important;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.portfolio-card:hover {
    background: rgba(22, 22, 26, 0.92) !important;
    box-shadow:
        inset 0 0 50px rgba(201, 169, 110, 0.05),
        inset 0 1px 0 rgba(201, 169, 110, 0.15) !important;
    transform: none;
}

.portfolio-filters .filter-btn {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    transition: all 0.4s ease;
}

.portfolio-filters .filter-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.portfolio-filters .filter-btn.active {
    background: var(--champagne) !important;
    border-color: var(--champagne) !important;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

/* ────────────────────────────────────────────────────────────────────
   10. TESTIMONIALS — Glass card with spotlight
   ──────────────────────────────────────────────────────────────────── */
.testimonials {
    background: rgba(10, 10, 12, 0.55) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
}

.testimonial-card {
    position: relative;
}

.t-btn {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
}

.t-btn:hover {
    background: rgba(201, 169, 110, 0.08) !important;
    border-color: rgba(201, 169, 110, 0.3) !important;
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.1);
}

/* ────────────────────────────────────────────────────────────────────
   11. NEWS CARDS — Frosted editorial cards
   ──────────────────────────────────────────────────────────────────── */
.news-grid {
    background: rgba(255, 255, 255, 0.03) !important;
}

.news-card {
    background: rgba(8, 8, 10, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.news-card:hover {
    background: rgba(20, 20, 24, 0.92) !important;
    box-shadow:
        inset 0 0 40px rgba(201, 169, 110, 0.04),
        inset 0 1px 0 rgba(201, 169, 110, 0.12) !important;
    transform: none;
}

/* ────────────────────────────────────────────────────────────────────
   12. FEATURES — Glass feature cells
   ──────────────────────────────────────────────────────────────────── */
.features {
    background: rgba(10, 10, 12, 0.6) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

.feature-item {
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.6s ease;
}

.feature-item:hover {
    background: rgba(201, 169, 110, 0.05) !important;
    box-shadow: inset 0 0 40px rgba(201, 169, 110, 0.04);
}

/* ────────────────────────────────────────────────────────────────────
   13. TEAM CARDS — Glass portrait frames
   ──────────────────────────────────────────────────────────────────── */
.team-grid {
    background: rgba(255, 255, 255, 0.04) !important;
    gap: 1px;
}

.team-card {
    background: rgba(8, 8, 10, 0.72) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: none;
}

.team-card:hover {
    background: rgba(18, 18, 22, 0.92) !important;
    box-shadow: inset 0 0 60px rgba(201, 169, 110, 0.06), inset 0 1px 0 rgba(201, 169, 110, 0.18) !important;
    transform: none;
}

.team-img {
    border: 2px solid rgba(201, 169, 110, 0.2) !important;
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.05), 0 8px 24px rgba(0, 0, 0, 0.5);
}

.team-card:hover .team-img {
    border-color: rgba(201, 169, 110, 0.5) !important;
    box-shadow: 0 0 0 6px rgba(201, 169, 110, 0.08), 0 12px 32px rgba(0, 0, 0, 0.6);
}

/* ────────────────────────────────────────────────────────────────────
   14. FAQ — Glass accordion
   ──────────────────────────────────────────────────────────────────── */
.faq-section {
    background: rgba(10, 10, 12, 0.65) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: background 0.4s ease;
}

.faq-item.open {
    background: rgba(201, 169, 110, 0.03);
    box-shadow: inset 0 0 30px rgba(201, 169, 110, 0.03);
}

.faq-q {
    backdrop-filter: blur(4px);
}

/* ────────────────────────────────────────────────────────────────────
   15. CONTACT FORM — Glass input fields
   ──────────────────────────────────────────────────────────────────── */
.form-row input,
.form-row textarea,
.form-row select {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 14px 16px !important;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(201, 169, 110, 0.4) !important;
    box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.2), 0 4px 16px rgba(201, 169, 110, 0.08) !important;
    outline: none;
}

/* ────────────────────────────────────────────────────────────────────
   16. CTA GLASS CARD — Premium glass call-to-action
   ──────────────────────────────────────────────────────────────────── */
.cta-glass-card,
.cta-glass-section .cta-glass-card {
    background: rgba(255, 255, 255, 0.025) !important;
    backdrop-filter: blur(32px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(32px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3) !important;
}

/* ────────────────────────────────────────────────────────────────────
   17. PAGE TITLE SECTIONS (inner pages) — Glass header band
   ──────────────────────────────────────────────────────────────────── */
.page-title-section {
    background:
        radial-gradient(ellipse at 50% 100%, rgba(201, 169, 110, 0.12), transparent 60%),
        rgba(8, 8, 10, 0.7) !important;
    backdrop-filter: blur(32px) !important;
    -webkit-backdrop-filter: blur(32px) !important;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1) !important;
}

/* ────────────────────────────────────────────────────────────────────
   18. FOOTER — Heavy glass with gold highlight
   ──────────────────────────────────────────────────────────────────── */
.footer {
    background: rgba(6, 6, 8, 0.82) !important;
    backdrop-filter: blur(40px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
    border-top: 1px solid rgba(201, 169, 110, 0.1) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ────────────────────────────────────────────────────────────────────
   19. LIGHT SECTION — No dark glass on pearl/white backgrounds
   ──────────────────────────────────────────────────────────────────── */
.section-light {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Pillar/feature cards inside light sections — light hover only */
.section-light .pillar-card,
.section-light .feature-item {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(201, 169, 110, 0.1) !important;
}

.section-light .pillar-card:hover,
.section-light .feature-item:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(201, 169, 110, 0.35) !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(201, 169, 110, 0.18) !important;
}

/* ────────────────────────────────────────────────────────────────────
   20. CARD LIGHT — Clean elegant hover for white/pearl background
   ──────────────────────────────────────────────────────────────────── */
.card-light {
    background: var(--white, #ffffff) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(201, 169, 110, 0.15) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.card-light:hover {
    background: #ffffff !important;
    border-color: rgba(201, 169, 110, 0.45) !important;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(201, 169, 110, 0.2) !important;
    transform: translateY(-3px);
}

/* ────────────────────────────────────────────────────────────────────
   21. PRELOADER — Frosted overlay
   ──────────────────────────────────────────────────────────────────── */
#preloader {
    background: rgba(8, 8, 10, 0.97) !important;
    backdrop-filter: blur(60px) !important;
    -webkit-backdrop-filter: blur(60px) !important;
}

/* ────────────────────────────────────────────────────────────────────
   22. GLASS PANEL (generic) — Maximum glass
   ──────────────────────────────────────────────────────────────────── */
.glass-panel {
    background: rgba(20, 20, 24, 0.4) !important;
    backdrop-filter: blur(44px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(44px) saturate(190%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3) !important;
}

.glass-panel:hover {
    background: rgba(28, 28, 34, 0.52) !important;
    border-color: rgba(201, 169, 110, 0.18) !important;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.09),
        inset 0 0 40px rgba(201, 169, 110, 0.03) !important;
    transform: translateY(-3px);
}

/* ────────────────────────────────────────────────────────────────────
   23. MOBILE BOTTOM DOCK — Ultra glass pill
   ──────────────────────────────────────────────────────────────────── */
.pill-dock {
    background: rgba(20, 20, 24, 0.55) !important;
    backdrop-filter: blur(48px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(48px) saturate(200%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(201, 169, 110, 0.05) !important;
}

/* ────────────────────────────────────────────────────────────────────
   24. ADMIN-FACING ELEMENTS — Glass tables and cards
   ──────────────────────────────────────────────────────────────────── */
.admin-card,
.dashboard-card,
.stat-card {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
}

/* ────────────────────────────────────────────────────────────────────
   25. CONTACT DETAIL ITEMS — Glass info blocks
   ──────────────────────────────────────────────────────────────────── */
.cd-item {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 4px;
    transition: all 0.4s ease;
}

.cd-item:hover {
    background: rgba(201, 169, 110, 0.04);
    border-color: rgba(201, 169, 110, 0.12);
}

/* ────────────────────────────────────────────────────────────────────
   26. SECTION BACKGROUNDS — Glass depth layers
   ──────────────────────────────────────────────────────────────────── */
.section {
    position: relative;
}

.section>.container {
    position: relative;
    z-index: 1;
}

/* ────────────────────────────────────────────────────────────────────
   27. BUTTONS — Glass ghost variant enhancement
   ──────────────────────────────────────────────────────────────────── */
.btn-ghost {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(201, 169, 110, 0.2) !important;
}

.btn-ghost:hover {
    background: rgba(201, 169, 110, 0.07) !important;
    border-color: rgba(201, 169, 110, 0.45) !important;
    box-shadow: 0 6px 24px rgba(201, 169, 110, 0.12), inset 0 0 16px rgba(201, 169, 110, 0.05) !important;
    transform: translateY(-2px);
}

.btn-gold {
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.btn-gold:hover {
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* ────────────────────────────────────────────────────────────────────
   28. PORTFOLIO DETAIL / VIEW PAGE — Glass sidebar and content
   ──────────────────────────────────────────────────────────────────── */
.portfolio-body-text blockquote {
    background: rgba(201, 169, 110, 0.05) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-left: 3px solid var(--champagne) !important;
}

/* ────────────────────────────────────────────────────────────────────
   29. LEAD / ELITE DOCK — Maximum glass prominence
   ──────────────────────────────────────────────────────────────────── */
#leadDock,
.lead-dock,
[id*="lead-dock"],
[class*="lead-dock"] {
    background: rgba(8, 8, 10, 0.72) !important;
    backdrop-filter: blur(40px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(40px) saturate(200%) !important;
    border: 1px solid rgba(201, 169, 110, 0.2) !important;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(201, 169, 110, 0.05) !important;
}

/* ────────────────────────────────────────────────────────────────────
   30. MOBILE-SPECIFIC glass adjustments
   ──────────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-counter-bar {
        flex-wrap: wrap;
        gap: 0;
        padding: 16px 0;
    }

    .hero-counter {
        width: 50%;
        padding: 16px 12px;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero-counter-sep {
        display: none;
    }

    .portfolio-grid {
        grid-template-columns: 1fr !important;
    }

    .news-grid {
        grid-template-columns: 1fr !important;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .pillars-grid {
        grid-template-columns: 1fr !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
    }

    .pillar-card,
    .feature-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr !important;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
    }
}