/* =========================================================
   TIFLY ACADEMY - style.css الكامل
   الإصدار: 5.0
========================================================= */

/* =========================================================
   01 — VARIABLES
========================================================= */

:root {
    --blue: #4f8df7;
    --blue-dark: #2868d8;
    --blue-light: #eaf3ff;
    --orange: #ff9f43;
    --orange-light: #fff0df;
    --yellow: #ffd84d;
    --yellow-light: #fff8d9;
    --green: #54c98a;
    --green-light: #e4f8ee;
    --purple: #9b7cf6;
    --purple-light: #f0ebff;
    --pink: #f58bb3;
    --pink-light: #ffeaf2;
    --text: #253858;
    --text-soft: #61708a;
    --white: #ffffff;
    --radius: 28px;
    --shadow: 0 18px 45px rgba(45, 75, 120, .10);
    --shadow-hover: 0 25px 65px rgba(45, 75, 120, .18);
    --transition: .35s cubic-bezier(.2,.8,.2,1);
}


/* =========================================================
   02 — RESET
========================================================= */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    padding: 0;
    direction: rtl;
    font-family: "Tajawal", "Arial", sans-serif;
    color: var(--text);
    line-height: 1.8;
    background:
        radial-gradient(circle at 5% 5%, rgba(255,216,77,.22), transparent 20%),
        radial-gradient(circle at 95% 15%, rgba(155,124,246,.17), transparent 22%),
        radial-gradient(circle at 10% 90%, rgba(84,201,138,.14), transparent 22%),
        #f8fbff;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    width: 350px;
    height: 350px;
    right: -180px;
    bottom: 10%;
    border-radius: 50%;
    background: rgba(245,139,179,.10);
    filter: blur(50px);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: "";
    position: fixed;
    width: 300px;
    height: 300px;
    left: -160px;
    top: 30%;
    border-radius: 50%;
    background: rgba(79,141,247,.09);
    filter: blur(50px);
    pointer-events: none;
    z-index: -1;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

button, input, textarea, select { font-family: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }


/* =========================================================
   03 — CONTAINER
========================================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/* =========================================================
   04 — HEADER
========================================================= */

.tifly-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.tifly-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}
.tifly-header.hidden {
    transform: translateY(-100%);
}

.tifly-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* LOGO */
.tifly-logo { flex-shrink: 0; }
.tifly-logo-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #17191e;
    font-weight: 800;
    font-size: 22px;
    transition: transform .3s ease;
}
.tifly-logo-text:hover { transform: scale(1.05); }
.tifly-logo-icon {
    font-size: 28px;
    display: inline-block;
    animation: tiflyLogoFloat 3s ease-in-out infinite;
}
@keyframes tiflyLogoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-5px) rotate(-8deg); }
}
.tifly-logo-name em {
    color: #ff6b6b;
    font-style: normal;
    position: relative;
}
.tifly-logo-name em::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 100%;
    height: 3px;
    background: #ff6b6b;
    border-radius: 3px;
    opacity: .3;
}

/* شعار مخصص */
.tifly-logo-custom {
    height: 55px !important;
    max-height: 55px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
    display: block !important;
}
.tifly-logo-link {
    display: inline-block !important;
    height: 55px !important;
    line-height: 0 !important;
}

/* DESKTOP NAV */
.tifly-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.tifly-nav-list {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.tifly-nav-list li { position: relative; }
.tifly-nav-list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 15px;
    border-radius: 12px;
    color: #17191e;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all .3s ease;
    position: relative;
}
.tifly-nav-list > li > a::before {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 50%;
    left: 50%;
    height: 2px;
    background: #ff6b6b;
    border-radius: 2px;
    transition: right .3s ease, left .3s ease;
}
.tifly-nav-list > li > a:hover {
    background: rgba(255, 107, 107, 0.08);
    color: #ff6b6b;
    transform: translateY(-2px);
}
.tifly-nav-list > li > a:hover::before {
    right: 15px;
    left: 15px;
}
.tifly-nav-list > li.current-menu-item > a {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.08);
}
.tifly-nav-icon {
    font-size: 16px;
    display: inline-block;
    transition: transform .3s ease;
}
.tifly-nav-list > li > a:hover .tifly-nav-icon {
    transform: scale(1.25) rotate(-10deg);
}
.tifly-arrow {
    font-size: 10px;
    opacity: .6;
    transition: transform .3s ease;
}
.tifly-nav-list > li:hover > a .tifly-arrow {
    transform: rotate(180deg);
}

