/* OFFER / أوفر — brand landing layer
   Cyan #00AEEF → Royal indigo #2E3192 on ink #0A0B14 */

:root {
    --awfar-cyan: #00AEEF;
    --awfar-indigo: #2E3192;
    --awfar-blue: #2E4BD0;
    --awfar-ink: #0A0B14;
    --awfar-navy: #0F0F1B;
    --awfar-navy-2: #16162a;
    --awfar-paper: #0F0F1B;
    --awfar-card: #16162a;
    --rky-surface: #0F0F1B;
    --rky-surface-2: #16162a;
    --rky-surface-3: #1c1c32;
    --rky-bg: #0F0F1B;
    --rky-bg-card: #16162a;
    --rky-light-bg: #12121e;
    --rky-white: #ffffff;
    --rky-text: #f3f6ff;
    --rky-muted: #9aa3b8;
    --rky-border: rgba(0, 174, 239, 0.14);
    --rky-radius: 16px;
    --awfar-grad: linear-gradient(135deg, #00AEEF 0%, #2E4BD0 50%, #2E3192 100%);
}

body {
    background: var(--awfar-paper) !important;
    color: var(--rky-text);
}

#rky-scroll-progress {
    height: 3px;
    background: var(--awfar-grad);
}

/* Navbar — like base: no color at top, solid navy after scroll */
html body:has(.hero-slider-wrapper) header#rky-header:not(.rky-scrolled) {
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

html body:has(.hero-slider-wrapper) header#rky-header.rky-scrolled,
html body.no-hero header#rky-header,
html body:not(:has(.hero-slider-wrapper)) header#rky-header {
    background: #0A0B14 !important;
    border-bottom: 1px solid rgba(0, 174, 239, 0.14) !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

header .nav_bar a,
header.rky-scrolled .nav_bar a,
body:has(.hero-slider-wrapper) header .nav_bar a,
body:not(:has(.rky-hero-section)) header .nav_bar a,
body.no-hero header .nav_bar a,
header .rky-lang-dropdown .dropdown-toggle,
header.rky-scrolled .rky-lang-dropdown .dropdown-toggle,
body:has(.hero-slider-wrapper) header .rky-lang-dropdown .dropdown-toggle,
body:not(:has(.rky-hero-section)) header .rky-lang-dropdown .dropdown-toggle,
body.no-hero header .rky-lang-dropdown .dropdown-toggle {
    color: rgba(255, 255, 255, 0.88) !important;
}

header .nav_bar a:hover,
header .nav_bar a.active,
header.rky-scrolled .nav_bar a:hover,
header.rky-scrolled .nav_bar a.active,
body:not(:has(.rky-hero-section)) header .nav_bar a:hover,
body:not(:has(.rky-hero-section)) header .nav_bar a.active,
body.no-hero header .nav_bar a:hover,
body.no-hero header .nav_bar a.active,
header .rky-lang-dropdown .dropdown-toggle:hover,
header.rky-scrolled .rky-lang-dropdown .dropdown-toggle:hover,
body:not(:has(.rky-hero-section)) header .rky-lang-dropdown .dropdown-toggle:hover,
body.no-hero header .rky-lang-dropdown .dropdown-toggle:hover {
    color: #00AEEF !important;
    background: transparent !important;
}

header .nav_bar a::after {
    background: #00AEEF !important;
}

header .rky-lang-dropdown .dropdown-menu {
    background: #16162a !important;
    border-color: rgba(0, 174, 239, 0.16) !important;
}

header .rky-lang-dropdown .dropdown-item {
    color: #f3f6ff !important;
}

/* ========== Hero slider (base layout + Awfar colors) ========== */
.hero-slider-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100dvh;
}

.hero-slider-wrapper[id] {
    scroll-margin-top: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 15, 27, 0.94) 0%,
        rgba(22, 22, 42, 0.78) 50%,
        rgba(10, 11, 20, 0.9) 100%
    );
    z-index: 1;
}

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

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 174, 239, 0.28);
    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-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(0, 174, 239, 0.45);
    border-radius: 50px;
    color: #7ecbff;
    font-size: 13px;
    font-weight: 700;
    background: rgba(0, 174, 239, 0.12);
    margin-bottom: 22px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
    font-family: '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: #00AEEF; }

