/* =============================================
   DIET WITH MO — Styles
   Theme: Phosphoric Yellow (#CDFF00) + White
   ============================================= */

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

/* ---------- CSS Variables ---------- */
:root {
    --yellow: #CDFF00;
    --yellow-bright: #E2FF4D;
    --yellow-deep: #a8d400;
    --dark: #0f1a00;
    --dark-2: #1e2d00;
    --dark-card: #162000;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray: #888;
    --text-dark: #111;
    --radius: 18px;
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    /* Semantic theme tokens (dark by default) */
    --bg-body: var(--white);
    --bg-section-alt: var(--gray-light);
    --text-body: var(--text-dark);
    --text-muted: #555;
    --card-bg: #fff;
    --card-border: rgba(0, 0, 0, 0.08);
}

/* ======== LIGHT THEME ======== */
[data-theme="light"] {
    --dark: #1e2d00;
    --dark-2: #2e4400;
    --dark-card: #f0f7d4;
    --bg-body: #f8faf0;
    --bg-section-alt: #eef5d6;
    --text-body: #1a2600;
    --text-muted: #4a5c00;
    --card-bg: #ffffff;
    --card-border: rgba(168, 212, 0, 0.2);
}

[data-theme="light"] body {
    background: var(--bg-body);
    color: var(--text-body);
}

[data-theme="light"] #hero {
    background: linear-gradient(135deg, #1e3200 0%, #2e4800 100%);
}

[data-theme="light"] #about {
    background: var(--bg-section-alt);
}

[data-theme="light"] .about-list li,
[data-theme="light"] .about-content p {
    color: #2a3800;
}

[data-theme="light"] .story-card {
    background: var(--card-bg);
    border-color: var(--card-border);
}

[data-theme="light"] .testimonial-card {
    background: rgba(205, 255, 0, 0.06);
    border-color: rgba(168, 212, 0, 0.25);
}

[data-theme="light"] .testimonial-text {
    color: #2a3800;
}

[data-theme="light"] .timeline-content {
    background: rgba(168, 212, 0, 0.08);
    border-color: rgba(168, 212, 0, 0.2);
}

[data-theme="light"] .timeline-title {
    color: #1a2600;
}

[data-theme="light"] .timeline-sub {
    color: #4a5c00;
}

[data-theme="light"] .cert-card {
    background: rgba(168, 212, 0, 0.07);
    border-color: rgba(168, 212, 0, 0.2);
}

[data-theme="light"] .cert-name {
    color: #1a2600;
}

/* Theme icon visibility */
[data-theme="dark"] .theme-icon-light {
    display: none;
}

[data-theme="dark"] .theme-icon-dark {
    display: inline;
}

[data-theme="light"] .theme-icon-dark {
    display: none;
}

[data-theme="light"] .theme-icon-light {
    display: inline-flex;
}

/* Language toggle labels */
.lang-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* Theme icon: inline-flex so SVG aligns */
.theme-icon {
    display: none;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .theme-icon-dark {
    display: inline-flex;
}

[data-theme="light"] .theme-icon-light {
    display: inline-flex;
}

/* Hero badge SVG star */
.hero-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
}

.badge-ico {
    display: block;
    flex-shrink: 0;
    stroke: var(--yellow);
    fill: rgba(205, 255, 0, 0.25);
}

/* Carousel caption result icon */
.carousel-result {
    display: flex;
    align-items: center;
    gap: 7px;
}

.result-ico {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: var(--yellow);
    fill: none;
}

/* ======== RTL SUPPORT ======== */
[dir="rtl"] body {
    font-family: 'Inter', 'Cairo', 'Tajawal', sans-serif;
}

