﻿:root {
    --primary: #FFB800;
    --primary-light: #FFD566;
    --primary-dark: #D99B00;
    --secondary: #0A0A0A;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --bg-light: #FAFAFB;
    --bg-white: #FFFFFF;
    --border-color: rgba(0, 0, 0, 0.06);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --accent-red: #FF4D6D;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.08);
    --shadow-colored: 0 12px 30px rgba(255, 184, 0, 0.25);
    --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.10);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 100px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Almarai', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-soft);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary);
    box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 184, 0, 0.35);
}

.btn-dark {
    background-color: var(--secondary);
    color: var(--bg-white);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.20);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--secondary);
    background-color: var(--bg-white);
}

.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1150px;
    z-index: 1000;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-muted);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
}

.hero {
    padding: 160px 0 80px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    animation: floatBlob 10s ease-in-out infinite alternate;
}

.hero::before {
    top: -100px;
    right: -200px;
    background: var(--primary-light);
}

.hero::after {
    bottom: -100px;
    left: -200px;
    background: rgba(0, 0, 0, 0.05);
    animation-delay: 2s;
}

@keyframes floatBlob {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(50px, 50px); }
}

.hero-tag,
.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 184, 0, 0.15);
    color: var(--primary-dark);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--secondary);
}

.hero-title span {
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    right: 0;
    left: auto;
    bottom: 10px;
    width: 100%;
    height: 18px;
    background: rgba(255, 184, 0, 0.28);
    border-radius: 999px;
    z-index: -1;
}

.hero-desc {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 20px;
    line-height: 1.9;
}
/* ─── Phone Mockup + Slider ─────────────────────────── */
.phone-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 300px;
    margin: 0 auto;
}

.phone-frame {
    width: 260px;
    height: 530px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 46px;
    padding: 14px 10px 10px;
    box-shadow:
        0 0 0 1px #444,
        0 0 0 3px #222,
        0 50px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.phone-speaker {
    width: 56px;
    height: 5px;
    background: #3a3a3a;
    border-radius: 3px;
    flex-shrink: 0;
}

.phone-screen {
    flex: 1;
    width: 100%;
    border-radius: 36px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.phone-slider {
    position: absolute;
    inset: 0;
}

.phone-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.phone-slide.active {
    opacity: 1;
}

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

.phone-home-bar {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    flex-shrink: 0;
}


.trusted-section {
    padding: 0 0 60px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 42px;
    color: #9A9A9A;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 46px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 16px;
    letter-spacing: -0.8px;
}

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

.service-card,
.help-card,
.content-card,
.contact-info-card,
.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.service-card {
    padding: 32px 28px;
    transition: var(--transition);
}

.service-card:hover,
.help-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-icon,
.help-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 184, 0, 0.15);
    color: var(--primary-dark);
    font-size: 28px;
    margin-bottom: 20px;
}

.help-icon {
    margin-inline: auto;
}

.service-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 16px;
}

/* ─── Services Grid ─────────────────────────────────── */
.srv-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.srv-card {
    position: relative;
    background: var(--bg-white);
    border-radius: 28px;
    padding: 40px 32px 36px;
    overflow: hidden;
    border: 1.5px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease,
                border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}

.srv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 70px rgba(255, 184, 0, 0.13);
    border-color: rgba(255, 184, 0, 0.35);
}

/* Top gradient accent on hover */
.srv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFB800, #FF8500);
    border-radius: 28px 28px 0 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

.srv-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg, #FFE98A, #FFB800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.22);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease,
                background 0.4s ease;
    flex-shrink: 0;
}

