/* Local custom fonts */
@font-face {
    font-family: 'SuisseIntl';
    src: url('../fonts/ArbFONTS-SuisseIntl-Bold.otf') format('opentype');
    font-weight: 700 800 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SuisseIntl';
    src: url('../fonts/ArbFONTS-SuisseIntl-Light.otf') format('opentype');
    font-weight: 300 400 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand-color: #ff5a2f;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

body {
    font-family: 'SuisseIntl', 'Tajawal', sans-serif;
    background: #f7f1ea;
    min-height: 100vh;
    color: #1f2937;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    margin: 0;
    direction: rtl;
    text-align: right;
}

/* ============================================================
   LAYOUT — Container
   ============================================================ */
.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}
@media (min-width: 640px) {
    .container { padding-left: 24px; padding-right: 24px; }
}
@media (min-width: 1024px) {
    .container { padding-left: 32px; padding-right: 32px; }
}
.container--sm {
    max-width: 768px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s;
    border-bottom: 1px solid transparent;
    direction: rtl;
}
.navbar__row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 96px;
    direction: rtl;
}
.navbar__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.navbar__logo-img {
    height: 64px;
    width: auto;
}
.navbar__links {
    display: none;
    flex: 1;
    justify-content: center;
    gap: 32px;
}
@media (min-width: 768px) {
    .navbar__links { display: flex; }
}

/* ── Hamburger Button ── */
.navbar__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s;
    z-index: 60;
}
.navbar__hamburger:hover {
    background: rgba(0,0,0,0.06);
}
.navbar__hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #1a1a1a;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
/* X state when open */
.navbar__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) {
    .navbar__hamburger { display: none; }
}

/* ── Navbar CTA Button ── */
.navbar__cta {
    display: none;
    align-items: center;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #bc0000 0%, #e06228 100%);
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(188, 0, 0, 0.28);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    flex-shrink: 0;
}
.navbar__cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(212, 43, 30, 0.38);
}
.navbar__cta:active {
    transform: translateY(0) scale(0.98);
}
@media (min-width: 768px) {
    .navbar__cta { display: inline-flex; }
}

/* ── Mobile dropdown menu ── */
.navbar__links.is-open {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    background: rgba(247, 241, 234, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 16px 0 24px;
    z-index: 49;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.navbar__links.is-open .nav-link {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar__links.is-open .nav-link:last-child {
    border-bottom: none;
}

/* ============================================================
   HERO SECTION — Modern SaaS Layout with Double Glow
   ============================================================ */
.hero-section {
    position: relative;
    background:
        /* Saturated red glow — spreads RIGHT from the image center */
        radial-gradient(
            ellipse 70% 65% at 65% 68%,
            rgba(195, 25, 18, 0.40) 0%,
            rgba(210, 50, 30, 0.28) 18%,
            rgba(225, 80, 55, 0.16) 38%,
            rgba(240, 130, 100, 0.06) 58%,
            transparent 78%
        ),
        /* Orange glow — spreads LEFT from the image center */
        radial-gradient(
            ellipse 70% 65% at 35% 68%,
            rgba(230, 125, 35, 0.40) 0%,
            rgba(238, 150, 55, 0.28) 18%,
            rgba(242, 175, 90, 0.16) 38%,
            rgba(248, 205, 145, 0.06) 58%,
            transparent 78%
        ),
        /* Intersection — where red & orange meet at the top-center above the image */
        radial-gradient(
            ellipse 40% 45% at 50% 48%,
            rgba(222, 90, 40, 0.30) 0%,
            rgba(235, 130, 70, 0.16) 30%,
            rgba(245, 195, 155, 0.06) 55%,
            transparent 75%
        ),
        /* Soft warm base */
        radial-gradient(
            circle at 50% 65%,
            rgba(242, 184, 160, 0.20) 0%,
            rgba(247, 241, 234, 0.10) 40%,
            rgba(247, 241, 234, 0) 70%
        ),
        #f7f1ea;
    overflow: hidden;
    padding-top: 96px;
    padding-bottom: 0;
}

/* Hero content container */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Hero Text Block ── */
.hero-text-block {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 48px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-headline {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}

.hero-sparkle {
    display: inline-block;
    animation: sparkle-float 3s ease-in-out infinite;
    font-size: 0.75em;
}

@keyframes sparkle-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.1); }
}

.hero-subtext {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: #6b7280;
    line-height: 1.8;
    margin: 0 0 36px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-wrap {
    display: flex;
    justify-content: center;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #bc0000 0%, #e06228 100%);
    border-radius: 16px;
    text-decoration: none;
    box-shadow:
        0 4px 16px rgba(188, 0, 0, 0.32),
        0 1px 3px rgba(0,0,0,0.08);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 32px rgba(212, 43, 30, 0.38),
        0 4px 12px rgba(224, 116, 40, 0.28);
}

.hero-cta-btn:active {
    transform: translateY(-1px) scale(0.99);
}

/* ── Hero Visual Container ── */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding-bottom: 0;
}

/* ── Glow Layers ── */
.hero-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

/* Core glow — soft warm peach center */
.hero-glow--core {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 80%;
    height: 75%;
    background:
        radial-gradient(ellipse 60% 55% at 50% 55%,
            rgba(242, 184, 160, 0.40) 0%,
            rgba(245, 214, 198, 0.25) 40%,
            transparent 70%);
    filter: blur(55px);
    opacity: 0.85;
    z-index: 1;
    animation: glow-pulse 8s ease-in-out infinite;
}

/* Mid glow — muted coral spread */
.hero-glow--mid {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -44%);
    width: 110%;
    height: 95%;
    background:
        radial-gradient(ellipse 70% 60% at 50% 55%,
            rgba(233, 106, 75, 0.14) 0%,
            rgba(247, 201, 184, 0.10) 40%,
            transparent 70%);
    filter: blur(70px);
    opacity: 0.80;
    z-index: 1;
    animation: glow-pulse 10s ease-in-out infinite reverse;
}

