/* ==========================================================================
   RH-SPORTS COMPANY / RH THE SPORTS LEADER
   World-Class Sportswear & Apparel Manufacturer - Sialkot, Pakistan
   Ultra-Premium Modern Athletic Redesign
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
    /* Dynamic Athletic Color Palette */
    --brand-red: #E11D48;
    --brand-red-hover: #BE123C;
    --brand-red-neon: #FF1E56;
    --brand-red-glow: rgba(225, 29, 72, 0.35);
    --brand-red-subtle: rgba(225, 29, 72, 0.08);

    --dark-void: #060911;
    --dark-base: #0B0F19;
    --dark-surface: #111827;
    --dark-card: #141E33;
    --dark-border: rgba(255, 255, 255, 0.08);
    --dark-border-hover: rgba(225, 29, 72, 0.4);

    --pure-white: #FFFFFF;
    --off-white: #F8FAFC;
    --light-slate: #F1F5F9;
    --border-light: #E2E8F0;

    --text-primary: #0F172A;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --text-on-dark: #F8FAFC;
    --text-dark-muted: #94A3B8;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 12px 36px rgba(11, 15, 25, 0.08);
    --shadow-hover: 0 20px 48px rgba(11, 15, 25, 0.14);
    --shadow-neon-red: 0 8px 30px rgba(225, 29, 72, 0.4);
    --shadow-dark-card: 0 16px 40px rgba(0, 0, 0, 0.45);

    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   Global Reset & Defaults
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--pure-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.font-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark-void);
}
::-webkit-scrollbar-thumb {
    background: #1E293B;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-red);
}

/* --------------------------------------------------------------------------
   Top Bar
   -------------------------------------------------------------------------- */
.top-bar-pro {
    background: var(--dark-void);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #94A3B8;
    font-size: 0.82rem;
    padding: 8px 0;
    position: relative;
    z-index: 1030;
}

.top-bar-link {
    color: #CBD5E1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.top-bar-link:hover {
    color: var(--brand-red-neon);
}

.top-bar-badge {
    background: rgba(225, 29, 72, 0.15);
    border: 1px solid rgba(225, 29, 72, 0.35);
    color: #FDA4AF;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Modern Glass Navbar
   -------------------------------------------------------------------------- */
.navbar-pro {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 12px 0;
    transition: var(--transition-smooth);
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon-logo {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--dark-void) 0%, #1E293B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--brand-red);
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.25);
    transition: var(--transition-fast);
}

.brand-wrap:hover .brand-icon-logo {
    transform: rotate(-4deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.45);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--dark-base);
    letter-spacing: -0.03em;
    line-height: 1;
}

.brand-name span {
    color: var(--brand-red);
}

.brand-tagline {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-top: 3px;
}

.nav-link-pro {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--dark-base) !important;
    padding: 7px 11px !important;
    border-radius: 50px;
    transition: var(--transition-fast);
    position: relative;
    white-space: nowrap !important;
    display: inline-flex;
    align-items: center;
}

.nav-link-pro:hover {
    color: var(--brand-red) !important;
    background: var(--brand-red-subtle);
}

.nav-link-pro.active {
    color: var(--brand-red) !important;
    background: rgba(225, 29, 72, 0.09);
    font-weight: 700;
}