.srv-card:hover .srv-icon-wrap {
    transform: scale(1.1) rotate(-8deg);
    background: linear-gradient(135deg, #FFB800, #FF7A00);
    box-shadow: 0 16px 40px rgba(255, 184, 0, 0.4);
}

.srv-title {
    font-size: 21px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.srv-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.9;
    flex: 1;
}

.srv-bg-icon {
    position: absolute;
    bottom: -18px;
    inset-inline-end: -12px;
    font-size: 110px;
    color: rgba(255, 184, 0, 0.05);
    pointer-events: none;
    user-select: none;
    transition: transform 0.6s ease, color 0.6s ease;
}

.srv-card:hover .srv-bg-icon {
    transform: scale(1.2) rotate(15deg);
    color: rgba(255, 184, 0, 0.09);
}

/* ─── Responsive Services ───────────────────────────── */
@media (max-width: 860px) {
    .srv-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .srv-bento {
        grid-template-columns: 1fr;
    }
}

/* ─── Process Section ───────────────────────────────── */
.process-section {
    padding: 100px 0;
}

/* ─── Steps Grid ────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr 44px 1fr 44px 1fr;
    gap: 0 8px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px 28px 32px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border-top: 3px solid transparent;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 56px rgba(255, 184, 0, 0.16);
    border-top-color: var(--primary);
}

.step-num-bg {
    position: absolute;
    bottom: -12px;
    inset-inline-end: -4px;
    font-size: 96px;
    font-weight: 900;
    color: rgba(255, 184, 0, 0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -4px;
}

.step-num-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-dark);
    background: rgba(255, 184, 0, 0.12);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.step-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, #FFB800, #FF8C00);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 14px 32px rgba(255, 184, 0, 0.35);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover .step-icon-wrap {
    transform: scale(1.1) rotate(-6deg);
}

.step-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}

.step-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.85;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 184, 0, 0.5);
    font-size: 20px;
}

[dir="rtl"] .step-connector i {
    transform: scaleX(-1);
}

/* ─── CTA Banner ────────────────────────────────────── */
.cta-banner {
    margin-bottom: 100px;
}

.cta-box {
    position: relative;
    background: linear-gradient(135deg, #FFB800 0%, #FFCF40 45%, #FF9A00 100%);
    border-radius: 40px;
    padding: 88px 40px 80px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(255, 184, 0, 0.28);
}

/* Subtle diagonal shine */
.cta-box::before {
    content: '';
    position: absolute;
    top: -40%;
    inset-inline-start: -15%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(-18deg);
    pointer-events: none;
}

.cta-title {
    font-size: 50px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -1px;
    position: relative;
}

.cta-desc {
    font-size: 18px;
    color: rgba(10, 10, 10, 0.6);
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.75;
    position: relative;
}

/* ─── Store Buttons ─────────────────────────────────── */
.cta-store-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 15px 26px;
    border-radius: 16px;
    text-decoration: none;
    min-width: 180px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease;
}

.store-btn:hover {
    transform: translateY(-4px);
}

.store-btn i {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.store-btn-text {
    text-align: start;
}

.store-btn-text small {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.65;
    margin-bottom: 3px;
}

.store-btn-text strong {
    display: block;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
}

.store-btn--dark {
    background: var(--secondary);
    color: #fff;
}

.store-btn--dark:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.store-btn--white {
    background: rgba(255, 255, 255, 0.88);
    color: var(--secondary);
    backdrop-filter: blur(8px);
}

.store-btn--white:hover {
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.inner-page-header {
    padding: 150px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(255, 184, 0, 0.18), transparent 50%);
    z-index: -1;
}

.inner-page-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.partner-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

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

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 15px 18px;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: var(--transition);
}

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

.form-control:focus {
    outline: none;
    border-color: rgba(255, 184, 0, 0.65);
    box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.12);
}

.contact-info-card {
    padding: 36px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item i {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 184, 0, 0.14);
    color: var(--primary-dark);
    font-size: 20px;
    flex-shrink: 0;
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 18px;
    overflow: hidden;
}