/* Outer glow — soft warm pink haze */
.hero-glow--outer {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    width: 150%;
    height: 130%;
    background:
        radial-gradient(ellipse 75% 65% at 50% 55%,
            rgba(245, 214, 198, 0.18) 0%,
            rgba(247, 241, 234, 0.10) 50%,
            transparent 78%);
    filter: blur(85px);
    opacity: 0.75;
    z-index: 1;
}

/* Bloom glow — atmospheric creamy haze that melts into page */
.hero-glow--bloom {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -42%);
    width: 190%;
    height: 170%;
    background:
        radial-gradient(ellipse 65% 55% at 50% 55%,
            rgba(247, 201, 184, 0.10) 0%,
            rgba(247, 241, 234, 0.06) 50%,
            transparent 82%);
    filter: blur(110px);
    z-index: 0;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.80; transform: translate(-50%, -42%) scale(1); }
    50% { opacity: 0.92; transform: translate(-50%, -42%) scale(1.03); }
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* ============================================================
   GLOBAL SCROLL-TRIGGERED FADE-UP ANIMATION
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* Underline hover effect for nav links */
.nav-link {
    position: relative;
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
.nav-link:hover {
    color: #d42b1e;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    right: 0;
    background: linear-gradient(135deg, #d42b1e, #e07428);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* ============================================================
   PACKAGES SECTION — 3D Flip Cards
   ============================================================ */

/* Section background */
.packages-section {
    background: #ffffff;
    padding: 96px 0;
    position: relative;
    z-index: 10;
}

.packages-section .container {
    max-width: 1440px;
    padding-left: 48px;
    padding-right: 48px;
}

/* Section tag pill */
.pkg-section-tag {
    display: inline-block;
    padding: 10px 32px;
    border-radius: 999px;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #d42b1e;
    background: rgba(212, 43, 30, 0.08);
    border: 1px solid rgba(212, 43, 30, 0.18);
    text-transform: uppercase;
}

/* Section header */
.section-header {
    text-align: center;
    max-width: 672px;
    margin: 0 auto 80px;
}
.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    margin-top: 16px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #a00020 0%, #d42b1e 40%, #c2185b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (min-width: 768px) {
    .section-title { font-size: 2.25rem; }
}
.section-desc {
    font-size: 1.125rem;
    color: #9ca3af;
}

/* Cards grid — 3 equal columns, center-align on desktop */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
}
@media (max-width: 900px) {
    .pkg-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ── Billing Toggle ── */
.billing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto 40px;
    direction: rtl;
    flex-wrap: wrap;
}
.billing-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #6b7280;
    transition: color 0.3s;
}
.billing-label.active {
    color: #d42b1e;
}
.billing-switch {
    width: 56px;
    height: 30px;
    background: #e5e7eb;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
}
.billing-switch.is-yearly {
    background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%);
}
.billing-switch__thumb {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    transition: transform 0.3s;
}
.billing-switch.is-yearly .billing-switch__thumb {
    transform: translateX(-26px);
}
.billing-save {
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}
.billing-save.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Package Price ── */
.pkg-card__price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin: 10px 0 14px;
    width: 100%;
    justify-content: flex-end;
}
.pkg-card__amount {
    font-size: 2rem;
    font-weight: 800;
    color: #d42b1e;
    transition: opacity 0.25s;
}
.pkg-card__currency {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

/* ── Flip Card Shell ── */
/* Replaced with flat .pkg-card component — no flip functionality */

/* ══════════════════════════════════════════════
   PACKAGE CARDS — Flat single-face design
   ══════════════════════════════════════════════ */
.pkg-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;   /* RTL: content right-aligned */
    text-align: right;
    direction: rtl;
    gap: 0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pkg-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

/* Featured card — stronger border accent */
.pkg-card--featured {
    border: 1.5px solid #e07428;
    box-shadow: 0 8px 32px rgba(212, 43, 30, 0.10);
}
.pkg-card--featured:hover {
    box-shadow: 0 16px 48px rgba(212, 43, 30, 0.16);
}

/* Badge */
.pkg-card__badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 22px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(212, 43, 30, 0.30);
    letter-spacing: 0.02em;
}