/* CTA Buttons */
.btn-brand-red {
    background: linear-gradient(135deg, var(--brand-red) 0%, #BE123C 100%);
    color: var(--pure-white) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    padding: 9px 20px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    box-shadow: var(--shadow-neon-red);
    transition: var(--transition-fast);
    text-transform: uppercase;
    white-space: nowrap !important;
    flex-shrink: 0;
}

.btn-brand-red:hover {
    background: linear-gradient(135deg, #FF1E56 0%, #BE123C 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(225, 29, 72, 0.55);
    color: var(--pure-white) !important;
}

.btn-brand-outline-white {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: var(--pure-white) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn-brand-outline-white:hover {
    background: var(--pure-white);
    color: var(--dark-base) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-brand-outline-dark {
    background: transparent;
    border: 1.5px solid var(--border-light);
    color: var(--dark-base) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-brand-outline-dark:hover {
    background: var(--dark-base);
    color: var(--pure-white) !important;
    border-color: var(--dark-base);
}

/* --------------------------------------------------------------------------
   Dynamic Hero Carousel & Full-Bleed Athletic Banners
   -------------------------------------------------------------------------- */
.hero-epic-carousel {
    position: relative;
    background: var(--dark-void);
    overflow: hidden;
}

.hero-epic-slide {
    position: relative;
    min-height: 680px;
    padding: 90px 0 100px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 75% 30%, rgba(225, 29, 72, 0.22) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(17, 24, 39, 0.9) 0%, transparent 60%),
                linear-gradient(135deg, #050811 0%, #0A1124 50%, #060913 100%);
}

.hero-epic-slide::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, rgba(6, 9, 17, 1) 0%, transparent 100%);
    pointer-events: none;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(225, 29, 72, 0.12);
    border: 1px solid rgba(225, 29, 72, 0.4);
    color: #FDA4AF;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-display-heading {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    color: var(--pure-white);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 22px;
}

.text-gradient-red {
    background: linear-gradient(135deg, #FF1E56 0%, #FDA4AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle-text {
    font-size: 1.15rem;
    color: #CBD5E1;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-perks-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 38px;
}

.hero-perk-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #E2E8F0;
}

.hero-perk-badge i {
    color: var(--brand-red-neon);
    font-size: 1.05rem;
}

/* Hero Showcase Frame */
.hero-showcase-frame {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15) 0%, rgba(225, 29, 72, 0.3) 100%);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.hero-showcase-img-box {
    border-radius: calc(var(--radius-lg) - 6px);
    overflow: hidden;
    position: relative;
    background: var(--dark-surface);
}

.hero-showcase-img-box img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-showcase-frame:hover .hero-showcase-img-box img {
    transform: scale(1.05);
}

/* Floating Badges */
.glass-badge-left {
    position: absolute;
    bottom: -22px;
    left: -22px;
    background: rgba(11, 15, 25, 0.88);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 4px solid var(--brand-red);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--pure-white);
    box-shadow: var(--shadow-dark-card);
    z-index: 5;
}

.glass-badge-right {
    position: absolute;
    top: 25px;
    right: -22px;
    background: rgba(11, 15, 25, 0.88);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--pure-white);
    box-shadow: var(--shadow-dark-card);
    z-index: 5;
}

/* Hero Carousel Controls & Indicators */
.hero-controls-bar {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    z-index: 15;
}

.carousel-indicators-epic {
    position: static;
    margin: 0;
    gap: 10px;
    display: flex;
    align-items: center;
}

.carousel-indicators-epic [data-bs-target] {
    width: 38px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators-epic .active {
    background: var(--brand-red-neon);
    width: 60px;
}

.carousel-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-nav-btn:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   Live Trust Stats Ribbon
   -------------------------------------------------------------------------- */
.trust-metrics-strip {
    background: var(--dark-void);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 38px 0;
}

.metric-card-pro {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
}

.metric-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(225, 29, 72, 0.12);
    border: 1px solid rgba(225, 29, 72, 0.25);
    color: var(--brand-red-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--pure-white);
    line-height: 1;
    margin-bottom: 4px;
}

.metric-value span {
    color: var(--brand-red);
}

.metric-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.section-badge-red {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(225, 29, 72, 0.08);
    border: 1px solid rgba(225, 29, 72, 0.2);
    color: var(--brand-red);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-headline {
    font-size: clamp(2.2rem, 3.8vw, 3.1rem);
    font-weight: 900;
    color: var(--dark-base);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 16px;
}

.section-desc-text {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Product Showcase Cards (Redesigned)
   -------------------------------------------------------------------------- */
.collection-card-pro {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    background: var(--dark-base);
}

.collection-card-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-overlay-pro {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 9, 17, 0.96) 0%, rgba(6, 9, 17, 0.5) 50%, transparent 100%);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--pure-white);
    transition: var(--transition-smooth);
}

.collection-card-pro:hover img {
    transform: scale(1.08);
}