.faq-question {
    padding: 24px 28px;
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question i {
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    color: var(--text-muted);
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 280px;
    padding-bottom: 24px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.help-card {
    padding: 34px 26px;
    text-align: center;
}

.help-card h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.content-card {
    padding: 42px;
}

.content-card h2 {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 14px;
    margin-top: 30px;
}

.content-card h2:first-child {
    margin-top: 0;
}

.content-card p,
.content-card li {
    color: var(--text-muted);
    line-height: 1.9;
}

.content-card ul {
    padding-inline-start: 20px;
    list-style: disc;
}

.footer {
    padding: 0 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 32px;
    padding-top: 10px;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--primary-dark);
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

table {
    width: 100%;
}

th,
td {
    font-size: 15px;
}

.lang-en body {
    font-family: 'Almarai', sans-serif;
}

/* ── Large tablet (≤1100px): compress nav slightly ─────── */
@media (max-width: 1100px) and (min-width: 861px) {
    .nav-links {
        gap: 20px;
    }
    .nav-links a {
        font-size: 14px;
    }
    .header-actions {
        gap: 8px;
    }
    .header-actions .btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* ── Medium (≤992px) ───────────────────────────────────── */
@media (max-width: 992px) {
    .hero-title {
        font-size: 52px;
    }

    .services-grid,
    .help-grid,
    .footer-grid,
    .partner-grid,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── Mobile header (≤860px): logo + hamburger only ─────── */
@media (max-width: 860px) {
    /* Header pill */
    .header {
        width: calc(100% - 20px);
        top: 10px;
    }

    .header .container {
        height: 64px;
        padding: 0 14px;
        gap: 0;
    }

    /* Hide desktop nav */
    .nav-links {
        display: none;
    }

    /* Collapse header-actions: hide buttons, keep hamburger */
    .header-actions {
        gap: 0;
        flex-shrink: 0;
    }

    .header-actions .btn {
        display: none !important;
    }

    /* Hamburger button */
    .menu-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 184, 0, 0.12);
        border: none;
        border-radius: 12px;
        font-size: 20px;
        cursor: pointer;
        color: var(--secondary);
        transition: var(--transition);
        flex-shrink: 0;
    }

    .menu-toggle:hover {
        background: rgba(255, 184, 0, 0.22);
    }

    /* Hero section */
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: -0.5px;
    }

    .hero-desc {
        font-size: 17px;
    }

    .phone-frame {
        width: 220px;
        height: 450px;
    }

    /* Sections */
    .section,
    .process-section {
        padding: 72px 0;
    }

    /* Grids: stack to single column */
    .services-grid,
    .help-grid,
    .partner-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Typography */
    .inner-page-title,
    .section-title,
    .cta-title {
        font-size: 34px;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .step-connector {
        transform: rotate(90deg);
        padding: 4px 0;
    }
    [dir="rtl"] .step-connector {
        transform: rotate(90deg);
    }
    [dir="rtl"] .step-connector i {
        transform: none;
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* CTA */
    .cta-box {
        padding: 64px 28px 56px;
    }

    .cta-title {
        font-size: 38px;
    }

    .store-btn {
        min-width: 160px;
        padding: 14px 20px;
    }

    .content-card {
        padding: 24px;
    }

    .contact-info-card {
        padding: 24px;
    }

    .inner-page-header {
        padding: 116px 0 52px;
    }
}

/* ── Small mobile (≤640px) ────────────────────────────── */
@media (max-width: 640px) {
    .container {
        padding: 0 14px;
    }

    .header .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 30px;
        letter-spacing: -0.3px;
    }

    .hero-desc {
        font-size: 15px;
    }

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

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 320px;
    }

    .cta-title {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .cta-box {
        padding: 52px 20px 48px;
    }

    .cta-store-btns {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .inner-page-title {
        font-size: 28px;
    }
}

/* ── Extra small (≤400px) ────────────────────────────── */
@media (max-width: 400px) {
    .hero-title {
        font-size: 26px;
    }

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

    .menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ══════════════════════════════════════════════════════════
   Partner Page
   ══════════════════════════════════════════════════════════ */

/* ── Hero override ─────────────────────────────────────── */
.partner-hero .inner-page-title span {
    color: var(--primary);
}

/* ── Hero Stats ────────────────────────────────────────── */
.partner-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 52px;
}

.partner-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 28px 16px 24px;
    box-shadow: var(--shadow-soft);
    border: 1.5px solid var(--border-color);
    transition: var(--transition);
}

.partner-hero-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 184, 0, 0.3);
}

.phs-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FFE98A, #FFB800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--secondary);
}

.partner-hero-stat strong {
    font-size: 30px;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    font-family: 'Almarai', sans-serif;
}

.partner-hero-stat span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    text-align: center;
    font-family: 'Almarai', sans-serif;
}

/* ── Benefits Section ──────────────────────────────────── */
.partner-benefits-section {
    padding: 80px 0 60px;
    background: var(--bg-light);
}

.partner-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.pbenefit-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    border: 1.5px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pbenefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFB800, #FF8500);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pbenefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 184, 0, 0.25);
}

.pbenefit-card:hover::after {
    transform: scaleX(1);
}

.pbenefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FFF5CC, #FFE066);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #B87800;
    margin-bottom: 18px;
    transition: var(--transition);
}

.pbenefit-card:hover .pbenefit-icon {
    background: linear-gradient(135deg, #FFB800, #FF8500);
    color: #fff;
    transform: rotate(-8deg) scale(1.1);
}

.pbenefit-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
    font-family: 'Almarai', sans-serif;
}

.pbenefit-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    font-family: 'Almarai', sans-serif;
}

/* ── Alerts ────────────────────────────────────────────── */
.p-alert {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    font-family: 'Almarai', sans-serif;
}