/* SUB MENU */
.tifly-nav-list .sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
    padding: 10px;
    list-style: none;
    margin: 10px 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s cubic-bezier(.22,.61,.36,1);
    z-index: 10;
}
.tifly-nav-list li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.tifly-nav-list .sub-menu li a {
    display: block;
    padding: 12px 15px;
    border-radius: 10px;
    color: #17191e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all .25s ease;
}
.tifly-nav-list .sub-menu li a:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    transform: translateX(-5px);
}

/* HEADER ACTIONS */
.tifly-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tifly-header-login {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f6f8;
    text-decoration: none;
    font-size: 18px;
    transition: all .3s ease;
}
.tifly-header-login:hover {
    background: #ff6b6b;
    transform: rotate(-10deg) scale(1.1);
}
.tifly-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.35);
    transition: all .3s cubic-bezier(.22,.61,.36,1);
}
.tifly-header-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    transition: left .6s ease;
}
.tifly-header-cta:hover::before { left: 100%; }
.tifly-header-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.5);
}
.tifly-cta-arrow {
    display: inline-block;
    transition: transform .3s ease;
}
.tifly-header-cta:hover .tifly-cta-arrow {
    transform: translateX(-5px);
}

/* MOBILE TOGGLE */
.tifly-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
}
.tifly-mobile-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #17191e;
    border-radius: 3px;
    transition: transform .3s ease, opacity .3s ease, width .3s ease;
}
.tifly-mobile-toggle span:nth-child(2) {
    width: 70%;
    margin-right: auto;
}
.tifly-mobile-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}
.tifly-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.tifly-mobile-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* MOBILE MENU */
.tifly-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 99998;
}
.tifly-mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}
.tifly-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 88%;
    max-width: 380px;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    transition: right .45s cubic-bezier(.22,.61,.36,1);
    box-shadow: -20px 0 60px rgba(0,0,0,.15);
    overflow: hidden;
}
.tifly-mobile-menu.open { right: 0; }
.tifly-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 25px;
    border-bottom: 1px solid #f0f0f0;
}
.tifly-mobile-logo {
    font-weight: 800;
    font-size: 18px;
    color: #17191e;
}
.tifly-mobile-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 0;
    background: #f5f6f8;
    font-size: 16px;
    cursor: pointer;
    transition: all .3s ease;
}
.tifly-mobile-close:hover {
    background: #ff6b6b;
    color: #fff;
    transform: rotate(90deg);
}
.tifly-mobile-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.tifly-mobile-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}
.tifly-mobile-list li { border-bottom: 1px solid #f5f5f5; }
.tifly-mobile-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 12px;
    color: #17191e;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    transition: all .3s ease;
}
.tifly-mobile-list a:hover {
    background: rgba(255, 107, 107, 0.08);
    color: #ff6b6b;
    padding-right: 20px;
}
.tifly-m-icon {
    font-size: 20px;
    width: 28px;
    text-align: center;
    transition: transform .3s ease;
}
.tifly-mobile-list a:hover .tifly-m-icon {
    transform: scale(1.2) rotate(-10deg);
}
.tifly-m-arrow {
    margin-right: auto;
    font-size: 14px;
    opacity: .4;
    transition: all .3s ease;
}
.tifly-mobile-list a:hover .tifly-m-arrow {
    opacity: 1;
    transform: translateX(-5px);
    color: #ff6b6b;
}
.tifly-m-sub {
    list-style: none;
    padding: 0 0 0 20px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.22,.61,.36,1);
}
.tifly-m-sub.open { max-height: 300px; }
.tifly-m-sub a {
    padding: 10px 12px !important;
    font-size: 14px !important;
    color: #666 !important;
}
.tifly-mobile-cta-wrap { padding-top: 10px; }
.tifly-mobile-cta {
    display: block;
    text-align: center;
    padding: 16px 22px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.35);
    margin-bottom: 20px;
    transition: all .3s ease;
}
.tifly-mobile-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}
.tifly-mobile-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.tifly-mobile-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f6f8;
    text-decoration: none;
    font-size: 18px;
    transition: all .3s ease;
}
.tifly-mobile-social a:hover {
    background: #ff6b6b;
    transform: translateY(-4px) rotate(8deg);
}