[dir="rtl"] .nav-inner {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-controls {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-inner {
    direction: rtl;
}

[dir="rtl"] .hero-text {
    text-align: right;
}

[dir="rtl"] .hero-btns {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

[dir="rtl"] .hero-stats {
    flex-direction: row-reverse;
}

[dir="rtl"] .about-grid {
    direction: rtl;
}

[dir="rtl"] .about-content {
    text-align: right;
}

[dir="rtl"] .about-list li {
    padding-left: 0;
    padding-right: 28px;
    text-align: right;
}

[dir="rtl"] .about-list li::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .about-tags {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

[dir="rtl"] .cv-header {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .cv-grid {
    direction: rtl;
}

[dir="rtl"] .timeline-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .timeline-content {
    text-align: right;
}

[dir="rtl"] .cert-card {
    text-align: right;
}

[dir="rtl"] .success-header,
[dir="rtl"] .testimonials-header {
    text-align: right;
}

[dir="rtl"] .story-body {
    text-align: right;
}

[dir="rtl"] .testimonial-card {
    text-align: right;
}

[dir="rtl"] .testimonial-author {
    flex-direction: row-reverse;
}

[dir="rtl"] .contact-inner {
    text-align: right;
}

[dir="rtl"] .social-links {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

[dir="rtl"] .footer-logo,
[dir="rtl"] .footer-text {
    text-align: center;
}

[dir="rtl"] .hero-float-badge {
    left: auto;
    right: -18px;
    text-align: right;
}

/* ======== NAV CONTROLS (groups theme + lang + hamburger) ======== */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ======== LANG TOGGLE BUTTON (flag flags) ======== */
.lang-toggle-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(205, 255, 0, 0.08);
    border: 1px solid rgba(205, 255, 0, 0.25);
    border-radius: 50px;
    padding: 5px 12px;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.lang-toggle-btn:hover {
    background: rgba(205, 255, 0, 0.18);
    border-color: var(--yellow);
    transform: translateY(-1px);
}

.lang-flag {
    font-size: 1.35rem;
    line-height: 1;
    transition: opacity 0.25s ease, transform 0.25s ease;
    opacity: 0.45;
    filter: grayscale(40%);
    display: inline-flex;
    align-items: center;
}

.flag-img {
    width: 28px;
    height: auto;
    border-radius: 3px;
    display: block;
    pointer-events: none;
}

.lang-flag.lang-flag--active {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.15);
}

.lang-divider {
    font-size: 0.75rem;
    color: rgba(205, 255, 0, 0.35);
    font-weight: 300;
}

/* Theme toggle hidden (removed from UI) */
.theme-toggle-btn {
    display: none;
}

.theme-icon {
    display: none;
}



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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ---------- Utility ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
}

.section-title span {
    color: var(--yellow-deep);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 10px;
    max-width: 560px;
}

.yellow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(205, 255, 0, 0.4);
}

.yellow-btn:hover {
    background: var(--yellow-bright);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(205, 255, 0, 0.55);
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.outline-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(205, 255, 0, 0.06);
}

/* ---------- Reveal Animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   NAVBAR
   ======================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: transparent;
    transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}

#navbar.scrolled {
    background: rgba(15, 26, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
    padding: 12px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--yellow);
}

.nav-logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
    line-height: 1.1;
}

.nav-logo-text span {
    color: var(--yellow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}

.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--yellow);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta-btn {
    background: var(--yellow);
    color: var(--dark) !important;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s !important;
    position: relative;
    white-space: nowrap;
    display: inline-block;
    line-height: 1.3;
}

.nav-cta-btn::after,
.nav-cta-btn:hover::after {
    display: none !important;
    width: 0 !important;
}

.nav-cta-btn:hover {
    background: var(--yellow-bright) !important;
    color: var(--dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(205, 255, 0, 0.4) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- Mobile Nav ---------- */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 18, 0, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--yellow);
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

/* ========================================
   HERO
   ======================================== */
#hero {
    min-height: 100vh;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 70% at 110% 50%, rgba(205, 255, 0, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at -10% 60%, rgba(205, 255, 0, 0.08) 0%, transparent 60%);
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(205, 255, 0, 0.12) 1px, transparent 1px);
    background-size: 35px 35px;
    opacity: 0.5;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(205, 255, 0, 0.12);
    border: 1px solid rgba(205, 255, 0, 0.3);
    color: var(--yellow);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;

}

.hero-title .highlight {
    color: var(--yellow);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(205, 255, 0, 0.3);
    border-radius: 3px;
    z-index: -1;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.03em;
}

.hero-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.hero-card-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse, rgba(205, 255, 0, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
}

