/* ============================================================
   CHEERHUB — SPORTS BOOKING PLATFORM
   Landing Page — Football Theme
   ============================================================ */

/* ============================================================
   1. RESET & BASE
   ============================================================ */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    transition: all .4s ease-in-out;
    color: inherit;
}

a, button, input[type="button"] {
    cursor: pointer;
    transition: all .2s ease-in-out;
}

a:focus, a:hover {
    text-decoration: none;
    color: inherit;
}

button {
    background: transparent;
    border: none;
}

button:focus { outline: none }

.list-inline-item:not(:last-child), ul { margin-right: 0; }

ul {
    padding-left: 0;
    padding-right: 0;
    transition: all .4s ease-in-out;
    margin: 0;
}

ul li { list-style-type: none }

:focus { outline: none; }

p { margin: 0; }

textarea { resize: none; }

.row { margin-left: 0; margin-right: 0; }

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */
@font-face {
    font-family: "myFont";
    src: url(../fonts/JF-Flat-regular.ttf);
}

body {
    direction: rtl;
    text-align: right;
    font-family: 'Cairo', 'myFont', sans-serif;
    word-spacing: 1px;
    color: #333;
    font-size: 15px;
    background: #fff;
    overflow-x: hidden;
}

.sports-heading {
    font-family: 'Oswald', 'Cairo', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ============================================================
   3. UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-left   { text-align: left; }
.padd-0  { padding-left: 0; padding-right: 0; }
.padd-5  { padding-left: 5px; padding-right: 5px; }
.sec-padd { padding-top: 80px; padding-bottom: 80px; }
.pl-10 { padding-left: 10px; }
.pr-10 { padding-right: 10px; }
.pt-10 { padding-top: 10px; }
.pb-10 { padding-bottom: 10px; }
.pl-20 { padding-left: 20px; }
.pr-20 { padding-right: 20px; }
.pt-20 { padding-top: 20px; }
.pb-20 { padding-bottom: 20px; }
.ml-10 { margin-left: 10px; }
.mr-10 { margin-right: 10px; }
.mt-10 { margin-top: 10px; }
.mb-10 { margin-bottom: 10px; }
.ml-20 { margin-left: 20px; }
.mr-20 { margin-right: 20px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.m-20  { margin: 20px; }
.p-15  { padding: 15px; }
.r-0   { border-radius: 0 !important; }
.p-0   { padding: 0 !important; }
.f-b   { font-weight: 600; }
.d-none  { display: none; }
.d-block { display: block; }
.flex-grow-1 { flex-grow: 1; }
.mx-1 { margin-left: .25rem !important; }
.main-color  { color: var(--main) !important; }
.grey-color  { color: #8fa898; }
.gold-color  { color: var(--gold); }
.font-11 { font-size: 11px; }
.font-18 { font-size: 18px; }
.font-20 { font-size: 20px; }
.under-line { text-decoration: underline; }

:focus { box-shadow: none !important; border-color: inherit; }

.dropdown-toggle::after { display: none; }
.dropdown { display: inline-block; }
.dropdown-menu { float: none; text-align: start; }

select.form-control:not([size]):not([multiple]) { height: auto; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=checkbox], input[type=radio] {
    position: relative;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

input[type=checkbox]:before {
    top: 0; left: 0; width: 20px; height: 20px;
    border: 1px solid var(--main); content: "";
    position: absolute; background: var(--main); border-radius: 3px;
}

input[type=checkbox]:checked::after {
    background: transparent; border: 2px solid #fff;
    top: 0px; left: 7px; width: 7px; height: 15px;
    content: ""; position: absolute;
    border-top-color: transparent; border-left-color: transparent;
    transform: rotate(45deg);
}

input[type=radio]:before {
    top: 0; left: 0; width: 20px; height: 20px;
    border: 1px solid var(--main); content: "";
    position: absolute; background: #fff; border-radius: 50%;
}

input[type=radio]:checked::after {
    top: 50%; left: 50%; width: 12px; height: 12px;
    content: ""; position: absolute;
    transform: translate(-50%, -50%);
    background: var(--main); border-radius: 50%;
}

.owl-carousel { direction: ltr; }

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn-main {
    display: inline-block;
    background-image: var(--main2);
    color: var(--white) !important;
    padding: 0 28px;
    border-radius: 10px;
    text-align: center;
    height: 48px;
    line-height: 48px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-main-w { background: #fff; color: var(--main); }

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-pitch) !important;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(245, 197, 24, 0.35);
    gap: 8px;
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(245, 197, 24, 0.55);
    color: var(--dark-pitch) !important;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    height: 52px;
    background: transparent;
    color: #fff !important;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    transform: translateY(-2px);
    color: #fff !important;
}

/* Section Label */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.section-label-green {
    background: rgba(45, 158, 88, 0.12);
    color: var(--pitch-green-light);
    border: 1px solid rgba(45, 158, 88, 0.3);
}

.section-label-gold {
    background: rgba(245, 197, 24, 0.12);
    color: var(--gold-dark);
    border: 1px solid rgba(245, 197, 24, 0.3);
}

.section-label-gold-dark {
    background: rgba(245, 197, 24, 0.15);
    color: var(--gold);
    border: 1px solid rgba(245, 197, 24, 0.4);
}

/* Section Title */
.section-title {
    font-family: 'Oswald', 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title-white { color: #fff; }
.section-title-dark  { color: var(--pitch-green); }

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 4px;
    margin: 0 auto 20px;
}

.section-divider-right {
    margin: 0 0 20px;
}

.the_title {
    max-width: 560px;
    margin: auto;
    text-align: center;
    margin-bottom: 50px;
}

/* ============================================================
   5. HEADER & NAVIGATION
   ============================================================ */
header#site-header {
    padding: 12px 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

header#site-header.scrolled {
    padding: 8px 0;
    background: rgba(6, 21, 14, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(245, 197, 24, 0.22);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* All pages: no margin since header is fixed/overlaid */
.body-content { margin-top: 0; }

/* Inner pages (privacy, deleteAccount) — offset for fixed header */
.body-content.inner-page {
    padding-top: 100px;
    min-height: 60vh;
    background: var(--off-white, #f0f4f0);
    color: var(--dark-pitch);
}

.the-logo {
    margin-inline-end: 15px;
    max-height: 65px;
    transition: all 0.3s ease;
    filter: brightness(1);
}

header#site-header.scrolled .the-logo {
    max-height: 55px;
}

.nav_bar {
    display: flex;
    justify-content: center;
}

.nav_bar li a {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 14px;
    position: relative;
    transition: color 0.3s ease;
    display: block;
}

.nav_bar li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 50%;
    left: 50%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.35s ease;
}

.nav_bar li a:hover,
.nav_bar li a.active {
    color: var(--gold);
}

.nav_bar li a:hover::after,
.nav_bar li a.active::after {
    right: 14px;
    left: 14px;
}

.header-actions {
    gap: 12px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1px solid rgba(245, 197, 24, 0.5);
    border-radius: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(245, 197, 24, 0.08);
}

.lang-btn:hover {
    background: rgba(245, 197, 24, 0.18);
    border-color: var(--gold);
    color: var(--gold);
}

.dropdown-menu {
    padding: 8px;
    border: 1px solid rgba(245, 197, 24, 0.3);
    border-radius: 12px;
    background: var(--dark-pitch);
    min-width: 120px;
    top: 12px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.dropdown-menu::after {
    content: "";
    position: absolute;
    border-width: 6px;
    border-style: solid;
    border-color: var(--gold) transparent transparent var(--gold);
    top: 0;
    left: 20px;
    transform: translateY(-50%) rotate(45deg);
}

.dropdown-menu .dropdown-item {
    border-radius: 8px;
    color: rgba(255,255,255,0.8);
    padding: 8px 12px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(245, 197, 24, 0.12);
    color: var(--gold);
}

/* Hamburger Menu */
.close-open-nav {
    width: 28px;
    height: 22px;
    margin-inline-start: 10px;
    position: relative;
    display: none;
    cursor: pointer;
}

.close-open-nav > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.close-open-nav > div span {
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 20px;
    display: block;
    transition: all 0.3s ease;
}

.close-open-nav.active span:first-of-type {
    transform: translateY(10px) rotate(45deg);
}

.close-open-nav.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.close-open-nav.active span:last-of-type {
    transform: translateY(-10px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 39;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero-slider-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100dvh;
}

.hero-slide {
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,21,14,0.93) 0%, rgba(10,61,31,0.78) 60%, rgba(6,21,14,0.85) 100%);
    z-index: 1;
}

/* Football field SVG lines decoration */
.field-lines-bg {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.06;
}

.field-lines-bg svg {
    width: 100%;
    height: 100%;
}

/* Floating football particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.2);
    animation: particleFloat linear infinite;
}

.hero-particle:nth-child(1) { width: 8px; height: 8px; left: 10%; animation-duration: 8s; animation-delay: 0s; bottom: -10px; }
.hero-particle:nth-child(2) { width: 5px; height: 5px; left: 25%; animation-duration: 11s; animation-delay: 2s; bottom: -10px; opacity: 0.25; }
.hero-particle:nth-child(3) { width: 10px; height: 10px; left: 40%; animation-duration: 9s; animation-delay: 4s; bottom: -10px; }
.hero-particle:nth-child(4) { width: 6px; height: 6px; left: 55%; animation-duration: 13s; animation-delay: 1s; bottom: -10px; opacity: 0.18; }
.hero-particle:nth-child(5) { width: 9px; height: 9px; left: 70%; animation-duration: 7s; animation-delay: 3s; bottom: -10px; }
.hero-particle:nth-child(6) { width: 4px; height: 4px; left: 85%; animation-duration: 10s; animation-delay: 0.5s; bottom: -10px; opacity: 0.3; }
.hero-particle:nth-child(7) { width: 7px; height: 7px; left: 90%; animation-duration: 14s; animation-delay: 6s; bottom: -10px; }
.hero-particle:nth-child(8) { width: 5px; height: 5px; left: 15%; animation-duration: 12s; animation-delay: 5s; bottom: -10px; opacity: 0.22; }

@keyframes particleFloat {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-110vh) translateX(20px); opacity: 0; }
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 5;
    padding-top: 100px;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid rgba(245, 197, 24, 0.5);
    border-radius: 50px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    background: rgba(245, 197, 24, 0.1);
    margin-bottom: 22px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
    font-family: 'Oswald', 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 58px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
    animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-title span {
    color: var(--gold);
}

.hero-desc {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    max-width: 480px;
    animation: fadeInUp 0.9s ease 0.35s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.9s ease 0.5s both;
}

/* App badges */
.app-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 0.65s both;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 13px;
    transition: all 0.3s ease;
}

.app-badge:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    transform: translateY(-2px);
}

.app-badge i {
    font-size: 20px;
    color: var(--gold);
}

.app-badge span strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

/* Hero Image Frame */
.hero-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInLeft 1s ease 0.3s both;
}

.hero-image-frame {
    position: relative;
    width: 380px;
    height: 380px;
    max-width: 100%;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(245,197,24,0.5);
    position: relative;
    z-index: 2;
    display: block;
}

.hero-image-ring {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px dashed rgba(245, 197, 24, 0.4);
    z-index: 1;
    animation: spinRing 15s linear infinite;
}

.hero-image-ring::before {
    content: '⚽';
    position: absolute;
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    font-size: 20px;
}

@keyframes spinRing {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Floating stat badges */
.stat-badge {
    position: absolute;
    background: rgba(6,21,14,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245,197,24,0.3);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    z-index: 6;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.stat-badge-1 {
    top: 10%;
    right: -20px;
    animation: floatBadge 4s ease-in-out infinite;
}

.stat-badge-2 {
    bottom: 20%;
    right: -30px;
    animation: floatBadge 4s ease-in-out 1.5s infinite;
}

.stat-badge-3 {
    top: 40%;
    left: -30px;
    animation: floatBadge 4s ease-in-out 0.8s infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* ── owl.animate.min.css replacement (missing file) ── */
.owl-carousel .animated {
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: both;
}
.owl-carousel .owl-animated-in  { z-index: 0; }
.owl-carousel .owl-animated-out { z-index: 1; }
.owl-carousel .fadeOut  { animation-name: fadeOut; }
.owl-carousel .fadeIn   { animation-name: fadeIn; }

/* ─────────────────────────────────────────────────────
   ⚽ SPORTS BROADCAST TRANSITION — Camera Cut Effect
   ─────────────────────────────────────────────────────
   Mimics a live sports TV camera switch:
   • Out: camera zooms into the pitch (blur + scale up + fade)
   • In:  new camera angle pulls back into frame cleanly
   ───────────────────────────────────────────────────── */

/* Outgoing slide — zoom-rush into the pitch */
@keyframes sportsCamOut {
    0%   {
        transform: scale(1) translateX(0);
        opacity: 1;
        filter: blur(0px) brightness(1);
    }
    25%  {
        filter: blur(0px) brightness(1.3);
        opacity: 1;
    }
    100% {
        transform: scale(1.12) translateX(-3%);
        opacity: 0;
        filter: blur(6px) brightness(0.6);
    }
}

/* Incoming slide — new camera angle rushes in from the right */
@keyframes sportsCamIn {
    0%   {
        transform: scale(1.1) translateX(4%);
        opacity: 0;
        filter: blur(5px) brightness(0.5);
    }
    40%  {
        opacity: 0.85;
        filter: blur(1px) brightness(1.1);
    }
    100% {
        transform: scale(1) translateX(0);
        opacity: 1;
        filter: blur(0px) brightness(1);
    }
}

/* Green pitch flash on cut — like stadium floodlights firing */
@keyframes slideFlash {
    0%   { opacity: 0; }
    15%  { opacity: 0.18; }
    50%  { opacity: 0.08; }
    100% { opacity: 0; }
}

.slide-flash {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,
        rgba(45, 158, 88, 0.55) 0%,
        rgba(10, 61, 31, 0.25) 55%,
        transparent 100%);
    z-index: 20;
    pointer-events: none;
    animation: slideFlash 0.55s ease-out forwards;
    border-radius: 0;
}

/* Owl carousel hero slider — timing & base */
.owl-index .owl-item {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.owl-index .animated {
    animation-duration: 1.1s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.owl-index .sportsCamOut { animation-name: sportsCamOut; }
.owl-index .sportsCamIn  { animation-name: sportsCamIn; }
.owl-index .owl-stage-outer {
    overflow: hidden;
    min-height: 100vh;
    min-height: 100dvh;
}

.owl-index .owl-stage,
.owl-index .owl-item,
.owl-index .owl-item > .item {
    min-height: 100vh;
    min-height: 100dvh;
    height: 100%;
}

/* Owl carousel customization */
.owl-index .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    gap: 8px;
}

.owl-index .owl-dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.owl-index .owl-dot.active {
    width: 28px;
    background: var(--gold);
}

.owl-index .owl-nav {
    display: none;
}

/* ============================================================
   7. STATS BAR
   ============================================================ */
.stats-bar {
    background: var(--dark-pitch);
    border-top: 2px solid var(--gold);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45,158,88,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
    line-height: 1;
}

.stat-number {
    font-family: 'Oswald', 'Cairo', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* ============================================================
   8. ABOUT SECTION
   ============================================================ */
.about-section {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 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='%230a3d1f' fill-opacity='0.03'%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");
    pointer-events: none;
}

.about-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline-end: 40px;
}

.about-info .section-title { color: var(--pitch-green); }

.about-info p {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--pitch-green), var(--pitch-green-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(10,61,31,0.2);
    color: white;
}

.about-feature-text h6 {
    font-weight: 700;
    color: var(--pitch-green);
    margin-bottom: 4px;
    font-size: 15px;
}

.about-feature-text p {
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.6;
}

.about-images {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-main {
    width: 260px;
    height: 460px;
    object-fit: cover;
    border-radius: 24px;
    position: relative;
    z-index: 3;
    box-shadow: 20px 20px 60px rgba(10,61,31,0.15);
    transform: rotate(-3deg);
}

.about-img-secondary {
    width: 210px;
    height: 360px;
    object-fit: cover;
    border-radius: 24px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
    z-index: 2;
    box-shadow: -10px 20px 50px rgba(0,0,0,0.12);
}

.about-download-badge {
    position: absolute;
    top: 5%;
    left: -10px;
    background: linear-gradient(135deg, var(--pitch-green), var(--pitch-green-mid));
    color: #fff;
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(10,61,31,0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

/* ============================================================
   9. SERVICES SECTION
   ============================================================ */
.services-section {
    background: var(--dark-pitch);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(26,107,58,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.services-section .the_title h3 {
    color: #fff;
    font-family: 'Oswald', 'Cairo', sans-serif;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}

.services-section .the_title p {
    color: var(--text-muted-sports);
    font-size: 15px;
    line-height: 1.8;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(245,197,24,0.12);
    border-radius: 20px;
    padding: 36px 28px;
    margin: 10px 0;
    min-height: calc(100% - 20px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(245,197,24,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    border-color: rgba(245,197,24,0.45);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(245,197,24,0.1);
}

.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 8px 20px rgba(245,197,24,0.25);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 28px rgba(245,197,24,0.4);
}

.service-icon-wrap img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: brightness(0) invert(0.1);
}

.service-icon-default {
    font-size: 28px;
    color: var(--dark-pitch);
}

.service-card h6 {
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'Cairo', sans-serif;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted-sports);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    transition: gap 0.3s ease;
}

.service-card:hover .service-card-link {
    gap: 10px;
}

/* ============================================================
   10. HOW IT WORKS SECTION
   ============================================================ */
.how-works-section {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.how-works-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='100' cy='100' r='90' fill='none' stroke='%230a3d1f' stroke-width='2' opacity='0.04'/%3E%3Ccircle cx='100' cy='100' r='60' fill='none' stroke='%230a3d1f' stroke-width='1.5' opacity='0.04'/%3E%3Ccircle cx='100' cy='100' r='30' fill='none' stroke='%230a3d1f' stroke-width='1' opacity='0.04'/%3E%3C/svg%3E") center/contain no-repeat;
    pointer-events: none;
}

.how-works-section .the_title h3 {
    color: var(--pitch-green);
    font-family: 'Oswald', 'Cairo', sans-serif;
    font-size: 38px;
    font-weight: 700;
}

.how-works-section .the_title p {
    color: #777;
}

.how-steps-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
}

.how-steps-wrapper::before {
    content: '';
    position: absolute;
    top: 70px;
    right: 15%;
    left: 15%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 16px);
    z-index: 0;
}

.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 140px;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.how-step-num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-pitch);
    margin-bottom: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(245,197,24,0.4);
    position: relative;
    z-index: 2;
}

.how-step-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    margin-bottom: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(10,61,31,0.12);
}

.how-step:hover .how-step-img {
    transform: scale(1.06);
    box-shadow: 0 12px 30px rgba(10,61,31,0.2), 0 0 0 4px rgba(245,197,24,0.2);
}

.how-step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--pitch-green);
    line-height: 1.4;
}

/* ============================================================
   11. FAQ SECTION
   ============================================================ */
.faq-section {
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26,107,58,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.faq-section .the_title h3 {
    color: #fff;
    font-family: 'Oswald', 'Cairo', sans-serif;
    font-size: 38px;
    font-weight: 700;
}

.faq-section .the_title p {
    color: var(--text-muted-sports);
}

/* Category tabs */
.faq-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.faq-tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-tab-btn:hover {
    border-color: rgba(245,197,24,0.4);
    color: rgba(255,255,255,0.85);
    background: rgba(245,197,24,0.05);
}

.faq-tab-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: transparent;
    color: var(--dark-pitch);
    box-shadow: 0 4px 16px rgba(245,197,24,0.3);
}

/* Custom accordion */
.faq-accordion { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.open {
    border-color: rgba(245,197,24,0.3);
    border-right: 4px solid var(--gold);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    transition: color 0.3s ease;
    gap: 12px;
}

.faq-question:hover { color: var(--gold); }

.faq-item.open .faq-question { color: var(--gold); }

.faq-question-num {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: var(--gold);
    opacity: 0.6;
    flex-shrink: 0;
    min-width: 30px;
}

.faq-item.open .faq-question-num { opacity: 1; }

.faq-question-text { flex: 1; }

.faq-chevron {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(245,197,24,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.faq-item.open .faq-chevron {
    background: rgba(245,197,24,0.2);
    transform: rotate(180deg);
}

.faq-chevron i {
    font-size: 12px;
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-muted-sports);
    font-size: 14px;
    line-height: 1.9;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 16px;
}

/* Panel toggle */
.faq-panel { display: none; }
.faq-panel.active { display: block; }

/* ============================================================
   12. PARTNERS SECTION
   ============================================================ */
.partners-section {
    background: linear-gradient(180deg, var(--pitch-green) 0%, var(--dark-pitch) 100%);
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.partners-section .the_title h3 {
    color: #fff;
    font-family: 'Oswald', 'Cairo', sans-serif;
    font-size: 36px;
    font-weight: 700;
}

.partners-section .the_title p {
    color: rgba(255,255,255,0.55);
}

/* Infinite ticker */
.ticker-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.ticker-wrapper::before {
    right: 0;
    background: linear-gradient(270deg, var(--dark-pitch), transparent);
}

.ticker-wrapper::after {
    left: 0;
    background: linear-gradient(90deg, var(--dark-pitch), transparent);
}

.ticker-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: tickerScroll 30s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    flex-shrink: 0;
}

.ticker-item img {
    height: 55px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.55;
    transition: all 0.3s ease;
}

.ticker-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.08);
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Keep Owl carousel for brands as fallback */
.owl-brands .item img {
    height: 55px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) brightness(2);
    opacity: 0.5;
    transition: all 0.3s ease;
    margin: auto;
    display: block;
}

.owl-brands .item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================================
   13. CONTACT SECTION
   ============================================================ */
.contact-section {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.contact-info-col {
    padding-inline-end: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-col .section-title {
    color: var(--pitch-green);
}

.contact-info-col > p {
    font-size: 15px;
    line-height: 1.9;
    color: #777;
    margin-bottom: 36px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 4px 20px rgba(10,61,31,0.07);
    transition: all 0.3s ease;
    border: 1px solid rgba(10,61,31,0.06);
}

.contact-card:hover {
    transform: translateX(-6px);
    box-shadow: 0 8px 30px rgba(10,61,31,0.12);
    border-color: rgba(10,61,31,0.12);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pitch-green), var(--pitch-green-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-card-info h6 {
    font-weight: 700;
    color: var(--pitch-green);
    margin-bottom: 3px;
    font-size: 13px;
}

.contact-card-info span {
    color: #555;
    font-size: 14px;
}

/* Form */
.contact-form-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 50px rgba(10,61,31,0.08);
    border: 1px solid rgba(10,61,31,0.06);
}

.form-floating-group {
    position: relative;
    margin-bottom: 20px;
}

.form-floating-group label {
    position: absolute;
    top: 15px;
    right: 18px;
    color: #aaa;
    font-size: 14px;
    transition: all 0.25s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 4px;
}

.form-floating-group input:focus ~ label,
.form-floating-group input:not(:placeholder-shown) ~ label,
.form-floating-group textarea:focus ~ label,
.form-floating-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 12px;
    color: var(--pitch-green-light);
    background: #fff;
    font-weight: 600;
}

.form-control {
    border: 1.5px solid #e8f0e9;
    padding: 15px 18px;
    border-radius: 14px;
    background: #fafafa;
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
    width: 100%;
    transition: all 0.3s ease;
    color: #333;
}

.form-control:focus {
    border-color: var(--pitch-green-light);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(45,158,88,0.1);
    outline: none;
}

.form-control::placeholder { color: transparent; }

textarea.form-control { height: 140px; }

.contact-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--pitch-green), var(--pitch-green-light));
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(10,61,31,0.25);
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(10,61,31,0.35);
    background: linear-gradient(135deg, var(--pitch-green-mid), var(--pitch-green-light));
}