.collection-card-pro:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.collection-title {
    color: var(--pure-white);
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.collection-desc {
    color: #CBD5E1;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 14px;
}

.collection-btn-link {
    color: var(--brand-red-neon);
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   Technique & Customization Cards
   -------------------------------------------------------------------------- */
.tech-box-card {
    background: var(--pure-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tech-box-card:hover {
    transform: translateY(-8px);
    border-color: rgba(225, 29, 72, 0.4);
    box-shadow: 0 16px 40px rgba(225, 29, 72, 0.12);
}

.tech-box-img {
    height: 230px;
    position: relative;
    overflow: hidden;
}

.tech-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tech-box-card:hover .tech-box-img img {
    transform: scale(1.08);
}

.tech-box-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(6, 9, 17, 0.9);
    backdrop-filter: blur(8px);
    color: var(--pure-white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.tech-box-content {
    padding: 26px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tech-box-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-base);
    margin-bottom: 10px;
}

.tech-box-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    flex-grow: 1;
}

/* --------------------------------------------------------------------------
   Interactive Stepper: 6-Stage Workflow
   -------------------------------------------------------------------------- */
.step-matrix-card {
    background: var(--pure-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
}

.step-matrix-card:hover {
    border-color: var(--brand-red);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.step-index-pill {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--light-slate);
    color: var(--dark-base);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition-fast);
}

.step-matrix-card:hover .step-index-pill {
    background: var(--brand-red);
    color: var(--pure-white);
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.4);
}

/* --------------------------------------------------------------------------
   Export Worldwide CTA Banner
   -------------------------------------------------------------------------- */
.global-export-banner {
    background: linear-gradient(135deg, var(--dark-void) 0%, #0F172A 60%, #1E1B4B 100%);
    border-radius: var(--radius-xl);
    padding: 75px 45px;
    position: relative;
    overflow: hidden;
    color: var(--pure-white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.global-export-banner::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.28) 0%, transparent 70%);
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Page Header Banner (Inner Pages)
   -------------------------------------------------------------------------- */
.page-header-banner {
    background: linear-gradient(145deg, #050811 0%, #0B1124 60%, #070B16 100%);
    color: var(--pure-white);
    padding: 65px 0 70px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-header-banner h1 {
    color: var(--pure-white);
    font-size: clamp(2.3rem, 3.8vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.page-header-banner p {
    color: #CBD5E1;
    font-size: 1.1rem;
    max-width: 660px;
}

.breadcrumb-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #94A3B8;
    margin-bottom: 16px;
}

.breadcrumb-custom a {
    color: #E2E8F0;
}

.breadcrumb-custom a:hover {
    color: var(--brand-red-neon);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--dark-void);
    color: #94A3B8;
    padding-top: 75px;
    font-size: 0.92rem;
    border-top: 3px solid var(--brand-red);
}

.footer-brand h3 {
    color: var(--pure-white);
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.footer-brand h3 span {
    color: var(--brand-red);
}

.footer-heading {
    color: var(--pure-white);
    font-size: 1.12rem;
    font-weight: 800;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--brand-red);
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #94A3B8;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--pure-white);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #CBD5E1;
}

.footer-contact-item i {
    color: var(--brand-red);
    font-size: 1.15rem;
    margin-top: 3px;
}

.social-links-row {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.social-icon-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--pure-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon-link:hover {
    background: var(--brand-red);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(225, 29, 72, 0.4);
}

.footer-bottom-bar {
    margin-top: 55px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.85rem;
    color: #64748B;
}

/* --------------------------------------------------------------------------
   Responsive Layout Adaptations
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .hero-epic-slide {
        padding: 60px 0 80px;
        text-align: center;
    }
    .hero-subtitle-text {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-perks-row {
        justify-content: center;
    }
    .hero-showcase-frame {
        margin-top: 40px;
    }
    .hero-showcase-img-box img {
        height: 380px;
    }
    .glass-badge-left,
    .glass-badge-right {
        position: static;
        margin: 15px auto;
        display: inline-flex;
    }
}

@media (max-width: 575.98px) {
    .hero-showcase-img-box img {
        height: 280px;
    }
    .global-export-banner {
        padding: 40px 20px;
    }
}