.hero-img-wrap {
    position: relative;
    z-index: 1;
    border-radius: 28px;
    overflow: hidden;
    background: var(--dark-card);
    border: 2px solid rgba(205, 255, 0, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

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

.hero-float-badge {
    position: absolute;
    bottom: -18px;
    left: -18px;
    background: var(--yellow);
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(205, 255, 0, 0.4);
    z-index: 2;
    line-height: 1.4;
}

.hero-float-badge span {
    font-size: 1.2rem;
    display: block;
    font-weight: 800;
}

/* ========================================
   ABOUT
   ======================================== */
#about {
    padding: 110px 0;
    background: var(--gray-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-frame {
    border-radius: 24px;
    overflow: hidden;
    background: var(--dark);
    border: 3px solid var(--yellow);
    box-shadow: 12px 12px 0 var(--yellow-deep);
}

.about-img-frame img {
    width: 100%;
    object-fit: cover;
}

.about-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.3;
}

.about-accent-2 {
    position: absolute;
    bottom: -14px;
    left: -14px;
    width: 50px;
    height: 50px;
    background: var(--yellow-deep);
    border-radius: 12px;
    opacity: 0.5;
    transform: rotate(15deg);
}

.about-content {}

.about-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--yellow-deep);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-list li {
    color: #444;
    line-height: 1.7;
    font-size: 1.02rem;
    padding-left: 28px;
    position: relative;
}

.about-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--yellow-deep);
    font-size: 0.75rem;
    line-height: 1.7;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.about-tag {
    background: var(--dark);
    color: var(--yellow);
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(205, 255, 0, 0.3);
}

/* ========================================
   CV / CREDENTIALS
   ======================================== */
#cv {
    padding: 110px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

#cv::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(205, 255, 0, 0.07) 0%, transparent 70%);
    border-radius: 50%;
}

.cv-header {
    text-align: center;
    margin-bottom: 70px;
}

.cv-header .section-title {
    color: var(--white);
}

.cv-header .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
    margin: 12px auto 0;
}

.cv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.cv-column-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cv-column-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(205, 255, 0, 0.2);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    padding-bottom: 36px;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--yellow);
    border: 3px solid var(--dark);
    box-shadow: 0 0 0 2px var(--yellow-deep);
    flex-shrink: 0;
}

.timeline-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, rgba(205, 255, 0, 0.4), rgba(205, 255, 0, 0.05));
    margin-top: 6px;
}

.timeline-item:last-child .timeline-line {
    display: none;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 20px 22px;
    transition: border-color 0.3s, background 0.3s;
}

.timeline-content:hover {
    border-color: rgba(205, 255, 0, 0.3);
    background: rgba(205, 255, 0, 0.05);
}

.timeline-year {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.timeline-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.timeline-sub {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

/* Certifications */
.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cert-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(205, 255, 0, 0.15);
    border-radius: 14px;
    padding: 18px 16px;
    transition: var(--transition);
}

.cert-card:hover {
    border-color: rgba(205, 255, 0, 0.4);
    background: rgba(205, 255, 0, 0.06);
    transform: translateY(-3px);
}

.cert-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.cert-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.cert-org {
    font-size: 0.78rem;
    color: var(--yellow-deep);
}

/* ========================================
   WHY CHOOSE
   ======================================== */
.why-header {
    text-align: center;
    margin-bottom: 70px;
}

.why-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.why-label::before,
.why-label::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--yellow);
    opacity: 0.5;
}

.why-header .section-title {
    margin-bottom: 16px;
}