/* Title */
.pkg-card__title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 12px 0 8px;
    width: 100%;
}

/* Subtitle */
.pkg-card__subtitle {
    font-size: 0.88rem;
    color: #9ca3af;
    margin: 0 0 24px;
    width: 100%;
    line-height: 1.5;
}

/* Feature list */
.pkg-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 13px;
    flex: 1;
}
.pkg-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.4;
}
.pkg-card__features li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    -webkit-mask-size: cover;
    mask-size: cover;
}

.pkg-card__features--green li::before {
    background: #22c55e;
}

/* CTA button */
.pkg-card__cta {
    display: block;
    width: 100%;
    margin-top: 28px;
    padding: 14px 0;
    border-radius: 14px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #d42b1e;
    background: rgba(212, 43, 30, 0.07);
    border: 1.5px solid rgba(212, 43, 30, 0.20);
    text-decoration: none;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.pkg-card__cta:hover {
    background: rgba(212, 43, 30, 0.13);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 43, 30, 0.18);
}
.pkg-card__cta--featured {
    color: #ffffff;
    background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%);
    border: none;
    box-shadow: 0 4px 16px rgba(212, 43, 30, 0.30);
}
.pkg-card__cta--featured:hover {
    box-shadow: 0 8px 28px rgba(212, 43, 30, 0.40);
    transform: translateY(-3px);
    background: linear-gradient(135deg, #c02418 0%, #cc6620 100%);
}

/* ============================================================
   HERO ILLUSTRATION — warm bloom & edge glow
   ============================================================ */
.hero-illustration {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 20px 20px 0 0;
    filter:
        drop-shadow(0 0 18px rgba(242, 184, 160, 0.22))
        drop-shadow(0 0 45px rgba(245, 214, 198, 0.14))
        drop-shadow(0 0 90px rgba(247, 201, 184, 0.08));
    transition: filter 0.6s ease, transform 0.5s ease;
    vertical-align: bottom;
}
.hero-illustration:hover {
    filter:
        drop-shadow(0 0 24px rgba(242, 184, 160, 0.28))
        drop-shadow(0 0 55px rgba(245, 214, 198, 0.18))
        drop-shadow(0 0 110px rgba(247, 201, 184, 0.12));
    transform: translateY(-3px);
}

/* ── Responsive adjustments ── */
@media (max-width: 768px) {
    .hero-text-block {
        padding-top: 36px;
        padding-bottom: 32px;
    }
    .hero-headline {
        font-size: 2rem;
    }
    .hero-subtext {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }
    .hero-cta-btn {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
    .hero-glow--bloom {
        width: 200%;
        height: 180%;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.65rem;
    }
    .hero-text-block {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}

/* ============================================================
   SERVICES SECTION — خدماتنا
   ============================================================ */
.services-section {
    position: relative;
    background: #ffffff;
    padding: 100px 0 80px;
    overflow: hidden;
    z-index: 10;
}

/* Subtle semicircle background decoration behind the title */
.services-bg-shape {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 240px;
    border-radius: 0 0 480px 480px;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(0, 0, 0, 0.025) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

/* Section Title — gradient text */
.services-title {
    text-align: center;
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 800;
    margin: 0 0 64px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #a00020 0%, #d42b1e 40%, #c2185b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
}

/* Services Grid — 5 columns on desktop */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
    font-weight: 400;
    margin-top: -32px;
    margin-bottom: 40px;
}

/* ── Service Card ── */
.service-card {
    background: #ffffff;
    padding: 36px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(212, 43, 30, 0.10);
}

.icon-box {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(212,43,30,0.10) 0%, rgba(224,116,40,0.12) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    font-size: 28px;
    background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
}

/* ── Services Responsive ── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px 28px;
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 72px 0 56px;
    }
    .services-title {
        margin-bottom: 48px;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        max-width: 100%;
    }
}

/* ============================================================
   SCROLL ENTRANCE ANIMATIONS
   ============================================================ */
.animate-fade-up,
.animate-fade-left,
.animate-fade-right,
.animate-scale {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.animate-fade-up    { transform: translateY(40px); }
.animate-fade-left  { transform: translateX(-40px); }
.animate-fade-right { transform: translateX(40px); }
.animate-scale      { transform: scale(0.95); }

.animate-visible {
    opacity: 1 !important;
    transform: none !important;
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-section {
    padding: 96px 0;
    background: #fff;
    overflow: hidden;
}
.why-row {
    display: flex;
    align-items: center;
    gap: 64px;
    margin-bottom: 80px;
    direction: rtl;
}
.why-row:last-child { margin-bottom: 0; }
.why-row--reverse   { flex-direction: row-reverse; }

.why-visual {
    flex: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-stat-box {
    background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%);
    border-radius: 28px;
    padding: 48px 56px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 60px rgba(212, 43, 30, 0.25);
    min-width: 220px;
}
.why-stat-box .stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}
.why-stat-box .stat-label {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 8px;
    opacity: 0.9;
    display: block;
}

.why-content { flex: 1.4; }
.why-tag {
    display: inline-block;
    background: rgba(212, 43, 30, 0.08);
    color: #d42b1e;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}
.why-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #111827;
    margin: 0 0 14px;
    line-height: 1.35;
}
.why-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.75;
    margin: 0 0 28px;
}
.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}
.why-list li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    -webkit-mask-size: cover;
    mask-size: cover;
}

.why-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
}