/* LOADER */
.tifly-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}
.tifly-loader.hide {
    opacity: 0;
    visibility: hidden;
}
.tifly-loader-inner { text-align: center; }
.tifly-loader-icon {
    font-size: 55px;
    animation: tiflyLoaderBounce 1s ease-in-out infinite;
    margin-bottom: 20px;
}
@keyframes tiflyLoaderBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-15px) scale(1.1); }
}
.tifly-loader-bar {
    width: 140px;
    height: 4px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}
.tifly-loader-bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    border-radius: 4px;
    animation: tiflyLoaderSlide 1.2s ease-in-out infinite;
}
@keyframes tiflyLoaderSlide {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}


/* =========================================================
   05 — HERO
========================================================= */

.hero {
    position: relative;
    padding: 100px 0 110px;
    isolation: isolate;
    background:
        radial-gradient(circle at 8% 20%, rgba(255,216,77,.40), transparent 23%),
        radial-gradient(circle at 90% 15%, rgba(245,139,179,.30), transparent 23%),
        radial-gradient(circle at 70% 90%, rgba(84,201,138,.22), transparent 25%),
        linear-gradient(135deg, #e7f5ff, #eeeaff 48%, #fff3e3);
}

.hero::before,
.hero::after {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}
.hero::before {
    content: "★";
    top: 75px;
    right: 7%;
    color: var(--yellow);
    font-size: 45px;
    filter: drop-shadow(0 7px 12px rgba(242,189,22,.22));
    animation: floatAround 4s ease-in-out infinite;
}
.hero::after {
    content: "✦";
    left: 8%;
    bottom: 75px;
    color: var(--pink);
    font-size: 55px;
    animation: floatAround 5s ease-in-out infinite reverse;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 65px;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 9px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,.82);
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(45,75,120,.08);
    animation: badgePulse 3s ease-in-out infinite;
}

.hero h1 {
    margin: 0 0 18px;
    color: #25436f;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.18;
    font-weight: 950;
    letter-spacing: -1px;
}
.hero h1 span {
    position: relative;
    color: var(--orange);
}
.hero h1 span::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: -7px;
    height: 7px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--yellow), var(--pink));
    opacity: .65;
    transform: rotate(-2deg);
}

.hero p {
    max-width: 620px;
    margin: 0 0 28px;
    color: var(--text-soft);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.hero-actions a {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 18px;
    font-weight: 900;
    transition: transform var(--transition), box-shadow var(--transition);
}
.hero-actions a:first-child {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 14px 32px rgba(79,141,247,.26);
}
.hero-actions a:first-child:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 42px rgba(79,141,247,.34);
}
.hero-actions a:last-child {
    color: var(--blue-dark);
    background: rgba(255,255,255,.84);
    border: 2px solid rgba(79,141,247,.13);
    box-shadow: 0 8px 20px rgba(45,75,120,.05);
}
.hero-actions a:last-child:hover {
    transform: translateY(-5px);
    background: #fff;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border-radius: 15px;
    color: var(--text-soft);
    background: rgba(255,255,255,.70);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(45,75,120,.05);
    backdrop-filter: blur(6px);
    transition: transform var(--transition), background var(--transition);
}
.hero-feature:hover {
    transform: translateY(-4px);
    background: #fff;
}