.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;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    height: 52px;
    background: var(--awfar-grad);
    color: #fff !important;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(46, 49, 146, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.03);
    color: #fff !important;
    box-shadow: 0 12px 32px rgba(0, 174, 239, 0.4);
}

.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;
    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;
}

.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: #00AEEF;
}

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

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

.hero-market {
    position: relative;
    width: 460px;
    max-width: 100%;
    min-height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-market-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 40px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.28) 0%, transparent 70%);
    filter: blur(18px);
    z-index: 0;
}

.hero-shot {
    position: absolute;
    overflow: hidden;
    background: #16162a;
    border: 2px solid rgba(0, 174, 239, 0.22);
}

.hero-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-shot-main {
    width: 300px;
    height: 340px;
    border-radius: 28px;
    z-index: 3;
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-shot-back {
    width: 220px;
    height: 250px;
    border-radius: 22px;
    inset-inline-start: 8px;
    top: 18px;
    transform: rotate(-10deg);
    opacity: 0.55;
    z-index: 1;
}

.hero-shot-side {
    width: 180px;
    height: 200px;
    border-radius: 20px;
    inset-inline-end: 6px;
    bottom: 28px;
    transform: rotate(8deg);
    opacity: 0.7;
    z-index: 2;
}

.hero-store-card,
.hero-cart-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 15, 27, 0.92);
    border: 1px solid rgba(0, 174, 239, 0.28);
    border-radius: 14px;
    padding: 10px 14px;
    color: #fff;
    z-index: 4;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(12px);
}

.hero-store-card small {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.2;
}

.hero-store-card strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
}

.hero-store-ico {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--awfar-grad);
    color: #fff;
    flex-shrink: 0;
}

.hero-store-1 {
    top: 8px;
    inset-inline-end: -6px;
    animation: floatBadge 4s ease-in-out infinite;
}

.hero-store-2 {
    bottom: 86px;
    inset-inline-start: -10px;
    animation: floatBadge 4s ease-in-out 1.2s infinite;
}

.hero-cart-chip {
    bottom: 10px;
    inset-inline-end: 18px;
    font-size: 12px;
    font-weight: 700;
    animation: floatBadge 4.5s ease-in-out 0.6s infinite;
}

.hero-cart-chip i { color: #00AEEF; }

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

@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); }
}

.owl-carousel .animated {
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: both;
}

.owl-index .owl-item {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.owl-index .animated {
    animation-duration: 1.1s;
}

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

.owl-index .owl-stage-outer { overflow: hidden; }

.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;
    padding: 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.4) !important;
    border: 0 !important;
    border-radius: 50px;
    outline: none;
    box-shadow: none;
    transition: width 0.3s ease, background 0.3s ease;
}

.owl-index .owl-dot span,
.owl-index .owl-dot::after,
.owl-index .owl-dot::before {
    display: none !important;
    content: none !important;
}

.owl-index .owl-dot.active {
    width: 28px;
    height: 8px;
    background: #00AEEF !important;
}

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

.rky-btn-primary {
    background: var(--awfar-grad) !important;
    background-size: 180% 180% !important;
    animation: awfarBtnShift 6s ease infinite;
    box-shadow: 0 10px 28px rgba(46, 49, 146, 0.38);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

.rky-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.28) 48%, transparent 72%);
    transform: translateX(-120%);
    animation: awfarSweep 3.2s ease-in-out infinite;
}

@keyframes awfarBtnShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes awfarSweep {
    0%, 55% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

.rky-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 36px rgba(0, 174, 239, 0.32);
}

.awfar-hero .rky-btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.24);
    color: #fff !important;
    border-radius: 14px;
}

.awfar-hero .rky-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #00AEEF;
    color: #fff !important;
}

.awfar-hero .rky-phone-wrap {
    border-radius: 28px;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.08);
    background: #111;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(0, 174, 239, 0.18),
        0 0 40px rgba(46, 49, 146, 0.35);
    animation: awfarFloatY 6s ease-in-out infinite;
}

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

.awfar-hero .rky-float-card {
    background: rgba(15, 15, 30, 0.86);
    border: 1px solid rgba(0, 174, 239, 0.22);
    color: #fff;
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    animation: awfarCardPop 5.5s ease-in-out infinite;
}