@media (max-width: 768px) {
    .why-row, .why-row--reverse {
        flex-direction: column;
        gap: 36px;
        margin-bottom: 56px;
    }
    .why-stat-box { padding: 36px 40px; }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}
.contact-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #f3f4f6;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .contact-card { padding: 48px; }
}
.contact-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%);
    opacity: 0.1;
    border-bottom-left-radius: 9999px;
}
.contact-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}
.contact-title {
    font-size: 1.875rem;
    font-weight: 800;
    margin: 0 0 12px;
    background: linear-gradient(135deg, #a00020 0%, #d42b1e 40%, #c2185b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-muted {
    color: #6b7280;
}
.contact-form {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .form-grid { grid-template-columns: 1fr 1fr; }
}
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}
.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    outline: none;
    transition: all 0.2s;
    background: #f9fafb;
    color: #1f2937;
    font-family: inherit;
    font-size: 1rem;
}
.form-input:focus {
    border-color: #d42b1e;
    box-shadow: 0 0 0 3px rgba(212, 43, 30, 0.15);
    background: #ffffff;
}
.form-input--ltr {
    text-align: right;
}
.form-select {
    appearance: none;
    cursor: pointer;
}
.form-textarea {
    resize: none;
}
.form-submit {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #d42b1e 0%, #e07428 100%);
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1.125rem;
    font-family: inherit;
    transition: all 0.3s;
}
.form-submit:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.form-submit:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(224, 116, 40, 0.3);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    padding: 80px 0;
}
.faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 8px;
}
.faq-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 48px;
    font-size: 1.05rem;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    text-align: right;
    gap: 16px;
}
.faq-question span {
    flex: 1;
}
.faq-icon {
    font-size: 22px;
    color: var(--brand-color);
    transition: transform 0.35s ease;
    flex-shrink: 0;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.faq-answer p {
    color: #4b5563;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    border-top: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    position: relative;
    z-index: 10;
    padding-top: 64px;
    padding-bottom: 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px 48px;
    margin-bottom: 48px;
    text-align: center;
    align-items: start;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
        text-align: right;
    }

    /* Logo col: rightmost in RTL (col 1), spans both rows */
    .footer-col--logo {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    /* Location col: middle (col 2), row 1 */
    .footer-col--location {
        grid-column: 2;
        grid-row: 1;
    }

    /* Contact col: leftmost in RTL (col 3), row 1 */
    .footer-col--contact {
        grid-column: 3;
        grid-row: 1;
    }

    /* Newsletter: spans cols 2–3 (location + contact area), row 2 */
    .footer-newsletter-box {
        grid-column: 2 / 4;
        grid-row: 2;
    }
}

/* ── Newsletter box ── */
.footer-newsletter-box {
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    text-align: right;
}
.footer-newsletter-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}
.footer-newsletter-desc {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 14px;
}
.footer-newsletter-form {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
}
@media (max-width: 767px) {
    .footer-newsletter-form {
        flex-direction: column;
    }
}
.footer-newsletter-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.875rem;
    font-family: inherit;
    background: #fff;
    color: #111827;
    outline: none;
    transition: border-color 0.2s;
    direction: rtl;
    text-align: right;
}
.footer-newsletter-input:focus {
    border-color: #d42b1e;
}
.footer-newsletter-input::placeholder {
    color: #9ca3af;
}
.footer-newsletter-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 11px 22px;
    background: linear-gradient(135deg, #bc0000 0%, #e06228 100%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 14px rgba(188, 0, 0, 0.22);
}
.footer-newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(188, 0, 0, 0.30);
}
.footer-newsletter-btn:active {
    transform: translateY(0);
}
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (min-width: 768px) {
    .footer-col { align-items: flex-start; }
}
.footer-logo {
    margin-bottom: 16px;
    display: inline-block;
}
.footer-logo-img {
    height: 90px;
    width: auto;
}
.footer-text {
    color: #6b7280;
    line-height: 1.625;
    max-width: 384px;
}
.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}
.footer-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-list-item {
    display: flex;
    align-items: center;
    color: #4b5563;
}
.footer-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d42b1e;
    margin-left: 12px;
    flex-shrink: 0;
}
.footer-link {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) {
    .footer-link { justify-content: flex-start; }
}
.footer-link:hover {
    color: #d42b1e;
}
.footer-icon {
    margin-left: 8px;
}
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #9ca3af;
}
@media (min-width: 768px) {
    .footer-bottom { flex-direction: row; }
}
.footer-bottom-links {
    margin-top: 16px;
    display: flex;
    gap: 16px;
}
@media (min-width: 768px) {
    .footer-bottom-links { margin-top: 0; }
}
.footer-bottom-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-link:hover {
    color: #d42b1e;
}