.hero-visual { position: relative; }
.hero-circle {
    position: absolute;
    width: 420px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: conic-gradient(
        from 30deg,
        var(--yellow),
        var(--pink),
        var(--purple),
        var(--blue),
        var(--green),
        var(--yellow)
    );
    opacity: .32;
    filter: blur(2px);
    animation: rotateSlow 15s linear infinite;
}
.hero-image-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 8px solid rgba(255,255,255,.82);
    border-radius: 42px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(45,75,120,.18);
    transform: rotate(2deg);
    transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
}
.hero-image-card:hover {
    transform: rotate(0) translateY(-9px) scale(1.015);
    box-shadow: 0 35px 85px rgba(45,75,120,.23);
}
.hero-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,.30), transparent 70%);
    transform: translateX(-120%);
    transition: transform .8s ease;
    pointer-events: none;
}
.hero-image-card:hover::after {
    transform: translateX(120%);
}
.hero-image-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.hero-image-badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 12px 17px;
    border-radius: 17px;
    color: var(--blue-dark);
    background: rgba(255,255,255,.94);
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(45,75,120,.16);
    animation: badgeFloat 3.5s ease-in-out infinite;
}


/* =========================================================
   06 — QUICK FEATURES
========================================================= */

.quick-features {
    position: relative;
    padding: 65px 0;
    background: linear-gradient(135deg, #fff8d9, #e8f8ff, #f7ebff);
}
.quick-features::before {
    content: "✦ ✦ ✦";
    position: absolute;
    top: 18px;
    left: 6%;
    color: rgba(155,124,246,.30);
    letter-spacing: 18px;
    font-size: 18px;
}
.quick-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.quick-feature {
    position: relative;
    padding: 28px 20px;
    overflow: hidden;
    border-radius: 27px;
    background: rgba(255,255,255,.84);
    border: 2px solid rgba(255,255,255,.92);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.quick-feature:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow-hover);
}
.quick-feature:nth-child(1) { border-top: 5px solid var(--blue); }
.quick-feature:nth-child(2) { border-top: 5px solid var(--orange); }
.quick-feature:nth-child(3) { border-top: 5px solid var(--green); }
.quick-feature:nth-child(4) { border-top: 5px solid var(--purple); }

.quick-feature-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 21px;
    font-size: 30px;
    transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.quick-feature:hover .quick-feature-icon {
    transform: translateY(-5px) rotate(-7deg) scale(1.08);
}
.quick-feature:nth-child(1) .quick-feature-icon { background: var(--blue-light); }
.quick-feature:nth-child(2) .quick-feature-icon { background: var(--orange-light); }
.quick-feature:nth-child(3) .quick-feature-icon { background: var(--green-light); }
.quick-feature:nth-child(4) .quick-feature-icon { background: var(--purple-light); }

.quick-feature h3 { margin: 0 0 6px; font-size: 17px; }
.quick-feature p {
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
}


/* =========================================================
   07 — SECTIONS
========================================================= */

section { position: relative; }

.section-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}
.section-heading span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
}
.section-heading span::before,
.section-heading span::after {
    content: "✦";
    color: var(--orange);
    font-size: 12px;
}
.section-heading h2 {
    margin: 0 0 12px;
    color: #29466f;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.25;
    font-weight: 950;
}
.section-heading p {
    margin: 0;
    color: var(--text-soft);
    font-size: 16px;
}


/* =========================================================
   08 — ABOUT
========================================================= */

.about-section {
    padding: 105px 0;
    background:
        radial-gradient(circle at 90% 15%, rgba(255,216,77,.28), transparent 22%),
        linear-gradient(135deg, #fff9df, #fff2e5);
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.about-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.82);
    border: 2px solid rgba(255,255,255,.95);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.about-card:hover {
    transform: translateY(-9px) rotate(-.5deg);
    box-shadow: var(--shadow-hover);
}
.about-card:nth-child(1) { border-bottom: 5px solid var(--blue); }
.about-card:nth-child(2) { border-bottom: 5px solid var(--orange); }
.about-card:nth-child(3) { border-bottom: 5px solid var(--green); }

.about-card-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 20px;
    background: var(--blue-light);
    font-size: 28px;
    transition: transform .4s ease;
}
.about-card:hover .about-card-icon {
    transform: rotate(-8deg) scale(1.1);
}
.about-card:nth-child(2) .about-card-icon { background: var(--orange-light); }
.about-card:nth-child(3) .about-card-icon { background: var(--green-light); }