.why-header .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 auto;
    max-width: 500px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(205, 255, 0, 0.12);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(205, 255, 0, 0.06) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-card:hover {
    border-color: rgba(205, 255, 0, 0.35);
    background: rgba(205, 255, 0, 0.05);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

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

/* Wide card spans full row */
.why-card--wide {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.why-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(205, 255, 0, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(205, 255, 0, 0.2);
    transition: background 0.3s, border-color 0.3s;
}

.why-card:hover .why-icon {
    background: rgba(205, 255, 0, 0.18);
    border-color: rgba(205, 255, 0, 0.45);
}

.why-card-body {
    flex: 1;
}

.why-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.why-card-text {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* Light theme overrides for why-choose */
[data-theme="light"] .why-card {
    background: rgba(168, 212, 0, 0.06);
    border-color: rgba(168, 212, 0, 0.2);
}

[data-theme="light"] .why-card:hover {
    background: rgba(168, 212, 0, 0.12);
    border-color: rgba(168, 212, 0, 0.45);
}

[data-theme="light"] .why-card-title {
    color: #1a2600;
}

[data-theme="light"] .why-card-text {
    color: #4a5c00;
}

[data-theme="light"] .why-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* RTL */
[dir="rtl"] .why-header {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .why-label {
    flex-direction: row-reverse;
}

[dir="rtl"] .why-card {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .why-card--wide {
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card--wide {
        max-width: 100%;
    }
}

/* ========================================
   SUCCESS STORIES
   ======================================== */
#success {
    padding: 110px 0;
    background: var(--white);
}

/* SVG icon helpers */
.why-icon svg,
.tag-ico {
    display: block;
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tag-ico {
    width: 14px;
    height: 14px;
    stroke: var(--yellow-deep);
}

.success-header {
    text-align: center;
    margin-bottom: 70px;
}

.success-header .section-subtitle {
    margin: 12px auto 0;
}

.stories-grid {
    display: none;
    /* superseded by carousel */
}

/* ── Carousel ──────────────────────────────── */
.carousel-outer {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    user-select: none;
    padding: 0 60px;
    /* room for arrows */
}

.carousel-track-wrap {
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Each slide is 1/3 of the container minus the 2 inner gaps */
.carousel-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #0f1a00;
    border: 1px solid rgba(205, 255, 0, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.carousel-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
    border-color: rgba(205, 255, 0, 0.35);
}

.carousel-img-wrap {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.carousel-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.carousel-slide:hover .carousel-img-wrap img {
    transform: scale(1.05);
}

/* Caption below image */
.carousel-caption {
    padding: 16px 20px;
    background: rgba(15, 26, 0, 0.9);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.carousel-result {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--yellow);
}

.carousel-name {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Arrow buttons sit outside the track */
.carousel-btn {
    position: absolute;
    top: 150px;
    /* center on the 300px image */
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(205, 255, 0, 0.35);
    background: rgba(15, 26, 0, 0.75);
    backdrop-filter: blur(8px);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn svg {
    width: 22px;
    height: 22px;
}

.carousel-btn--prev {
    left: 8px;
}

.carousel-btn--next {
    right: 8px;
}

.carousel-btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 24px rgba(205, 255, 0, 0.4);
}

/* Dot indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(205, 255, 0, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--yellow);
    width: 26px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(205, 255, 0, 0.5);
}

/* Counter */
.carousel-counter {
    text-align: center;
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.05em;
}

/* RTL */
[dir="rtl"] .carousel-btn--prev {
    left: auto;
    right: 4px;
}

[dir="rtl"] .carousel-btn--next {
    right: auto;
    left: 4px;
}

[dir="rtl"] .carousel-caption {
    text-align: right;
}

/* Light theme */
[data-theme="light"] .carousel-slide {
    background: #fff;
    border-color: rgba(168, 212, 0, 0.25);
}

[data-theme="light"] .carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
}

[data-theme="light"] .carousel-caption {
    background: #f0f7d4;
}

[data-theme="light"] .carousel-result {
    color: var(--yellow-deep);
}

[data-theme="light"] .carousel-name {
    color: #4a5c00;
}

/* Responsive */
@media (max-width: 860px) {
    .carousel-outer {
        padding: 0 48px;
    }

    .carousel-slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .carousel-track {
        gap: 16px;
    }
}

@media (max-width: 520px) {
    .carousel-outer {
        padding: 0 40px;
    }

    .carousel-slide {
        flex: 0 0 100%;
    }

    .carousel-track {
        gap: 0;
    }
}

.story-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 2px solid var(--gray-light);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--yellow);
}

.story-img-wrap {
    position: relative;
    overflow: hidden;
}

.story-img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.story-card:hover .story-img-wrap img {
    transform: scale(1.04);
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px 16px 14px;
    opacity: 0;
    transition: opacity 0.35s;
}

.story-card:hover .story-overlay {
    opacity: 1;
}

.story-overlay-text {
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.story-body {
    padding: 24px;
}

.story-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.story-result {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(168, 212, 0, 0.12);
    color: var(--yellow-deep);
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.story-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
}

.story-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.82rem;
    color: #bbb;
    font-weight: 500;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
#testimonials {
    padding: 110px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

#testimonials::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(205, 255, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-header .section-title {
    color: var(--white);
}

.testimonials-header .section-subtitle {
    color: rgba(255, 255, 255, 0.45);
    margin: 12px auto 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    border-color: rgba(205, 255, 0, 0.3);
    background: rgba(205, 255, 0, 0.04);
    transform: translateY(-4px);
}

.quote-icon {
    font-size: 3rem;
    color: var(--yellow);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark);
    flex-shrink: 0;
}

.author-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
}

.author-result {
    font-size: 0.8rem;
    color: var(--yellow-deep);
    margin-top: 2px;
}

.stars {
    color: var(--yellow);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

/* ========================================
   CONTACT / SOCIAL
   ======================================== */
#contact {
    padding: 110px 0;
    background: var(--yellow);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

#contact::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
}

.contact-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-inner .section-title {
    color: var(--dark);
    margin-bottom: 18px;
}

.contact-inner p {
    font-size: 1.1rem;
    color: rgba(15, 26, 0, 0.7);
    margin-bottom: 48px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.social-btn-fb {
    background: #1877F2;
    color: #fff;
    box-shadow: 0 6px 24px rgba(24, 119, 242, 0.35);
}

.social-btn-fb:hover {
    background: #0d65d8;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(24, 119, 242, 0.5);
}

.social-btn-ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    box-shadow: 0 6px 24px rgba(220, 39, 67, 0.3);
}

.social-btn-ig:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(220, 39, 67, 0.5);
}

.social-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.contact-note {
    margin-top: 36px;
    font-size: 0.9rem;
    color: rgba(15, 26, 0, 0.55);
}

.contact-note a {
    color: var(--dark);
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--dark);
    padding: 36px 0;
    text-align: center;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--yellow);
}