/* ── Social Icons ── */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}
@media (min-width: 768px) {
    .social-icons { justify-content: flex-start; }
}

.social-icon {
    width: 44px;
    height: 44px;
    border: 2px solid transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-image: linear-gradient(#f7f1ea, #f7f1ea),
                      linear-gradient(135deg, #d42b1e, #e07428);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.social-icon i {
    color: var(--brand-color);
    font-size: 17px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #d42b1e, #e07428);
    border-color: transparent;
    transform: scale(1.15);
    box-shadow: 0 0 14px rgba(212, 43, 30, 0.45);
}

.social-icon:hover i {
    color: #ffffff;
}

/* ── Payment Gateway Logos ── */
.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}
@media (min-width: 768px) {
    .payment-logos { justify-content: flex-start; }
}

.payment-logo-item {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
    opacity: 0.72;
    transition: opacity 0.25s ease, filter 0.25s ease;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.10));
}

.payment-logo-item:hover {
    opacity: 1;
    filter: brightness(1.1) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18));
}

.payment-logo-apple { height: 52px; }
.payment-logo-mada  { height: 34px; }

@media (max-width: 575px) {
    .payment-logo-item  { height: 36px; }
    .payment-logo-apple { height: 44px; }
    .payment-logo-mada  { height: 28px; }
    .payment-logos {
        gap: 8px;
    }
}