.p-alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.p-alert div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.p-alert strong {
    font-size: 15px;
    font-weight: 800;
    display: block;
}

.p-alert span {
    font-size: 14px;
    opacity: 0.85;
}

.p-alert--success {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.p-alert--success .p-alert-icon {
    background: #D1FAE5;
    color: #10B981;
}

.p-alert--error {
    background: #FEF2F2;
    color: #7F1D1D;
    border: 1px solid #FECACA;
}

.p-alert--error .p-alert-icon {
    background: #FEE2E2;
    color: #EF4444;
}

/* ── Tab Switcher ──────────────────────────────────────── */
.p-tab-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.p-tabs {
    display: flex;
    gap: 10px;
    background: var(--bg-white);
    border: 1.5px solid var(--border-color);
    border-radius: 24px;
    padding: 8px;
    box-shadow: var(--shadow-soft);
}

.p-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 32px;
    border-radius: 18px;
    border: none;
    background: transparent;
    font-family: 'Almarai', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    text-align: start;
}

.p-tab-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    background: var(--bg-light);
    color: var(--text-muted);
    transition: var(--transition);
}

.p-tab-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.p-tab-text strong {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-muted);
    display: block;
    transition: color 0.3s;
}

.p-tab-text small {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.7;
    font-weight: 400;
}

.p-tab.active {
    background: var(--secondary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.p-tab.active .p-tab-icon {
    background: rgba(255, 184, 0, 0.18);
    color: var(--primary);
}

.p-tab.active .p-tab-text strong {
    color: #fff;
}

.p-tab.active .p-tab-text small {
    color: rgba(255, 255, 255, 0.6);
}

/* ── Form Card ─────────────────────────────────────────── */
.p-form-wrap {
    max-width: 740px;
    margin: 0 auto;
}

.p-form-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 52px;
    border: 1.5px solid var(--border-color);
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.07);
    border-top: 4px solid var(--primary);
}

.p-form-card--dark {
    border-top-color: var(--secondary);
}

.p-form-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.p-form-head-text h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 5px;
    font-family: 'Almarai', sans-serif;
}

.p-form-head-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    font-family: 'Almarai', sans-serif;
}

.p-form-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.p-form-icon--yellow {
    background: linear-gradient(135deg, #FFE98A, #FFB800);
    color: var(--secondary);
    box-shadow: 0 8px 20px rgba(255, 184, 0, 0.3);
}

.p-form-icon--dark {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ── Form fields ───────────────────────────────────────── */
.p-form .form-group {
    margin-bottom: 22px;
}

.p-form .form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    font-family: 'Almarai', sans-serif !important;
}

.p-form .form-control {
    width: 100%;
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 14px;
    font-family: 'Almarai', sans-serif !important;
    font-weight: 400;
    border: 1.5px solid var(--border-color);
    background: var(--bg-light);
    color: var(--text-main);
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.p-form .form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
    font-family: 'Almarai', sans-serif;
}

.p-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.12);
}

.p-form-card--dark .p-form .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(10, 10, 10, 0.08);
}

/* Select arrow */
.p-form select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 14px center;
    padding-left: 38px;
}

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

/* Two-col row */
.p-form-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ── Phone Prefix ──────────────────────────────────────── */
.p-phone-group {
    display: flex;
    align-items: stretch;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-light);
    transition: var(--transition);
    direction: ltr;
}

.p-phone-group:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.12);
}

.p-form-card--dark .p-phone-group:focus-within {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(10, 10, 10, 0.08);
}

.p-phone-prefix {
    display: flex;
    align-items: center;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
    color: var(--text-main);
    background: rgba(255, 184, 0, 0.1);
    border-inline-end: 1.5px solid var(--border-color);
    white-space: nowrap;
    user-select: none;
    gap: 6px;
}

.p-phone-group .form-control {
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    flex: 1;
    direction: ltr;
    text-align: left;
}

.p-phone-group .form-control:focus {
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
}

/* ── Submit Button ─────────────────────────────────────── */
.p-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 17px 32px;
    margin-top: 8px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #FFB800 0%, #FF8500 100%);
    color: var(--secondary);
    font-family: 'Almarai', sans-serif !important;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(255, 184, 0, 0.35);
    letter-spacing: 0.2px;
}

.p-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255, 184, 0, 0.45);
    filter: brightness(1.05);
}