.about-card h3 { margin: 0 0 9px; font-size: 20px; }
.about-card p { margin: 0; color: var(--text-soft); font-size: 14px; }


/* =========================================================
   09 — KIDS (Box)
========================================================= */

.kids-section {
    padding: 105px 0;
    background: linear-gradient(135deg, #dff4ff, #eaf0ff);
}
.kids-container {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: 70px;
}
.kids-image {
    position: relative;
    overflow: hidden;
    border: 8px solid rgba(255,255,255,.80);
    border-radius: 40px;
    box-shadow: 0 30px 65px rgba(45,75,120,.15);
    transform: rotate(-2deg);
    transition: transform .5s ease;
}
.kids-image:hover {
    transform: rotate(0) translateY(-8px);
}
.kids-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform .6s ease;
}
.kids-image:hover img { transform: scale(1.05); }

.kids-content h2 {
    margin: 0 0 16px;
    color: #29466f;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.25;
    font-weight: 950;
}
.kids-content > p {
    color: var(--text-soft);
    font-size: 16px;
}
.kids-points {
    display: grid;
    gap: 12px;
    margin-top: 25px;
}
.kids-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border-radius: 17px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(255,255,255,.90);
    box-shadow: 0 8px 22px rgba(45,75,120,.06);
    transition: transform var(--transition), box-shadow var(--transition);
}
.kids-point:hover {
    transform: translateX(-7px);
    box-shadow: 0 14px 30px rgba(45,75,120,.11);
}
.kids-point span:first-child {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--yellow-light);
    font-size: 20px;
}


/* =========================================================
   10 — STEPS
========================================================= */

.steps-section {
    padding: 105px 0;
    background:
        radial-gradient(circle at 10% 80%, rgba(255,159,67,.25), transparent 25%),
        linear-gradient(135deg, #fff0df, #ffeaf2);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.step-card {
    position: relative;
    padding: 30px 22px;
    border-radius: 28px;
    background: rgba(255,255,255,.84);
    border: 2px solid rgba(255,255,255,.92);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: var(--shadow-hover);
}
.step-number {
    position: absolute;
    top: 14px;
    right: 15px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--orange);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 7px 15px rgba(255,159,67,.22);
}
.step-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: 5px auto 15px;
    border-radius: 22px;
    background: var(--yellow-light);
    font-size: 30px;
    transition: transform .4s ease;
}
.step-card:hover .step-icon {
    transform: rotate(10deg) scale(1.1);
}
.step-card:nth-child(2) .step-icon { background: var(--blue-light); }
.step-card:nth-child(3) .step-icon { background: var(--green-light); }
.step-card:nth-child(4) .step-icon { background: var(--purple-light); }

.step-card h3 { margin: 0 0 7px; font-size: 18px; }
.step-card p { margin: 0; color: var(--text-soft); font-size: 13px; }


/* =========================================================
   11 — PROGRAMS
========================================================= */