.footer-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-divider {
    width: 60px;
    height: 2px;
    background: var(--yellow);
    margin: 16px auto;
    border-radius: 2px;
}

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--yellow-deep);
    border-radius: 3px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-side {
        justify-content: flex-start;
    }

    .hero-card {
        max-width: 360px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cv-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-inner {
        padding: 100px 0 60px;
    }

    .story-img-wrap img {
        height: 240px;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 24px;
    }

    .social-links {
        flex-direction: column;
        align-items: stretch;
    }

    .social-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .cv-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HALL OF FAME
   ======================================== */
#hall-of-fame {
    padding: 110px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

#hall-of-fame::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(205, 255, 0, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#hall-of-fame::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(205, 255, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Header */
.hof-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.hof-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 18px;
}

.hof-header .section-title {
    color: var(--white);
    margin-bottom: 14px;
}

.hof-header .section-subtitle {
    color: rgba(255, 255, 255, 0.45);
    margin: 0 auto;
}

/* ── Tabs ──────────────────────────────── */
.hof-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
}

.hof-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 50px;
    border: 1px solid rgba(205, 255, 0, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Outfit', sans-serif;
    font-size: 0.93rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    white-space: nowrap;
}

.hof-tab-btn svg {
    flex-shrink: 0;
    transition: stroke 0.3s ease;
}

.hof-tab-btn:hover {
    border-color: rgba(205, 255, 0, 0.45);
    color: var(--yellow);
    background: rgba(205, 255, 0, 0.07);
    transform: translateY(-2px);
}

.hof-tab-btn--active {
    background: var(--yellow) !important;
    border-color: var(--yellow) !important;
    color: var(--dark) !important;
    box-shadow: 0 0 24px rgba(205, 255, 0, 0.45), 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.hof-tab-btn--active svg {
    stroke: var(--dark);
}

/* ── Panel ──────────────────────────────── */
.hof-panel {
    display: none;
    position: relative;
    z-index: 1;
    animation: hofFadeIn 0.35s ease;
}

.hof-panel--active {
    display: block;
}

@keyframes hofFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Grid ──────────────────────────────── */
.hof-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.hof-grid--center {
    justify-items: center;
    grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
    justify-content: center;
}

/* ── Athlete Card ──────────────────────── */
.hof-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(205, 255, 0, 0.12);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: default;
}

.hof-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(205, 255, 0, 0.12);
    border-color: rgba(205, 255, 0, 0.4);
}

.hof-card-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.hof-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.hof-card:hover .hof-card-img-wrap img {
    transform: scale(1.07);
}

.hof-card-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding: 14px 10px;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.hof-card:hover .hof-card-name {
    color: var(--yellow);
}

/* Light theme */
[data-theme="light"] #hall-of-fame {
    background: #1a2600;
}

[data-theme="light"] .hof-tab-btn {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(168, 212, 0, 0.25);
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .hof-tab-btn:hover {
    color: var(--yellow);
    background: rgba(205, 255, 0, 0.12);
}

[data-theme="light"] .hof-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(205, 255, 0, 0.18);
}

[data-theme="light"] .hof-card-name {
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .hof-header .section-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

/* RTL */
[dir="rtl"] .hof-header {
    direction: rtl;
}

[dir="rtl"] .hof-tabs {
    flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 1100px) {
    .hof-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 860px) {
    .hof-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .hof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .hof-tab-btn {
        padding: 9px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 380px) {
    .hof-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* ========================================
   TV APPEARANCES
   ======================================== */
#tv-shows {
    padding: 110px 0;
    background: var(--white);
    position: relative;
}

.tv-header {
    text-align: center;
    margin-bottom: 60px;
}

.tv-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--yellow-deep);
    margin-bottom: 18px;
}