/* ============================================================
   14. FOOTER
   ============================================================ */
footer {
    background: var(--dark-pitch);
    color: rgba(255,255,255,0.8);
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '⚽';
    position: absolute;
    bottom: 60px;
    left: -20px;
    font-size: 180px;
    opacity: 0.03;
    animation: spinRing 30s linear infinite;
    line-height: 1;
}

.footer-logo {
    max-width: 120px;
    margin-bottom: 16px;
    display: block;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 200px;
}

.social-m {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-m li a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(245,197,24,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    background: rgba(245,197,24,0.05);
}

.social-m li a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-pitch);
    transform: translateY(-3px);
}

.Tfooter {
    font-family: 'Oswald', 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.Tfooter::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.link-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-footer li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.link-footer li a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.link-footer li a:hover {
    color: var(--gold);
    gap: 12px;
}

.link-footer li i {
    color: var(--gold);
    opacity: 0.7;
    font-size: 12px;
    flex-shrink: 0;
}

.under_footer {
    padding: 18px 0;
    background: rgba(0,0,0,0.3);
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.under_footer .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.under_footer .col-md-8,
.under_footer .col {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.under_footer a {
    color: var(--gold);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.under_footer a:hover { opacity: 1; }

/* ============================================================
   15. PAGE LOADER
   ============================================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background: var(--dark-pitch);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 90px;
    animation: logoeffect2 1.2s ease-in-out infinite;
}

.loader-ball {
    font-size: 36px;
    animation: bounceBall 0.7s ease-in-out infinite alternate;
    line-height: 1;
}

.loader-bar-wrap {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 3px;
    animation: loaderProgress 1.8s ease-out forwards;
}

@keyframes logoeffect2 {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.05); opacity: 0.85; }
}

@keyframes bounceBall {
    from { transform: translateY(0); }
    to   { transform: translateY(-16px); }
}

@keyframes loaderProgress {
    from { width: 0; }
    to   { width: 100%; }
}

/* ============================================================
   16. SCROLL-TO-TOP
   ============================================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-pitch);
    font-size: 18px;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(245,197,24,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 28px rgba(245,197,24,0.55);
}

/* ============================================================
   17. ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   18. SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark-pitch); }
::-webkit-scrollbar-thumb { background: var(--pitch-green-mid); border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ============================================================
   19. RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 991.98px) {
    .how-steps-wrapper::before { display: none; }

    .contact-info-col,
    .about-info { padding-inline-end: 0; margin-bottom: 40px; }

    .stat-badge { display: none; }

    .the-logo { max-height: 55px; }

    /* hide spherical hero image on tablet — overlaps / misaligns in stacked layout */
    .hero-image-col { display: none !important; }

    /* full-viewport slider like desktop + room for fixed bottom nav */
    .hero-slider-wrapper.owl-index,
    .owl-index .owl-stage-outer,
    .owl-index .owl-stage,
    .owl-index .owl-item,
    .owl-index .owl-item > .item,
    .hero-slide {
        min-height: 100vh;
        min-height: 100dvh;
        height: 100%;
    }

    .hero-slide {
        padding-bottom: 72px;
        align-items: center;
    }

    .hero-content-wrapper {
        padding-top: 88px;
        padding-bottom: 24px;
    }

    .hero-text-col { text-align: center; }

    .hero-title {
        font-size: 40px;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .hero-desc {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 22px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        margin-bottom: 22px;
        justify-content: center;
    }

    .hero-badge,
    .app-badges { justify-content: center; }

    .owl-index .owl-dots {
        bottom: 78px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .sec-padd { padding-top: 60px; padding-bottom: 60px; }

    .hero-title { font-size: 36px; }

    .hero-image-col { display: none; }

    .hero-content-wrapper { padding-top: 120px; text-align: center; }

    .hero-cta, .app-badges { justify-content: center; }

    .hero-desc { margin: 0 auto 30px; }

    .hero-badge { justify-content: center; }

    .section-title { font-size: 28px; }

    .stat-number { font-size: 32px; }

    .stat-item:not(:last-child)::after { display: none; }

    .stats-bar .row > div { border-bottom: 1px solid rgba(255,255,255,0.06); }

    .stats-bar .row > div:last-child { border-bottom: none; }

    .how-step { width: 110px; }

    .how-step-img { width: 90px; height: 90px; }

    .about-images { min-height: 400px; margin-top: 30px; }

    .about-img-main { width: 200px; height: 350px; }

    .about-img-secondary { width: 160px; height: 280px; }

    .contact-form-card { padding: 28px 20px; }

    .scroll-top-btn { left: 20px; bottom: 20px; }

    .under_footer .row { flex-direction: column; gap: 8px; }

    .service-card { margin: 8px 0; }
}

/* XS */
@media (max-width: 575.98px) {
    .hero-title { font-size: 30px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn-gold, .btn-outline-white { width: 100%; max-width: 280px; justify-content: center; }
}

/* ============================================================
   20. MOBILE FOOTER NAV — App-style bottom tab bar
   ============================================================ */

.mobile-footer-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(6, 21, 14, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(245, 197, 24, 0.25);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.45);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-footer-nav ul {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    margin: 0;
    padding: 0;
    height: 62px;
}

.mobile-footer-nav ul li {
    flex: 1;
    display: flex;
}

.mobile-footer-nav .footer-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    padding: 8px 2px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.25s ease;
    position: relative;
}

.mobile-footer-nav .footer-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--gold);
    border-radius: 0 0 3px 3px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.mobile-footer-nav .footer-nav-item i {
    font-size: 19px;
    line-height: 1;
    transition: transform 0.25s ease, color 0.25s ease;
}

.mobile-footer-nav .footer-nav-item span {
    font-size: 9.5px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 58px;
}

.mobile-footer-nav .footer-nav-item:hover,
.mobile-footer-nav .footer-nav-item.active {
    color: var(--gold);
}

.mobile-footer-nav .footer-nav-item.active::before {
    transform: scaleX(1);
}

.mobile-footer-nav .footer-nav-item.active i {
    transform: translateY(-2px);
}

/* Mobile + tablet — bottom footer nav replaces top nav & hamburger */
@media (max-width: 991.98px) {
    .mobile-footer-nav { display: block; }

    .nav_bar { display: none !important; }

    /* push page content above the bottom bar */
    body { padding-bottom: 70px; background-color: var(--dark-pitch); }

    /* lift scroll-to-top button above the footer nav */
    .scroll-top-btn { bottom: 80px; left: 20px; }
}