.p-submit-btn--dark {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.p-submit-btn--dark:hover {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

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

    .partner-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .partner-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .partner-benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .p-tabs {
        flex-direction: column;
        border-radius: var(--radius-lg);
        width: 100%;
    }

    .p-tab {
        border-radius: 14px;
    }

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

    .p-form-row2 {
        grid-template-columns: 1fr;
    }

    .p-form-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .pbenefit-card {
        padding: 22px 16px;
    }
}

@media (max-width: 400px) {
    .partner-hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .partner-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════════
   Help Page
   ══════════════════════════════════════════════════════════ */

/* ── Search Bar ────────────────────────────────────────── */
.help-search-wrap {
    max-width: 680px;
    margin: 0 auto;
    margin-top: 40px;
}

.help-search-form {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border-radius: var(--radius-pill);
    padding: 8px 8px 8px 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border: 1.5px solid var(--border-color);
    gap: 12px;
}

[dir="rtl"] .help-search-form {
    padding: 8px 20px 8px 8px;
}

.help-search-ico {
    font-size: 18px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.help-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    font-family: 'Almarai', sans-serif;
    color: var(--text-main);
}

.help-search-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.help-search-btn {
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: var(--radius-pill);
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 800;
    font-family: 'Almarai', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.help-search-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.03);
}

.help-popular-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
}

.help-popular-tags span {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    font-family: 'Almarai', sans-serif;
}

.help-popular-tags a {
    font-size: 13px;
    font-family: 'Almarai', sans-serif;
    color: var(--text-main);
    background: rgba(255, 184, 0, 0.12);
    border: 1px solid rgba(255, 184, 0, 0.25);
    border-radius: var(--radius-pill);
    padding: 5px 14px;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.help-popular-tags a:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

/* ── Contact Methods Strip ─────────────────────────────── */
.help-contact-strip {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
}

.help-contact-methods {
    display: flex;
    align-items: center;
    padding: 0;
}

.help-contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    padding: 28px 32px;
}

.help-contact-sep {
    width: 1px;
    height: 60px;
    background: var(--border-color);
    flex-shrink: 0;
}