.tv-header .section-title {
    color: var(--dark);
    margin-bottom: 14px;
}

.tv-header .section-subtitle {
    color: var(--gray);
    margin: 0 auto;
}

/* Grid: 2 equal columns */
.tv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Card */
.tv-card {
    border-radius: 20px;
    overflow: hidden;
    background: #0d1a00;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32), 0 0 0 2px rgba(205, 255, 0, 0.35);
}

/* Photo frame — widescreen 16:9 */
.tv-card-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
}

.tv-card-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.tv-card:hover .tv-card-frame img {
    transform: scale(1.04);
}

/* Dark gradient overlay */
.tv-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            transparent 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 14px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.tv-card:hover .tv-card-overlay {
    opacity: 1;
}

/* Red LIVE badge */
.tv-broadcast-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e02020;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 50px;
    box-shadow: 0 0 16px rgba(224, 32, 32, 0.6);
    animation: tvPulse 1.5s infinite;
}

@keyframes tvPulse {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(224, 32, 32, 0.5);
    }

    50% {
        box-shadow: 0 0 22px rgba(224, 32, 32, 0.9);
    }
}

/* Caption */
.tv-card-caption {
    padding: 18px 22px 20px;
    background: #0d1a00;
}

.tv-card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--yellow);
    margin-bottom: 6px;
}

.tv-card-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* RTL */
[dir="rtl"] .tv-header {
    direction: rtl;
}

[dir="rtl"] .tv-card-caption {
    text-align: right;
}

[dir="rtl"] .tv-card-overlay {
    justify-content: flex-end;
}

/* Light theme — keep section white, card dark for cinematic feel */
[data-theme="light"] #tv-shows {
    background: #f5f9e8;
}

[data-theme="light"] .tv-header .section-title {
    color: var(--dark);
}

/* Responsive */
@media (max-width: 700px) {
    .tv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========================================
   REGISTRATION / CONTACT FORM SECTION
   ======================================== */
#contact {
    background: var(--dark);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(205, 255, 0, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

/* Section header */
.reg-header {
    text-align: center;
    margin-bottom: 48px;
}

.reg-label {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--yellow);
    background: rgba(205, 255, 0, 0.1);
    border: 1px solid rgba(205, 255, 0, 0.25);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.reg-header .section-title {
    color: var(--white);
}

.reg-header .section-subtitle {
    margin: 12px auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Form card */
.reg-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(205, 255, 0, 0.12);
    border-radius: 24px;
    padding: 44px 48px;
    max-width: 860px;
    margin: 0 auto;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
}

/* Two-column row */
.reg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Form group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group--full {
    margin-bottom: 20px;
}

/* Honeypot — visually hidden but in the DOM flow (bots fill it, humans can't see it) */
.form-honeypot {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    pointer-events: none;
    tab-size: -1;
}

/* Label */
.form-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
}

/* Input / Select / Textarea */
.form-input,
.form-select,
.form-textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(205, 255, 0, 0.15);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--yellow);
    background: rgba(205, 255, 0, 0.06);
    box-shadow: 0 0 0 3px rgba(205, 255, 0, 0.12);
}

.form-input.invalid,
.form-select.invalid,
.form-textarea.invalid {
    border-color: #ff5252;
    box-shadow: 0 0 0 3px rgba(255, 82, 82, 0.12);
}

/* Select arrow */
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23CDFF00' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
    cursor: pointer;
}

.form-select option {
    background: #1a2600;
    color: var(--white);
}

/* Textarea */
.form-textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.6;
}

/* Inline error message */
.form-error-msg {
    font-size: 0.78rem;
    color: #ff5252;
    min-height: 16px;
    display: block;
}

/* Submit button wrapper */
.form-submit-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

/* Submit button */
.form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 16px 48px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 28px rgba(205, 255, 0, 0.4);
    letter-spacing: 0.02em;
}

.form-submit-btn:hover {
    background: var(--yellow-bright);
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(205, 255, 0, 0.55);
}

.form-submit-btn:active {
    transform: translateY(-1px);
}

.form-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

/* Feedback banners */
.form-feedback {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 22px;
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.98rem;
}

.form-feedback.visible {
    display: flex;
}

.form-feedback--success {
    background: rgba(100, 220, 80, 0.12);
    border: 1px solid rgba(100, 220, 80, 0.35);
    color: #7ef45a;
}