.awfar-hero .rky-float-card-2 {
    animation-delay: 1.1s;
}

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

.awfar-hero .rky-fct small { color: rgba(255,255,255,0.62); }
.awfar-hero .rky-fct span { color: #fff; font-weight: 700; }

.awfar-hero .rky-fci {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--awfar-grad);
    color: #fff;
}

.awfar-hero .rky-shape,
.awfar-hero .rky-sparkle { display: none; }

.awfar-accent-text {
    background: var(--awfar-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rky-heading,
.rky-svc-title,
.rky-feature-body h6,
.rky-step-label,
.rky-about-body-text,
.awfar-audience-card h3 {
    color: #f3f6ff !important;
}

.rky-subtext,
.rky-svc-desc,
.rky-feature-body p,
.rky-stat p,
.rky-about-body-text {
    color: #9aa3b8 !important;
}

.rky-section,
.rky-section-alt,
.rky-stats-section,
.awfar-audiences,
.body-content {
    background: #0F0F1B !important;
}

.rky-btn-ghost {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

.rky-btn-ghost:hover {
    border-color: #00AEEF !important;
    color: #fff !important;
}

/* Stats */
.rky-stats-section {
    background: #0F0F1B;
    border-bottom: 1px solid var(--rky-border);
    position: relative;
}

.rky-stat {
    transition: transform 0.35s ease;
}

.rky-stat:hover { transform: translateY(-4px); }

.rky-stat-num,
.rky-stat-suf {
    background: var(--awfar-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rky-stat p { font-weight: 600; }

/* Audiences */
.awfar-audiences { padding-top: 48px; padding-bottom: 12px; }

.awfar-audience-card {
    height: 100%;
    border-radius: 20px;
    padding: 32px 28px;
    background: #16162a;
    border: 1px solid var(--rky-border);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.awfar-audience-card::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    top: -50px;
    left: -30px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.16), transparent 70%);
    pointer-events: none;
}

.awfar-audience-card.merchant::before {
    background: radial-gradient(circle, rgba(46, 49, 146, 0.16), transparent 70%);
}

.awfar-audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(46, 49, 146, 0.12);
}

.awfar-audience-ico {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: var(--awfar-grad);
    color: #fff;
    font-size: 20px;
    box-shadow: 0 10px 22px rgba(46, 75, 208, 0.28);
}

.awfar-audience-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.awfar-audience-card p {
    color: var(--rky-muted);
    line-height: 1.8;
    margin-bottom: 22px;
}

/* Services / features */
.rky-section-alt { background: #12121e !important; }

.rky-service-card {
    background: #16162a !important;
    border-radius: 18px;
    border-color: rgba(0, 174, 239, 0.1);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.rky-service-card:hover {
    border-color: rgba(0, 174, 239, 0.35);
}

.rky-svc-icon {
    background: rgba(0, 174, 239, 0.08) !important;
    box-shadow: none !important;
}

.rky-svc-icon i,
.rky-feature-icon i {
    background: var(--awfar-grad) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.rky-service-card:hover .rky-svc-icon i {
    background: none !important;
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
}

.rky-feature-icon {
    background: rgba(46, 49, 146, 0.08) !important;
}

.rky-step-img {
    border-color: rgba(0, 174, 239, 0.4) !important;
    box-shadow: 0 0 0 5px rgba(0, 174, 239, 0.08) !important;
}

.rky-step:hover .rky-step-img {
    border-color: #00AEEF !important;
    box-shadow: 0 0 0 10px rgba(0, 174, 239, 0.12), 0 12px 30px rgba(46, 49, 146, 0.22) !important;
}

.rky-steps-track::before {
    background: linear-gradient(to left, transparent, rgba(0, 174, 239, 0.4), transparent) !important;
}

/* Download */
.rky-download {
    background:
        radial-gradient(ellipse 50% 60% at 90% 10%, rgba(0, 174, 239, 0.22), transparent 60%),
        linear-gradient(145deg, #0A0B14 0%, #12133a 100%);
    border: 0;
}

.rky-download .rky-heading.light,
.rky-download .rky-label.light { color: #fff; }

.rky-download .rky-subtext.light { color: rgba(255, 255, 255, 0.74); }

.rky-download .rky-label.light {
    background: rgba(0, 174, 239, 0.1);
    border-color: rgba(0, 174, 239, 0.28);
}

.rky-badge-btn {
    background: #16162a !important;
    color: #fff !important;
    border-color: rgba(0, 174, 239, 0.2) !important;
    border-radius: 14px;
}

.rky-badge-btn-info small { color: #9aa3b8 !important; }
.rky-badge-btn-info span { color: #fff !important; }

.rky-badge-btn i { color: var(--awfar-indigo) !important; }

.rky-badge-btn:hover {
    border-color: #00AEEF !important;
    box-shadow: 0 12px 30px rgba(0, 174, 239, 0.18) !important;
}

.rky-dl-phone img {
    animation: awfarFloatY 7s ease-in-out infinite;
}

/* Contact / FAQ */
.rky-contact-card,
.rky-form-wrap,
.rky-field input,
.rky-field textarea,
.rky-faq-tabs .nav-link {
    background: #16162a !important;
    color: #f3f6ff !important;
    border-color: rgba(0, 174, 239, 0.14) !important;
}

.rky-field input::placeholder,
.rky-field textarea::placeholder {
    color: #7d8699 !important;
}

.rky-field input:focus,
.rky-field textarea:focus {
    background: #1c1c32 !important;
    border-color: #00AEEF !important;
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.12) !important;
    color: #fff !important;
}

.rky-form-submit.btn-gold {
    width: 100%;
    height: auto;
    padding: 16px 32px;
}

.rky-contact-body small { color: #9aa3b8 !important; }
.rky-contact-body span,
.rky-contact-body a { color: #f3f6ff !important; }

.rky-contact-ico,
.rky-form-submit {
    background: var(--awfar-grad) !important;
}

.rky-faq-tabs .nav-link.active,
.rky-faq-tab.active {
    background: var(--awfar-grad) !important;
    color: #fff !important;
    border-color: transparent !important;
}

footer { background: #0A0B14 !important; }

.mobile-footer-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(15, 15, 27, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 174, 239, 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;
    list-style: none;
    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: #00AEEF;
    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: #00AEEF;
}

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

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

.rky-accordion .card,
.rky-feature-row {
    background: #16162a !important;
    border-color: rgba(0, 174, 239, 0.1) !important;
}

.rky-accordion .card-header button,
.rky-accordion .card-body {
    color: #f3f6ff !important;
}

.rky-accordion .card-body {
    color: #9aa3b8 !important;
    border-top-color: rgba(255, 255, 255, 0.06) !important;
}

.rky-feature-row:hover {
    background: #1c1c32 !important;
}

.loader {
    background: #0F0F1B !important;
}

body:not(:has(.hero-slider-wrapper)):not(:has(.rky-hero-section)) header,
body.no-hero header {
    background: rgba(15, 15, 27, 0.96) !important;
    border-bottom-color: rgba(0, 174, 239, 0.12) !important;
}

body:not(:has(.hero-slider-wrapper)):not(:has(.rky-hero-section)) header .nav_bar a,
body.no-hero header .nav_bar a,
body:not(:has(.hero-slider-wrapper)):not(:has(.rky-hero-section)) header .rky-lang-dropdown .dropdown-toggle,
body.no-hero header .rky-lang-dropdown .dropdown-toggle {
    color: rgba(255, 255, 255, 0.86) !important;
}

.rky-label {
    background: rgba(0, 174, 239, 0.1) !important;
    color: #7ecbff !important;
    border-color: rgba(0, 174, 239, 0.28) !important;
}

.rky-stat {
    border-left-color: rgba(255, 255, 255, 0.08) !important;
}

@media (max-width: 991.98px) {
    .mobile-footer-nav { display: block; }
    .nav_bar { display: none !important; }
    .close-open-nav { display: none !important; }
    body { padding-bottom: 70px; }

    .stat-badge { display: none; }
    .hero-image-col { display: none !important; }

    .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;
        text-align: center;
    }

    .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: 0 auto 22px;
    }

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

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

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

@media (max-width: 767.98px) {
    .hero-title { font-size: 36px; }
    .hero-content-wrapper { padding-top: 120px; }
    .rky-stat { border-left: 0; margin-bottom: 12px; }
}

@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;
    }
}

/* ========== Unify remaining sections with hero ========== */
.rky-section-hd .hero-badge {
    margin-bottom: 16px;
}

.rky-section-hd.center .hero-badge {
    margin-left: auto;
    margin-right: auto;
}

.rky-stats-section {
    background:
        radial-gradient(ellipse 40% 80% at 50% 0%, rgba(0, 174, 239, 0.12), transparent 70%),
        #0F0F1B !important;
    border-top: 2px solid #00AEEF;
    border-bottom: 1px solid rgba(0, 174, 239, 0.12);
}

.rky-stat-ico {
    display: block;
    color: #00AEEF;
    font-size: 22px;
    margin-bottom: 10px;
}

.rky-stat {
    border-left-color: rgba(255, 255, 255, 0.08) !important;
}

.rky-phones::before {
    background: #00AEEF !important;
    opacity: 0.12 !important;
    filter: blur(40px);
}

.rky-phones img:first-of-type,
.rky-phones img:last-of-type,
.rky-dl-phone img {
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(0, 174, 239, 0.18),
        0 0 40px rgba(46, 49, 146, 0.25) !important;
    border: 4px solid rgba(255, 255, 255, 0.06);
}

.rky-step-num {
    background: var(--awfar-grad) !important;
    border-color: #0F0F1B !important;
}

.rky-faq-tabs .nav-link:hover:not(.active) {
    border-color: #00AEEF !important;
    color: #00AEEF !important;
    background: rgba(0, 174, 239, 0.08) !important;
}

.rky-accordion .card:hover {
    border-color: rgba(0, 174, 239, 0.35) !important;
    box-shadow: 0 8px 28px rgba(0, 174, 239, 0.08) !important;
}

.rky-form-submit {
    width: auto;
    min-width: 200px;
    border: none;
}

footer {
    background:
        radial-gradient(ellipse 40% 50% at 90% 0%, rgba(0, 174, 239, 0.12), transparent 60%),
        #0A0B14 !important;
    color: #f3f6ff !important;
    border-top: 1px solid rgba(0, 174, 239, 0.14) !important;
}

.rky-footer-h { color: #fff !important; }
.rky-footer-h::after { background: var(--awfar-grad) !important; }
.rky-footer-about p,
.rky-footer-links a,
.rky-footer-contact-item a,
.rky-footer-contact-item span,
.rky-footer-bar p,
.rky-footer-bar a {
    color: #9aa3b8 !important;
}

.rky-footer-links a:hover,
.rky-footer-contact-item a:hover,
.rky-footer-bar a:hover {
    color: #00AEEF !important;
}

.rky-footer-links a i { color: #00AEEF !important; }

.rky-social-row a {
    background: #16162a !important;
    border-color: rgba(0, 174, 239, 0.2) !important;
    color: #f3f6ff !important;
}

.rky-social-row a:hover {
    background: var(--awfar-grad) !important;
    border-color: transparent !important;
    color: #fff !important;
}

.rky-footer-contact-item .rky-fci2 {
    background: rgba(0, 174, 239, 0.12) !important;
    color: #00AEEF !important;
}

.rky-footer-bar {
    border-top-color: rgba(255, 255, 255, 0.08) !important;
}

.inner-page {
    padding: 140px 0 80px !important;
    background: #0F0F1B !important;
}

.awfar-inner-card {
    background: #16162a;
    border: 1px solid rgba(0, 174, 239, 0.14);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    color: #f3f6ff;
}

.awfar-inner-card h1,
.awfar-inner-card h3 {
    color: #fff;
    font-weight: 800;
}

.awfar-inner-body {
    color: #9aa3b8;
    line-height: 1.95;
    margin-top: 20px;
}

.awfar-inner-card .btn-success {
    background: var(--awfar-grad);
    border: 0;
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0A0B14; }
::-webkit-scrollbar-thumb { background: #2E4BD0; border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: #00AEEF; }

.awfar-audience-card .btn-gold,
.awfar-audience-card .btn-outline-white {
    height: 48px;
    padding: 0 24px;
}

.rky-download .app-badges {
    margin-top: 32px;
}