.programs-section {
    padding: 105px 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(155,124,246,.28), transparent 23%),
        linear-gradient(135deg, #eee9ff, #e4f3ff);
}
.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.program-card {
    position: relative;
    overflow: hidden;
    padding: 29px 23px;
    border-radius: 28px;
    background: rgba(255,255,255,.84);
    border: 2px solid rgba(255,255,255,.95);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.program-card-number {
    position: absolute;
    top: 17px;
    left: 18px;
    color: rgba(79,141,247,.25);
    font-size: 13px;
    font-weight: 900;
}
.program-card-icon {
    width: 67px;
    height: 67px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 21px;
    background: var(--blue-light);
    font-size: 29px;
    transition: transform .4s ease;
}
.program-card:hover .program-card-icon {
    transform: rotate(-8deg) scale(1.1);
}
.program-card:nth-child(2) .program-card-icon { background: var(--orange-light); }
.program-card:nth-child(3) .program-card-icon { background: var(--green-light); }
.program-card:nth-child(4) .program-card-icon { background: var(--purple-light); }

.program-card h3 { margin: 0 0 8px; font-size: 19px; }
.program-card p { margin: 0; color: var(--text-soft); font-size: 13px; }


/* =========================================================
   12 — ACTIVITIES
========================================================= */

.activities-section {
    padding: 105px 0;
    background: linear-gradient(135deg, #e7f8ff, #fff6dc);
}
.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.activity-card {
    position: relative;
    padding: 30px 22px;
    border-radius: 28px;
    background: rgba(255,255,255,.85);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.activity-card:hover {
    transform: translateY(-10px) rotate(.7deg);
    box-shadow: var(--shadow-hover);
}
.activity-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 17px;
    border-radius: 23px;
    font-size: 31px;
    transition: transform .4s ease;
}
.activity-card:hover .activity-icon {
    transform: scale(1.12) rotate(-8deg);
}
.activity-blue { background: var(--blue-light); }
.activity-orange { background: var(--orange-light); }
.activity-yellow { background: var(--yellow-light); }
.activity-green { background: var(--green-light); }

.activity-card h3 { margin: 0 0 8px; font-size: 18px; }
.activity-card p { margin: 0; color: var(--text-soft); font-size: 13px; }


/* =========================================================
   13 — PARENTS
========================================================= */

.parents-section {
    padding: 105px 0;
    background:
        radial-gradient(circle at 5% 20%, rgba(84,201,138,.22), transparent 24%),
        linear-gradient(135deg, #e4f8ee, #e5f5ff);
}
.parents-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}
.parents-content h2 {
    margin: 0 0 15px;
    color: #29466f;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 950;
}
.parents-content > p { color: var(--text-soft); }

.parents-list {
    display: grid;
    gap: 12px;
    margin-top: 25px;
    padding: 0;
}
.parents-list > div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 17px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 8px 20px rgba(45,75,120,.06);
    transition: transform var(--transition);
}
.parents-list > div:hover { transform: translateX(-7px); }
.parents-list > div > span:first-child {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.parents-visual { position: relative; }
.parents-card {
    position: relative;
    padding: 15px;
    border-radius: 37px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 30px 65px rgba(45,75,120,.14);
    transform: rotate(2deg);
    transition: transform .5s ease;
}
.parents-card:hover {
    transform: rotate(0) translateY(-8px);
}
.parents-card img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 29px;
    display: block;
}


/* =========================================================
   14 — ACHIEVEMENTS
========================================================= */

.achievements-section {
    padding: 105px 0;
    background: linear-gradient(135deg, #e7f2ff, #f1eaff);
}
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.achievement-card {
    position: relative;
    padding: 32px;
    border-radius: 29px;
    background: rgba(255,255,255,.84);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.achievement-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}
.achievement-card > span:first-child {
    display: inline-block;
    font-size: 40px;
    margin-bottom: 12px;
}
.achievement-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 19px;
    color: var(--text);
}
.achievement-card small {
    display: block;
    color: var(--text-soft);
    font-size: 13px;
}


/* =========================================================
   15 — TESTIMONIALS
========================================================= */

.testimonials-section {
    padding: 105px 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(245,139,179,.25), transparent 24%),
        linear-gradient(135deg, #fff4db, #ffeaf3);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testimonial-card {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255,255,255,.85);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow-hover);
}
.testimonial-stars {
    margin-bottom: 12px;
    color: #f4b400;
    font-size: 20px;
    letter-spacing: 2px;
}
.testimonial-card p {
    margin: 0 0 18px;
    color: var(--text-soft);
    font-size: 14px;
}
.testimonial-card strong {
    color: var(--blue-dark);
    font-size: 14px;
}


/* =========================================================
   16 — FAQ
========================================================= */

.faq-section {
    padding: 105px 0;
    background: linear-gradient(135deg, #eeeaff, #e5f5ff);
}
.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.faq-item {
    position: relative;
    padding: 20px 23px;
    border-radius: 20px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.95);
    box-shadow: 0 8px 25px rgba(45,75,120,.07);
    transition: transform var(--transition), box-shadow var(--transition);
}
.faq-item:hover {
    transform: translateX(-6px);
    box-shadow: 0 15px 35px rgba(45,75,120,.11);
}
.faq-item summary {
    cursor: pointer;
    font-weight: 900;
    font-size: 17px;
    color: #29466f;
    list-style: none;
    position: relative;
    padding-left: 30px;
}
.faq-item summary::after {
    content: '+';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 900;
    color: var(--blue);
    transition: transform .3s ease;
}
.faq-item[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
    margin: 15px 0 0;
    color: var(--text-soft);
    line-height: 1.9;
    font-size: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f3f8;
}


/* =========================================================
   17 — REGISTER CTA
========================================================= */

.register-section {
    padding: 90px 0 110px;
    background:
        radial-gradient(circle at 10% 30%, rgba(255,216,77,.30), transparent 23%),
        radial-gradient(circle at 90% 70%, rgba(245,139,179,.25), transparent 23%),
        linear-gradient(135deg, #dff0ff, #e9e2ff);
}
.register-box {
    position: relative;
    overflow: hidden;
    padding: 60px 45px;
    border-radius: 40px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 30px 70px rgba(79,141,247,.26);
}
.register-box::before {
    content: "⭐";
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 50px;
    opacity: .35;
    animation: floatAround 4s ease-in-out infinite;
}
.register-box::after {
    content: "🎨";
    position: absolute;
    bottom: 20px;
    left: 35px;
    font-size: 45px;
    opacity: .30;
    animation: floatAround 5s ease-in-out infinite reverse;
}
.register-box-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.register-box h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.25;
    font-weight: 950;
}
.register-box p {
    margin: 0 0 25px;
    color: rgba(255,255,255,.88);
}
.register-small-title {
    display: inline-block;
    margin-bottom: 15px;
    padding: 8px 18px;
    background: rgba(255,255,255,.15);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
}
.register-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 27px;
    border-radius: 18px;
    color: var(--blue-dark);
    background: #fff;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(0,0,0,.13);
    transition: transform var(--transition), box-shadow var(--transition);
}
.register-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 38px rgba(0,0,0,.18);
}
.register-button span {
    display: inline-block;
    transition: transform .3s ease;
}
.register-button:hover span {
    transform: translateX(-6px);
}