.form-feedback--error {
    background: rgba(255, 82, 82, 0.12);
    border: 1px solid rgba(255, 82, 82, 0.35);
    color: #ff7070;
}

/* Secondary social section */
.contact-social-secondary {
    text-align: center;
    margin-top: 48px;
}

.contact-or {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.03em;
}

/* Social buttons (existing .social-links / .social-btn styles are reused) */
.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* RTL support for form */
[dir="rtl"] .reg-header {
    direction: rtl;
}

[dir="rtl"] .form-label {
    text-align: right;
}

[dir="rtl"] .form-select {
    background-position: left 14px center;
    padding-right: 16px;
    padding-left: 42px;
    direction: rtl;
}

[dir="rtl"] .reg-header .section-subtitle {
    text-align: center;
}

/* Light theme */
[data-theme="light"] #contact {
    background: linear-gradient(135deg, #1a2d00 0%, #0f1a00 100%);
}

/* Responsive */
@media (max-width: 760px) {
    .reg-card {
        padding: 28px 20px;
    }

    .reg-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   CLIENT VIDEO REVIEWS
   ======================================== */
.client-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.client-video-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(205, 255, 0, 0.12);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.client-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(205, 255, 0, 0.25);
    border-color: rgba(205, 255, 0, 0.3);
}

.client-video-wrap {
    position: relative;
    width: 100%;
    background: #000;
    line-height: 0;
}

.client-video-wrap video {
    width: 100%;
    display: block;
    max-height: 340px;
    object-fit: cover;
    border-radius: 0;
    outline: none;
}

.client-video-info {
    padding: 16px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.client-video-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
}

.client-video-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
}

.client-video-location svg {
    flex-shrink: 0;
    color: var(--yellow);
    opacity: 0.7;
}

/* RTL */
[dir="rtl"] .client-video-location {
    flex-direction: row-reverse;
}

/* Light theme */
[data-theme="light"] .client-video-card {
    background: rgba(0, 0, 0, 0.12);
    border-color: rgba(205, 255, 0, 0.15);
}

/* Responsive */
@media (max-width: 860px) {
    .client-videos {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 500px) {
    .client-video-wrap video {
        max-height: 260px;
    }
}

/* ========================================
   CLIENT MESSAGES — MASONRY GALLERY
   ======================================== */
#testimonials {
    background: var(--dark);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

#testimonials::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(205, 255, 0, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 52px;
}

.testimonials-header .section-subtitle {
    margin: 12px auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
}

/* Masonry via CSS columns */
.msg-masonry {
    column-count: 4;
    column-gap: 16px;
}

.msg-item {
    break-inside: avoid;
    margin-bottom: 16px;
    cursor: zoom-in;
}

.msg-frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid rgba(205, 255, 0, 0.1);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.35s;
    position: relative;
    will-change: transform;
}

.msg-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(205, 255, 0, 0.06) 100%);
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s;
}

.msg-item:hover .msg-frame {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 0 1.5px rgba(205, 255, 0, 0.35);
    border-color: rgba(205, 255, 0, 0.35);
}

.msg-item:hover .msg-frame::after {
    opacity: 1;
}

.msg-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: inherit;
}

/* Zoom icon on hover */
.msg-item:hover .msg-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(205, 255, 0, 0.85) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230f1a00' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3Cline x1='11' y1='8' x2='11' y2='14'%3E%3C/line%3E%3Cline x1='8' y1='11' x2='14' y2='11'%3E%3C/line%3E%3C/svg%3E") no-repeat center / 16px;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Tap hint */
.msg-tap-hint {
    text-align: center;
    margin-top: 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── Lightbox ── */
.msg-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    animation: lbFadeIn 0.25s ease;
}

.msg-lightbox.open {
    display: flex;
}

@keyframes lbFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.msg-lightbox img {
    max-width: min(90vw, 500px);
    max-height: 90vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    animation: lbZoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lbZoomIn {
    from {
        transform: scale(0.88);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.msg-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.25s;
    z-index: 10000;
}

.msg-lightbox-close:hover {
    background: rgba(205, 255, 0, 0.2);
    border-color: var(--yellow);
    transform: rotate(90deg) scale(1.1);
}

/* Responsive masonry columns */
@media (max-width: 1100px) {
    .msg-masonry {
        column-count: 3;
    }
}

@media (max-width: 700px) {
    .msg-masonry {
        column-count: 2;
        column-gap: 10px;
    }

    .msg-item {
        margin-bottom: 10px;
    }

    .msg-frame {
        border-radius: 12px;
    }

    .msg-lightbox img {
        max-width: 95vw;
    }
}

@media (max-width: 400px) {
    .msg-masonry {
        column-count: 1;
    }
}

/* ========================================
   PACKAGES SECTION
   ======================================== */
#packages {
    background: var(--dark);
    padding: 110px 0 90px;
    position: relative;
    overflow: hidden;
}

#packages::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(205, 255, 0, 0.055) 0%, transparent 65%);
    pointer-events: none;
}