.hcm-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.hcm-icon--green  { background: #DCFCE7; color: #16A34A; }
.hcm-icon--yellow { background: linear-gradient(135deg, #FFF5CC, #FFE066); color: #B87800; }
.hcm-icon--dark   { background: #F1F5F9; color: var(--secondary); }

.hcm-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hcm-text strong {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-main);
    font-family: 'Almarai', sans-serif;
}

.hcm-text span {
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'Almarai', sans-serif;
}

.hcm-btn {
    padding: 9px 20px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.hcm-btn--green {
    background: #DCFCE7;
    color: #15803D;
    border: 1px solid #BBF7D0;
}

.hcm-btn--green:hover {
    background: #16A34A;
    color: #fff;
    border-color: #16A34A;
}

.hcm-btn--yellow {
    background: rgba(255, 184, 0, 0.12);
    color: #B87800;
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.hcm-btn--yellow:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.hcm-badge {
    background: var(--bg-light);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Almarai', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Categories Grid ───────────────────────────────────── */
.help-cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.help-cat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    border: 1.5px solid var(--border-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.help-cat-card::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.help-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 184, 0, 0.3);
}

.help-cat-card:hover::before {
    transform: scaleY(1);
}

.hcc-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: var(--transition);
}

.help-cat-card:hover .hcc-icon {
    transform: scale(1.1) rotate(-6deg);
}

.hcc-icon--yellow { background: linear-gradient(135deg, #FFF5CC, #FFE066); color: #B87800; }
.hcc-icon--blue   { background: #DBEAFE; color: #1D4ED8; }
.hcc-icon--purple { background: #EDE9FE; color: #7C3AED; }
.hcc-icon--orange { background: #FFEDD5; color: #EA580C; }
.hcc-icon--teal   { background: #CCFBF1; color: #0F766E; }
.hcc-icon--red    { background: #FEE2E2; color: #DC2626; }

.hcc-body {
    flex: 1;
    min-width: 0;
}

.hcc-body h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
    font-family: 'Almarai', sans-serif;
}

.hcc-body p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    font-family: 'Almarai', sans-serif;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hcc-arrow {
    font-size: 13px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: var(--transition);
}

[dir="ltr"] .hcc-arrow i {
    transform: scaleX(-1);
}

.help-cat-card:hover .hcc-arrow {
    color: var(--primary);
    transform: translateX(-4px);
}

[dir="ltr"] .help-cat-card:hover .hcc-arrow {
    transform: translateX(4px);
}

/* ── Quick Answers FAQ ─────────────────────────────────── */
.help-qa-section {
    background: var(--bg-light);
}

.help-faq-list {
    max-width: 800px;
    margin: 48px auto 0;
}

.help-faq-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.help-faq-cta span {
    font-size: 15px;
    color: var(--text-muted);
    font-family: 'Almarai', sans-serif;
    font-weight: 600;
}

/* ── Bottom CTA ────────────────────────────────────────── */
.help-bottom-cta {
    padding: 60px 0 80px;
}

.help-cta-box {
    display: flex;
    align-items: center;
    gap: 28px;
    background: linear-gradient(135deg, #FFB800 0%, #FFCF40 50%, #FF9A00 100%);
    border-radius: var(--radius-lg);
    padding: 44px 52px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(255, 184, 0, 0.3);
}

.help-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    inset-inline-end: -5%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.12);
    transform: rotate(-18deg);
    pointer-events: none;
}

.help-cta-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--secondary);
    flex-shrink: 0;
}

.help-cta-text {
    flex: 1;
}

.help-cta-text h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 6px;
    font-family: 'Almarai', sans-serif;
}

.help-cta-text p {
    font-size: 14px;
    color: rgba(10, 10, 10, 0.65);
    font-family: 'Almarai', sans-serif;
}

.help-cta-box .btn-primary {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.help-cta-box .btn-primary:hover {
    background: #1a1a1a;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

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

    .help-contact-methods {
        flex-direction: column;
        align-items: stretch;
    }

    .help-contact-sep {
        width: 100%;
        height: 1px;
    }

    .help-contact-method {
        padding: 20px 24px;
    }
}

@media (max-width: 640px) {
    .help-cats-grid {
        grid-template-columns: 1fr;
    }

    .help-search-form {
        flex-wrap: wrap;
        border-radius: var(--radius-lg);
        padding: 16px;
    }

    .help-search-btn {
        width: 100%;
        padding: 12px;
    }

    .help-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
    }

    .help-cta-box .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* ══════════════════════════════════════════════════════════
   Contact Page
   ══════════════════════════════════════════════════════════ */

/* ── Layout ────────────────────────────────────────────── */
.ct-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 28px;
    align-items: start;
}

.ct-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ── Info Card ─────────────────────────────────────────── */
.ct-info-card {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}

.ct-info-card::before {
    content: '';
    position: absolute;
    top: -30%;
    inset-inline-end: -10%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.08);
    pointer-events: none;
}

.ct-info-card::after {
    content: '';
    position: absolute;
    bottom: -20%;
    inset-inline-start: -10%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.05);
    pointer-events: none;
}

.ct-info-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 32px;
    font-family: 'Almarai', sans-serif;
}

.ct-info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.ct-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ct-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ct-icon--yellow { background: rgba(255, 184, 0, 0.15); color: var(--primary); }
.ct-icon--green  { background: rgba(74, 222, 128, 0.15); color: #4ADE80; }
.ct-icon--blue   { background: rgba(96, 165, 250, 0.15); color: #60A5FA; }
.ct-icon--purple { background: rgba(167, 139, 250, 0.15); color: #A78BFA; }

.ct-info-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 3px;
    font-family: 'Almarai', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ct-info-item span {
    font-size: 14px;
    color: #fff;
    font-family: 'Almarai', sans-serif;
    font-weight: 500;
    line-height: 1.5;
}

/* ── Social ────────────────────────────────────────────── */
.ct-social-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
}

.ct-social-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 14px;
    font-family: 'Almarai', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ct-social-links {
    display: flex;
    gap: 10px;
}

.ct-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.ct-social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
}

/* ── Response Badge ────────────────────────────────────── */
.ct-response-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    border: 1.5px solid rgba(255, 184, 0, 0.25);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Almarai', sans-serif;
}

.ct-response-badge i {
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

/* ── Textarea ──────────────────────────────────────────── */
.ct-textarea {
    min-height: 130px;
    resize: vertical;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
    .ct-grid {
        grid-template-columns: 1fr;
    }

    .ct-info-col {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ct-info-card {
        flex: 1;
        min-width: 280px;
    }

    .ct-response-badge {
        flex: 1;
        min-width: 200px;
        align-self: flex-start;
    }
}

@media (max-width: 640px) {
    .ct-info-col {
        flex-direction: column;
    }

    .ct-info-card {
        padding: 28px 22px;
    }
}