/* =========================================================
   18 — FOOTER
========================================================= */

.tifly-footer {
    position: relative;
    background: linear-gradient(135deg, #17191e 0%, #1f2229 100%);
    color: #cfd3da;
    padding: 80px 0 0;
    margin-top: 60px;
    overflow: hidden;
    direction: rtl;
}
.tifly-footer > .container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}
.tifly-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.tifly-footer-col h3,
.tifly-footer-col h4 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 22px;
}
.tifly-footer-col h3 {
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tifly-footer-col p {
    color: #9ba1ac;
    line-height: 1.9;
    margin: 0 0 15px;
    font-size: 15px;
}
.tifly-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tifly-footer-col ul li { margin-bottom: 12px; }
.tifly-footer-col ul li a {
    color: #9ba1ac;
    text-decoration: none;
    font-size: 14px;
    transition: all .3s ease;
    display: inline-block;
}
.tifly-footer-col ul li a:hover {
    color: #ff6b6b;
    transform: translateX(-4px);
}
.tifly-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}
.tifly-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.06);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: all .35s cubic-bezier(.22,.61,.36,1);
}
.tifly-social a:hover {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    transform: translateY(-5px) rotate(-6deg);
    box-shadow: 0 12px 30px rgba(255,107,107,.4);
}
.tifly-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    flex-wrap: wrap;
    gap: 15px;
}
.tifly-footer-bottom p {
    margin: 0;
    color: #7a808c;
    font-size: 14px;
}
.tifly-footer-bottom strong { color: #ff6b6b; }


/* =========================================================
   19 — INTERACTIONS
========================================================= */

/* SCROLL REVEAL */
.tifly-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .8s cubic-bezier(.22,.61,.36,1),
                transform .8s cubic-bezier(.22,.61,.36,1);
    will-change: opacity, transform;
}
.tifly-reveal.tifly-visible {
    opacity: 1;
    transform: translateY(0);
}