/* Header */
.pkg-header {
    text-align: center;
    margin-bottom: 64px;
}

.pkg-label {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--yellow);
    background: rgba(205, 255, 0, 0.1);
    border: 1px solid rgba(205, 255, 0, 0.25);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.pkg-header .section-title {
    color: var(--white);
}

.pkg-header .section-subtitle {
    margin: 12px auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Two-column grid */
.pkg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
    align-items: start;
}

/* Card base */
.pkg-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(205, 255, 0, 0.13);
    border-radius: 24px;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(205, 255, 0, 0.28);
    border-color: rgba(205, 255, 0, 0.3);
}

/* Featured card (Package 2) */
.pkg-card--featured {
    background: linear-gradient(145deg, rgba(205, 255, 0, 0.07) 0%, rgba(255, 180, 0, 0.05) 100%);
    border-color: rgba(255, 200, 30, 0.35);
    box-shadow: 0 8px 40px rgba(205, 255, 0, 0.08);
}

.pkg-card--featured:hover {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 0 0 1.5px rgba(255, 200, 30, 0.55);
    border-color: rgba(255, 200, 30, 0.55);
}

/* "Most Popular" ribbon */
.pkg-most-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #f5c800, #ffe566);
    color: #1a1a00;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 20px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(245, 200, 0, 0.45);
}

/* Card top */
.pkg-card-top {
    text-align: center;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 28px;
}

.pkg-badge {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--yellow);
    background: rgba(205, 255, 0, 0.1);
    border: 1px solid rgba(205, 255, 0, 0.2);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.pkg-tier {
    font-family: 'Outfit', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.pkg-tier--gold {
    background: linear-gradient(135deg, #f5c800, #ffe566);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pkg-price {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--yellow);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pkg-card--featured .pkg-price {
    color: #f5c800;
    text-shadow: 0 0 30px rgba(245, 200, 0, 0.35);
}

.pkg-currency {
    font-size: 1.25rem;
    font-weight: 700;
    vertical-align: super;
    letter-spacing: 0;
    opacity: 0.7;
}

.pkg-price-note {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 6px;
    letter-spacing: 0.03em;
}

/* Feature list */
.pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.pkg-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--yellow);
}

.pkg-card--featured .pkg-check {
    color: #f5c800;
}

/* CTA Button */
.pkg-cta-btn {
    display: block;
    text-align: center;
    background: rgba(205, 255, 0, 0.1);
    border: 1.5px solid rgba(205, 255, 0, 0.35);
    color: var(--yellow);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    margin-top: auto;
}

.pkg-cta-btn:hover {
    background: var(--yellow);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(205, 255, 0, 0.4);
    border-color: var(--yellow);
}

.pkg-cta-btn--gold {
    background: linear-gradient(135deg, rgba(245, 200, 0, 0.18), rgba(255, 230, 80, 0.12));
    border-color: rgba(245, 200, 0, 0.5);
    color: #f5c800;
}

.pkg-cta-btn--gold:hover {
    background: linear-gradient(135deg, #f5c800, #ffe566);
    color: #1a1a00;
    border-color: #f5c800;
    box-shadow: 0 8px 28px rgba(245, 200, 0, 0.45);
}

/* Light theme */
[data-theme="light"] #packages {
    background: linear-gradient(135deg, #0f1a00 0%, #1a2d00 100%);
}

[data-theme="light"] .pkg-header .section-title,
[data-theme="light"] .pkg-tier,
[data-theme="light"] .pkg-features li {
    color: #fff;
}

/* RTL */
[dir="rtl"] .pkg-header {
    direction: rtl;
}

[dir="rtl"] .pkg-features li {
    flex-direction: row-reverse;
    text-align: right;
}

/* Responsive */
@media (max-width: 820px) {
    .pkg-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .pkg-card--featured {
        order: -1;
    }
}

@media (max-width: 480px) {
    .pkg-card {
        padding: 28px 22px 26px;
    }

    .pkg-price {
        font-size: 2.4rem;
    }
}