/* FLOAT */
@keyframes tiflyFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-10px) rotate(4deg); }
}
.tifly-float {
    animation: tiflyFloat 3.5s ease-in-out infinite;
}

/* SCROLL PROGRESS */
.tifly-scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #1dd1a1);
    z-index: 999999;
    transition: width .1s linear;
    box-shadow: 0 0 10px rgba(255,107,107,.5);
}

/* BACK TO TOP */
.tifly-back-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .35s cubic-bezier(.22,.61,.36,1);
    z-index: 9998;
    box-shadow: 0 10px 30px rgba(255,107,107,.35);
}
.tifly-back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.tifly-back-top:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 15px 40px rgba(255,107,107,.5);
}


/* =========================================================
   20 — KEYFRAMES
========================================================= */

@keyframes floatAround {
    0%   { transform: translateY(0) rotate(0deg); }
    50%  { transform: translateY(-13px) rotate(8deg); }
    100% { transform: translateY(0) rotate(0deg); }
}
@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.035); }
}
@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
}
@keyframes rotateSlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}


/* =========================================================
   21 — RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
    .tifly-nav { display: none; }
    .tifly-mobile-toggle { display: flex; }
    .tifly-header-login { display: none; }

    .hero-container,
    .kids-container,
    .parents-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content { text-align: center; }
    .hero p { margin-inline: auto; }
    .hero-actions, .hero-features { justify-content: center; }
    .hero-visual {
        width: 100%;
        max-width: 720px;
        margin-inline: auto;
    }
    .kids-content, .parents-content { text-align: center; }
    .parents-list { text-align: right; }

    .quick-features-grid,
    .steps-grid,
    .programs-grid,
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid,
    .achievements-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tifly-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 800px) {
    .container,
    .tifly-header-inner {
        width: min(calc(100% - 28px), 1180px);
    }
    .tifly-header-inner { min-height: 74px; }

    .hero { padding: 70px 0 80px; }
    .hero h1 { font-size: 43px; }
    .hero p { font-size: 16px; }
    .hero-image-card img { height: 390px; }
    .hero-circle { width: 290px; height: 290px; }

    .about-section,
    .kids-section,
    .steps-section,
    .programs-section,
    .activities-section,
    .parents-section,
    .achievements-section,
    .testimonials-section,
    .faq-section {
        padding: 80px 0;
    }
    .section-heading { margin-bottom: 38px; }
}

@media (max-width: 600px) {
    .tifly-header-cta span:first-child { display: none; }
    .tifly-header-cta { padding: 12px 16px; }
    .tifly-header-inner {
        width: calc(100% - 24px);
        min-height: 70px;
        gap: 12px;
    }

    .hero { padding: 58px 0 70px; }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 15px; }
    .hero-actions { flex-direction: column; }
    .hero-actions a { width: 100%; }
    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .hero-feature {
        justify-content: center;
        padding-inline: 8px;
        font-size: 11px;
    }
    .hero-image-card {
        border-width: 5px;
        border-radius: 30px;
    }
    .hero-image-card img { height: 305px; }
    .hero-circle { width: 250px; height: 250px; }

    .quick-features-grid,
    .steps-grid,
    .programs-grid,
    .activities-grid,
    .about-grid,
    .achievements-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .kids-image,
    .parents-card {
        border-width: 5px;
        border-radius: 30px;
    }
    .kids-image img,
    .parents-card img {
        height: 310px;
        border-radius: 25px;
    }

    .register-box {
        padding: 45px 22px;
        border-radius: 30px;
    }

    .tifly-footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .tifly-footer-bottom { flex-direction: column; text-align: center; }
    .tifly-footer > .container { padding: 0 20px; }

    /* شعار على الجوال */
    .tifly-logo-custom {
        height: 42px !important;
        max-height: 42px !important;
        max-width: 150px !important;
    }
    .tifly-logo-link {
        height: 42px !important;
    }

    .tifly-back-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        left: 20px;
        font-size: 20px;
    }
}

/* =========================================================
   22 — REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* =========================================================
   END OF FILE
========================================================= */