/* ============================================================
   ETIHAD LIMITED — DESIGN SYSTEM
   Brand: Deep Purple #2B0A3D + Cyan #7DD3E0
   Font: Cairo (EN + AR)
   RTL: Full support via [dir="rtl"]
   ============================================================ */

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

/* ── CSS Variables ───────────────────────────────────────── */
:root {
    --eth-purple:        #2B0A3D;
    --eth-purple-hover:  #1f0829;
    --eth-purple-light:  #f3eef7;
    --eth-cyan:          #7DD3E0;
    --eth-cyan-hover:    #5bbece;
    --eth-cyan-light:    #eaf8fb;
    --eth-blue:          #6B9BD1;
    --eth-green:         #00B140;
    --eth-white:         #FFFFFF;
    --eth-gray-50:       #F9FAFB;
    --eth-gray-100:      #F3F4F6;
    --eth-gray-200:      #E5E7EB;
    --eth-gray-300:      #D1D5DB;
    --eth-gray-400:      #9CA3AF;
    --eth-gray-600:      #4B5563;
    --eth-gray-700:      #374151;
    --eth-gray-900:      #111827;
    --eth-error:         #EF4444;
    --eth-warning:       #F59E0B;
    --eth-font:          'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --eth-radius-sm:     8px;
    --eth-radius-md:     12px;
    --eth-radius-lg:     16px;
    --eth-radius-xl:     24px;
    --eth-radius-full:   9999px;
    --eth-shadow-sm:     0 1px 3px rgba(0,0,0,0.1);
    --eth-shadow-md:     0 4px 6px rgba(0,0,0,0.1);
    --eth-shadow-lg:     0 10px 25px rgba(0,0,0,0.15);
    --eth-transition:    0.3s ease;
    --eth-container:     1280px;
    --eth-navbar-h:      80px;
}

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

body {
    font-family: var(--eth-font);
    font-size: 16px;
    color: var(--eth-gray-900);
    background: var(--eth-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; }
::-webkit-scrollbar-thumb { background: #888; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--eth-font);
    font-weight: 700;
    line-height: 1.3;
    color: var(--eth-gray-900);
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p  { color: var(--eth-gray-700); line-height: 1.7; }

a { color: var(--eth-cyan); text-decoration: none; transition: color var(--eth-transition); }
a:hover { color: var(--eth-cyan-hover); }

.eth-highlight { color: var(--eth-purple); }
.eth-highlight-cyan { color: var(--eth-cyan); }

/* ── Layout ──────────────────────────────────────────────── */
.eth-container {
    max-width: var(--eth-container);
    margin: 0 auto;
    padding: 0 64px;
}
@media (max-width: 1024px) { .eth-container { padding: 0 24px; } }
@media (max-width: 768px)  { .eth-container { padding: 0 16px; } }

.eth-section         { padding: 80px 0; }
.eth-section-light   { background: var(--eth-gray-50); }
.eth-section-dark    { background: var(--eth-gray-900); }
.eth-section-purple  { background: var(--eth-purple); }

@media (max-width: 768px) { .eth-section { padding: 60px 0; } }

.eth-section-header       { text-align: center; margin-bottom: 56px; }
.eth-section-header h2    { margin-bottom: 12px; }
.eth-section-header p     { font-size: 1.125rem; color: var(--eth-gray-600); max-width: 640px; margin: 0 auto; }

.eth-page-content {
    padding-top: var(--eth-navbar-h);
    min-height: calc(100vh - var(--eth-navbar-h));
}

/* ── Grid ────────────────────────────────────────────────── */
.eth-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.eth-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.eth-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 1024px) {
    .eth-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .eth-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .eth-grid-2,
    .eth-grid-3,
    .eth-grid-4 { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Navbar ──────────────────────────────────────────────── */
.eth-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--eth-navbar-h);
    background: var(--eth-white);
    border-bottom: 1px solid var(--eth-gray-200);
    box-shadow: var(--eth-shadow-sm);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.eth-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.eth-navbar-logo img { height: 44px; width: auto; }

.eth-navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0; padding: 0;
}
.eth-navbar-nav a {
    color: var(--eth-gray-700);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 8px 14px;
    border-radius: var(--eth-radius-sm);
    transition: all var(--eth-transition);
    display: block;
}
.eth-navbar-nav a:hover,
.eth-navbar-nav a.active {
    color: var(--eth-purple);
    background: var(--eth-purple-light);
}

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

.eth-lang-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 7px 14px;
    border: 1px solid var(--eth-gray-200);
    border-radius: var(--eth-radius-full);
    font-family: var(--eth-font);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    background: var(--eth-white);
    color: var(--eth-gray-700);
    transition: all var(--eth-transition);
}
.eth-lang-btn:hover { border-color: var(--eth-cyan); color: var(--eth-purple); }

.eth-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.eth-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--eth-gray-700);
    border-radius: 2px;
    transition: all var(--eth-transition);
}
.eth-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.eth-hamburger.open span:nth-child(2) { opacity: 0; }
.eth-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 1024px) {
    .eth-hamburger { display: flex; }
    .eth-navbar-nav {
        display: none;
        position: fixed;
        top: var(--eth-navbar-h);
        left: 0; right: 0; bottom: 0;
        background: var(--eth-white);
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        overflow-y: auto;
        z-index: 999;
    }
    .eth-navbar-nav.open { display: flex; }
    .eth-navbar-nav a { padding: 14px 16px; font-size: 1rem; border-radius: var(--eth-radius-sm); }
}

/* ── Buttons ─────────────────────────────────────────────── */
.eth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--eth-font);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--eth-radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--eth-transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.eth-btn-primary {
    background: var(--eth-purple);
    color: var(--eth-white);
    border-color: var(--eth-purple);
}
.eth-btn-primary:hover {
    background: var(--eth-purple-hover);
    border-color: var(--eth-purple-hover);
    color: var(--eth-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(43,10,61,0.3);
}

.eth-btn-secondary {
    background: var(--eth-white);
    color: var(--eth-gray-900);
    border-color: var(--eth-gray-300);
}
.eth-btn-secondary:hover {
    background: var(--eth-gray-50);
    border-color: var(--eth-gray-400);
    color: var(--eth-gray-900);
    transform: translateY(-1px);
    box-shadow: var(--eth-shadow-md);
}

.eth-btn-cyan {
    background: var(--eth-cyan);
    color: var(--eth-purple);
    border-color: var(--eth-cyan);
}
.eth-btn-cyan:hover {
    background: var(--eth-cyan-hover);
    border-color: var(--eth-cyan-hover);
    color: var(--eth-purple);
    transform: translateY(-1px);
}

.eth-btn-outline {
    background: transparent;
    color: var(--eth-purple);
    border-color: var(--eth-purple);
}
.eth-btn-outline:hover {
    background: var(--eth-purple);
    color: var(--eth-white);
}

.eth-btn-white {
    background: var(--eth-white);
    color: var(--eth-purple);
    border-color: var(--eth-white);
}
.eth-btn-white:hover {
    background: var(--eth-gray-100);
    color: var(--eth-purple-hover);
}

.eth-btn-danger {
    background: #EF4444;
    color: var(--eth-white);
    border-color: #EF4444;
}
.eth-btn-danger:hover { background: #dc2626; border-color: #dc2626; color: var(--eth-white); }

.eth-btn-sm  { font-size: 0.875rem; padding: 9px 20px; border-radius: var(--eth-radius-sm); }
.eth-btn-lg  { font-size: 1.125rem; padding: 18px 40px; }
.eth-btn-full { width: 100%; }

.eth-btn .eth-arrow { transition: transform var(--eth-transition); }
.eth-btn:hover .eth-arrow { transform: translateX(4px); }
[dir="rtl"] .eth-btn:hover .eth-arrow { transform: translateX(-4px); }

/* ── Hero ─────────────────────────────────────────────────── */
.eth-hero {
    position: relative;
    height: 100vh;
    max-height: 800px;
    min-height: 580px;
    overflow: hidden;
    background: var(--eth-gray-900);
}

.eth-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}
.eth-hero-slide.active { opacity: 1; pointer-events: auto; }

.eth-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 6.5s ease;
}
.eth-hero-slide.active .eth-hero-bg { transform: scale(1); }

.eth-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.97) 0%,
        rgba(255,255,255,0.88) 38%,
        rgba(255,255,255,0.45) 65%,
        rgba(255,255,255,0.05) 100%
    );
}

.eth-hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.eth-hero-text {
    max-width: 620px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.eth-hero-slide.active .eth-hero-text {
    opacity: 1;
    transform: translateX(0);
}

.eth-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--eth-cyan-light);
    color: #0e7a88;
    border: 1px solid var(--eth-cyan);
    border-radius: var(--eth-radius-full);
    padding: 5px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.eth-hero-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--eth-gray-900);
    margin-bottom: 16px;
}

.eth-hero-desc {
    font-size: 1.0625rem;
    color: var(--eth-gray-600);
    margin-bottom: 20px;
    line-height: 1.75;
}

.eth-hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.eth-hero-stat {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--eth-gray-700);
    display: flex;
    align-items: center;
    gap: 6px;
}
.eth-hero-stat::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--eth-cyan);
    flex-shrink: 0;
}

.eth-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.eth-hero-prev,
.eth-hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px; height: 48px;
    background: var(--eth-white);
    border: none;
    border-radius: 50%;
    box-shadow: var(--eth-shadow-md);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--eth-gray-700);
    font-size: 1.25rem;
    transition: all var(--eth-transition);
}
.eth-hero-prev { left: 20px; }
.eth-hero-next { right: 20px; }
.eth-hero-prev:hover,
.eth-hero-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--eth-shadow-lg);
}

.eth-hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 8px;
    align-items: center;
}
.eth-hero-dot {
    height: 8px;
    width: 8px;
    border-radius: var(--eth-radius-full);
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all var(--eth-transition);
    padding: 0;
}
.eth-hero-dot.active {
    background: var(--eth-purple);
    width: 28px;
}

/* ── Service / Feature Cards ─────────────────────────────── */
.eth-card {
    background: var(--eth-white);
    border: 1px solid var(--eth-gray-200);
    border-radius: var(--eth-radius-lg);
    padding: 32px;
    transition: all var(--eth-transition);
}
.eth-card:hover {
    border-color: var(--eth-cyan);
    box-shadow: var(--eth-shadow-lg);
    transform: translateY(-3px);
}
.eth-card-sm { padding: 24px; border-radius: var(--eth-radius-md); }
.eth-card-lg { padding: 48px; }

.eth-icon-box {
    width: 64px; height: 64px;
    background: var(--eth-cyan-light);
    border-radius: var(--eth-radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: transform var(--eth-transition);
    color: var(--eth-purple);
    flex-shrink: 0;
}
.eth-card:hover .eth-icon-box { transform: scale(1.1); }

.eth-icon-circle {
    width: 64px; height: 64px;
    background: var(--eth-purple);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: var(--eth-white);
    flex-shrink: 0;
}

/* ── Page Header (interior pages) ───────────────────────── */
.eth-page-header {
    background: linear-gradient(135deg, var(--eth-purple) 0%, #4a1570 100%);
    padding: 56px 0 48px;
    color: var(--eth-white);
}
.eth-page-header h1 { color: var(--eth-white); font-size: clamp(1.75rem, 3vw, 2.5rem); }
.eth-page-header p  { color: rgba(255,255,255,0.75); margin-top: 8px; }

.eth-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.eth-breadcrumb a { color: rgba(255,255,255,0.6); }
.eth-breadcrumb a:hover { color: var(--eth-cyan); }
.eth-breadcrumb-sep { color: rgba(255,255,255,0.3); }
[dir="rtl"] .eth-breadcrumb-sep { transform: scaleX(-1); }

/* ── CTA Banner ──────────────────────────────────────────── */
.eth-cta-banner {
    background: linear-gradient(135deg, var(--eth-purple) 0%, var(--eth-blue) 100%);
    padding: 72px 0;
    text-align: center;
}
.eth-cta-banner h2 { color: var(--eth-white); margin-bottom: 16px; }
.eth-cta-banner p  { color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 600px; margin: 0 auto 32px; }
.eth-cta-actions   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Forms ───────────────────────────────────────────────── */
.eth-form-group { margin-bottom: 20px; }

.eth-label {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--eth-gray-700);
    margin-bottom: 6px;
}
.eth-required { color: var(--eth-error); margin-inline-start: 2px; }

.eth-input,
.eth-select,
.eth-textarea {
    width: 100%;
    font-family: var(--eth-font);
    font-size: 1rem;
    color: var(--eth-gray-900);
    background: var(--eth-white);
    border: 1px solid var(--eth-gray-300);
    border-radius: var(--eth-radius-sm);
    padding: 0 16px;
    height: 48px;
    transition: all var(--eth-transition);
    outline: none;
    appearance: none;
}
.eth-textarea { height: auto; min-height: 120px; padding: 14px 16px; resize: vertical; }
.eth-input:focus,
.eth-select:focus,
.eth-textarea:focus {
    border-color: var(--eth-purple);
    box-shadow: 0 0 0 3px rgba(43,10,61,0.1);
}
.eth-input.error,
.eth-select.error,
.eth-textarea.error { border-color: var(--eth-error); }

.eth-field-error {
    font-size: 0.8125rem;
    color: var(--eth-error);
    margin-top: 5px;
    display: none;
}
.eth-field-error.show { display: block; }

.eth-input-group { display: flex; }
.eth-input-group .eth-input { border-radius: var(--eth-radius-sm) 0 0 var(--eth-radius-sm); flex: 1; }
.eth-input-group .eth-btn   { border-radius: 0 var(--eth-radius-sm) var(--eth-radius-sm) 0; flex-shrink: 0; }
[dir="rtl"] .eth-input-group .eth-input { border-radius: 0 var(--eth-radius-sm) var(--eth-radius-sm) 0; }
[dir="rtl"] .eth-input-group .eth-btn   { border-radius: var(--eth-radius-sm) 0 0 var(--eth-radius-sm); }

/* Multi-step progress */
.eth-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}
.eth-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    flex: 1;
    max-width: 140px;
}
.eth-step::after {
    content: '';
    position: absolute;
    top: 18px;
    left: calc(50% + 18px);
    right: calc(-50% + 18px);
    height: 2px;
    background: var(--eth-gray-200);
}
.eth-step:last-child::after { display: none; }
.eth-step.done::after { background: var(--eth-green); }
.eth-step.active::after { background: var(--eth-gray-200); }

.eth-step-circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid var(--eth-gray-300);
    background: var(--eth-white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--eth-gray-400);
    transition: all var(--eth-transition);
    z-index: 1;
}
.eth-step.active .eth-step-circle {
    border-color: var(--eth-purple);
    background: var(--eth-purple);
    color: var(--eth-white);
}
.eth-step.done .eth-step-circle {
    border-color: var(--eth-green);
    background: var(--eth-green);
    color: var(--eth-white);
}
.eth-step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--eth-gray-400);
    text-align: center;
    white-space: nowrap;
}
.eth-step.active .eth-step-label { color: var(--eth-purple); }
.eth-step.done .eth-step-label   { color: var(--eth-green); }

/* Service selection cards (step 1) */
.eth-service-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.eth-service-card {
    border: 2px solid var(--eth-gray-200);
    border-radius: var(--eth-radius-md);
    padding: 20px;
    cursor: pointer;
    transition: all var(--eth-transition);
    display: flex;
    align-items: center;
    gap: 16px;
}
.eth-service-card:hover    { border-color: var(--eth-cyan); background: var(--eth-cyan-light); }
.eth-service-card.selected { border-color: var(--eth-purple); background: var(--eth-purple-light); }
.eth-service-card-icon {
    width: 48px; height: 48px;
    border-radius: var(--eth-radius-sm);
    background: var(--eth-cyan-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--eth-purple);
    flex-shrink: 0;
}
.eth-service-card.selected .eth-service-card-icon { background: var(--eth-purple); color: var(--eth-white); }
.eth-service-card-info h4 { font-size: 0.9375rem; margin-bottom: 2px; }
.eth-service-card-info span { font-size: 0.8125rem; color: var(--eth-gray-600); }
@media (max-width: 640px) { .eth-service-cards { grid-template-columns: 1fr; } }

/* ── Badges ──────────────────────────────────────────────── */
.eth-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: var(--eth-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}
.eth-badge-purple  { background: var(--eth-purple-light); color: var(--eth-purple); }
.eth-badge-cyan    { background: var(--eth-cyan-light); color: #0e7a88; border: 1px solid var(--eth-cyan); }
.eth-badge-green   { background: #d1fae5; color: #065f46; }
.eth-badge-orange  { background: #fff7ed; color: #c2410c; }
.eth-badge-red     { background: #fee2e2; color: #991b1b; }
.eth-badge-blue    { background: #dbeafe; color: #1e40af; }
.eth-badge-gray    { background: var(--eth-gray-100); color: var(--eth-gray-600); }
.eth-badge-dark    { background: var(--eth-gray-900); color: var(--eth-white); }

/* Status-specific */
.eth-status-processing    { background: #dbeafe; color: #1e40af; }
.eth-status-in_transit    { background: var(--eth-purple-light); color: var(--eth-purple); }
.eth-status-clearance     { background: #fff7ed; color: #c2410c; }
.eth-status-out_delivery  { background: var(--eth-cyan-light); color: #0e7a88; }
.eth-status-delivered     { background: #d1fae5; color: #065f46; }
.eth-status-cancelled     { background: #fee2e2; color: #991b1b; }

/* Pulse dot */
.eth-pulse {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: eth-pulse-anim 1.5s infinite;
}
@keyframes eth-pulse-anim {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.75); }
}

/* ── Tables ──────────────────────────────────────────────── */
.eth-table-wrap { overflow-x: auto; border-radius: var(--eth-radius-md); border: 1px solid var(--eth-gray-200); }

.eth-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}
.eth-table thead tr { background: var(--eth-gray-50); }
.eth-table th {
    padding: 14px 16px;
    text-align: start;
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--eth-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--eth-gray-200);
    white-space: nowrap;
}
.eth-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--eth-gray-100);
    color: var(--eth-gray-700);
    vertical-align: middle;
}
.eth-table tbody tr:last-child td { border-bottom: none; }
.eth-table tbody tr:hover { background: var(--eth-gray-50); }
.eth-table .text-end { text-align: end; }
.eth-table .text-center { text-align: center; }

/* ── Timeline ─────────────────────────────────────────────── */
.eth-timeline {
    position: relative;
    padding-inline-start: 36px;
}
.eth-timeline::before {
    content: '';
    position: absolute;
    inset-inline-start: 14px;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--eth-gray-200);
}
.eth-timeline-item { position: relative; padding-bottom: 28px; }
.eth-timeline-item:last-child { padding-bottom: 0; }

.eth-tl-dot {
    position: absolute;
    inset-inline-start: -31px;
    top: 0px;
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 2px solid var(--eth-gray-300);
    background: var(--eth-white);
    display: flex; align-items: center; justify-content: center;
    color: var(--eth-gray-400);
    z-index: 1;
    transition: background 0.2s, border-color 0.2s;
}
.eth-tl-dot svg { display: block; flex-shrink: 0; }
.eth-tl-dot.done {
    background: var(--eth-green);
    border-color: var(--eth-green);
    color: var(--eth-white);
}
.eth-tl-dot.current {
    background: var(--eth-purple);
    border-color: var(--eth-purple);
    color: var(--eth-white);
    width: 30px; height: 30px;
    inset-inline-start: -33px;
    top: -2px;
    box-shadow: 0 0 0 5px rgba(43,10,61,0.12);
    animation: tl-pulse 2s infinite;
}
.eth-tl-dot.current svg { width: 16px; height: 16px; }
@keyframes tl-pulse {
    0%, 100% { box-shadow: 0 0 0 5px rgba(43,10,61,0.12); }
    50%       { box-shadow: 0 0 0 9px rgba(43,10,61,0.04); }
}

.eth-tl-title    { font-weight: 700; color: var(--eth-gray-900); margin-bottom: 3px; font-size: 0.9375rem; }
.eth-tl-location { font-size: 0.875rem; color: var(--eth-gray-600); display: flex; align-items: center; gap: 4px; }
.eth-tl-date     { font-size: 0.8125rem; color: var(--eth-gray-400); margin-top: 2px; }
.eth-tl-desc     { font-size: 0.875rem; color: var(--eth-gray-600); margin-top: 4px; }

/* ── Stat Cards ──────────────────────────────────────────── */
.eth-stat-card {
    background: var(--eth-white);
    border: 1px solid var(--eth-gray-200);
    border-radius: var(--eth-radius-lg);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all var(--eth-transition);
}
.eth-stat-card:hover { box-shadow: var(--eth-shadow-md); transform: translateY(-2px); }

.eth-stat-icon {
    width: 52px; height: 52px;
    border-radius: var(--eth-radius-md);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}
.eth-stat-icon-orange  { background: #fff7ed; color: #c2410c; }
.eth-stat-icon-blue    { background: #dbeafe; color: #1e40af; }
.eth-stat-icon-purple  { background: var(--eth-purple-light); color: var(--eth-purple); }
.eth-stat-icon-green   { background: #d1fae5; color: #065f46; }

.eth-stat-number {
    font-size: 1.875rem;
    font-weight: 800;
    line-height: 1;
    color: var(--eth-gray-900);
    margin-bottom: 4px;
}
.eth-stat-label { font-size: 0.875rem; color: var(--eth-gray-600); font-weight: 600; }
.eth-stat-link  { font-size: 0.8125rem; color: var(--eth-cyan); margin-top: 4px; display: inline-block; }

/* ── Toast Notifications ─────────────────────────────────── */
#eth-toast-container {
    position: fixed;
    top: calc(var(--eth-navbar-h) + 16px);
    inset-inline-end: 16px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.eth-toast {
    background: var(--eth-white);
    border-radius: var(--eth-radius-md);
    box-shadow: var(--eth-shadow-lg);
    padding: 14px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 300px;
    max-width: 420px;
    pointer-events: auto;
    border-inline-start: 4px solid var(--eth-gray-300);
    animation: toast-in 0.3s ease forwards;
}
@keyframes toast-in {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}
.eth-toast-success { border-color: var(--eth-green); }
.eth-toast-error   { border-color: var(--eth-error); }
.eth-toast-info    { border-color: var(--eth-blue); }
.eth-toast-warning { border-color: var(--eth-warning); }
.eth-toast-icon    { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
.eth-toast-title   { font-weight: 700; font-size: 0.9375rem; color: var(--eth-gray-900); }
.eth-toast-msg     { font-size: 0.875rem; color: var(--eth-gray-600); margin-top: 2px; }
.eth-toast-close   { margin-inline-start: auto; cursor: pointer; color: var(--eth-gray-400); background: none; border: none; font-size: 1rem; padding: 0; line-height: 1; }

/* ── Modal ───────────────────────────────────────────────── */
.eth-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.eth-modal-backdrop.open { opacity: 1; }

.eth-modal {
    background: var(--eth-white);
    border-radius: var(--eth-radius-lg);
    box-shadow: var(--eth-shadow-lg);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.eth-modal-backdrop.open .eth-modal { transform: scale(1); }

.eth-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 0;
}
.eth-modal-header h3 { font-size: 1.125rem; }
.eth-modal-close {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--eth-gray-100);
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--eth-gray-600);
    font-size: 1.125rem;
    transition: all var(--eth-transition);
}
.eth-modal-close:hover { background: var(--eth-gray-200); color: var(--eth-gray-900); }

.eth-modal-body   { padding: 20px 28px; }
.eth-modal-footer { padding: 0 28px 24px; display: flex; gap: 12px; justify-content: flex-end; }
[dir="rtl"] .eth-modal-footer { flex-direction: row-reverse; }

/* ── Empty State ─────────────────────────────────────────── */
.eth-empty {
    text-align: center;
    padding: 64px 24px;
}
.eth-empty-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    opacity: 0.3;
}
.eth-empty h3 { color: var(--eth-gray-700); margin-bottom: 8px; font-size: 1.25rem; }
.eth-empty p  { color: var(--eth-gray-500); max-width: 360px; margin: 0 auto 24px; }

/* ── Loading ─────────────────────────────────────────────── */
.eth-spinner {
    width: 32px; height: 32px;
    border: 3px solid var(--eth-gray-200);
    border-top-color: var(--eth-purple);
    border-radius: 50%;
    animation: eth-spin 0.7s linear infinite;
    display: inline-block;
}
.eth-spinner-sm { width: 18px; height: 18px; border-width: 2px; }
.eth-spinner-lg { width: 48px; height: 48px; border-width: 4px; }
@keyframes eth-spin { to { transform: rotate(360deg); } }

.eth-skeleton {
    background: linear-gradient(90deg, var(--eth-gray-100) 25%, var(--eth-gray-200) 50%, var(--eth-gray-100) 75%);
    background-size: 200% 100%;
    animation: eth-shimmer 1.4s infinite;
    border-radius: var(--eth-radius-sm);
}
@keyframes eth-shimmer { to { background-position: -200% 0; } }

/* ── Footer ──────────────────────────────────────────────── */
.eth-footer {
    background: #8B9BA8;   /* medium gray-blue */
    color: #4B5563;
    padding: 56px 0 0;
}
.eth-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}
@media (max-width: 1024px) { .eth-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 640px)  { .eth-footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.eth-footer-logo  { height: 38px; margin-bottom: 16px; }
.eth-footer-desc  { color: #4B5563; font-size: 0.9375rem; line-height: 1.7; }

.eth-footer-col h4 {
    color: #2B0A3D;       /* deep purple headings */
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.eth-footer-col ul { list-style: none; padding: 0; margin: 0; }
.eth-footer-col li { margin-bottom: 10px; }
.eth-footer-col a {
    color: #4B5563;
    font-size: 0.9375rem;
    transition: color var(--eth-transition);
    text-decoration: none;
}
.eth-footer-col a:hover { color: #2B0A3D; }  /* purple on hover */

/* Social icons */
.eth-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.eth-social-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(43,10,61,0.1);
    display: flex; align-items: center; justify-content: center;
    color: #4B5563;
    transition: all var(--eth-transition);
    text-decoration: none;
    border: 1px solid #9CA3AF;
}
.eth-social-icon:hover {
    background: #2B0A3D;
    color: var(--eth-white);
    border-color: #2B0A3D;
    transform: translateY(-2px);
}

/* Contact links hover */
.eth-footer-contact a:hover { color: #2B0A3D !important; }

/* Bottom bar */
.eth-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 0.875rem;
    color: #4B5563;
    flex-wrap: wrap;
    gap: 12px;
}
.eth-footer-bottom a {
    color: #4B5563;
    transition: color var(--eth-transition);
    text-decoration: none;
}
.eth-footer-bottom a:hover { color: #2B0A3D; }

/* ── Tracking Search (public /track page) ────────────────── */
.eth-track-hero {
    background: linear-gradient(135deg, var(--eth-purple) 0%, #3d1060 50%, var(--eth-blue) 100%);
    padding: 80px 0 64px;
    text-align: center;
    color: var(--eth-white);
}
.eth-track-hero h1 { color: var(--eth-white); margin-bottom: 12px; }
.eth-track-hero p  { color: rgba(255,255,255,0.75); font-size: 1.125rem; margin-bottom: 32px; }
.eth-track-box {
    max-width: 580px;
    margin: 0 auto;
}
.eth-track-input {
    height: 56px;
    font-size: 1rem;
    border-radius: var(--eth-radius-md) 0 0 var(--eth-radius-md);
    border: none;
    padding: 0 20px 0 52px;
}
.eth-track-input-wrap { position: relative; flex: 1; }
.eth-track-input-icon {
    position: absolute;
    inset-inline-start: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--eth-gray-400);
    font-size: 1.125rem;
    pointer-events: none;
}
.eth-track-btn {
    height: 56px;
    border-radius: 0 var(--eth-radius-md) var(--eth-radius-md) 0;
    padding: 0 28px;
    font-size: 1rem;
}
[dir="rtl"] .eth-track-input { border-radius: 0 var(--eth-radius-md) var(--eth-radius-md) 0; padding: 0 52px 0 20px; }
[dir="rtl"] .eth-track-btn   { border-radius: var(--eth-radius-md) 0 0 var(--eth-radius-md); }
[dir="rtl"] .eth-track-input-icon { inset-inline-start: auto; inset-inline-end: 16px; }

/* ── Comparison Table (services page) ────────────────────── */
.eth-compare-table th { text-align: start; }
.eth-compare-table td:first-child { font-weight: 600; color: var(--eth-gray-900); }
.eth-compare-table tr:nth-child(even) td { background: var(--eth-gray-50); }

/* ── Process Steps ───────────────────────────────────────── */
.eth-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.eth-process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 18px);
    right: calc(12.5% + 18px);
    height: 2px;
    background: var(--eth-gray-200);
}
.eth-process-step { text-align: center; padding: 0 16px; }
.eth-process-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--eth-purple);
    color: var(--eth-white);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}
.eth-process-step h4 { font-size: 0.9375rem; margin-bottom: 8px; }
.eth-process-step p  { font-size: 0.875rem; color: var(--eth-gray-600); }
@media (max-width: 768px) {
    .eth-process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .eth-process-steps::before { display: none; }
}

/* ── RTL ─────────────────────────────────────────────────── */
[dir="rtl"] {
    text-align: right;
}
[dir="rtl"] .eth-hero-overlay {
    background: linear-gradient(
        to left,
        rgba(255,255,255,0.97) 0%,
        rgba(255,255,255,0.88) 38%,
        rgba(255,255,255,0.45) 65%,
        rgba(255,255,255,0.05) 100%
    );
}
[dir="rtl"] .eth-hero-text { transform: translateX(20px); }
[dir="rtl"] .eth-hero-slide.active .eth-hero-text { transform: translateX(0); }
[dir="rtl"] .eth-hero-prev { left: auto; right: 20px; }
[dir="rtl"] .eth-hero-next { right: auto; left: 20px; }
[dir="rtl"] .eth-footer-grid { direction: rtl; }
[dir="rtl"] .eth-timeline::before { inset-inline-start: 14px; }
[dir="rtl"] #eth-toast-container { inset-inline-end: 16px; }

/* Arabic typography boost */
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3 { font-weight: 800; letter-spacing: 0; }

/* ── Responsive Utilities ────────────────────────────────── */
@media (max-width: 768px) {
    .eth-hide-mobile { display: none !important; }
    .eth-hero-stats  { gap: 12px; }
    .eth-hero-actions { flex-direction: column; }
    .eth-hero-actions .eth-btn { width: 100%; }
    .eth-cta-actions { flex-direction: column; align-items: center; }
    .eth-modal { max-width: 100%; margin: 0; border-radius: var(--eth-radius-lg) var(--eth-radius-lg) 0 0; align-self: flex-end; }
    .eth-modal-backdrop { align-items: flex-end; padding: 0; }
}
@media (min-width: 769px) {
    .eth-hide-desktop { display: none !important; }
}


/* ============================================================
   ODOO WEBSITE OVERRIDE — hide default Odoo chrome
   ============================================================ */

/* Hide Odoo default header */
#top,
.o_main_navbar,
header#top,
.o_website_preview #top,
div#wrapwrap > header { display: none !important; }

/* Hide Odoo default footer */
#bottom,
footer#bottom,
div#wrapwrap > footer { display: none !important; }

/* Remove Odoo's body padding-top that compensates for its header */
body { padding-top: 0 !important; }

/* Remove Odoo wrapwrap constraints */
#wrapwrap {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Ensure our navbar sits on top */
.eth-navbar {
    z-index: 1050 !important;
}

/* Fix Odoo's default link color overrides */
.eth-navbar a,
.eth-footer a,
.eth-btn,
.eth-card a {
    text-decoration: none !important;
}

/* Reset Odoo's bootstrap button interference */
.eth-btn {
    box-shadow: none !important;
}
.eth-btn:focus,
.eth-btn:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Fix Odoo default form styling */
.eth-input:focus,
.eth-select:focus,
.eth-textarea:focus {
    box-shadow: 0 0 0 3px rgba(43,10,61,0.1) !important;
    border-color: var(--eth-purple) !important;
    outline: none !important;
}

/* Ensure Cairo font overrides Odoo's Lato/Bootstrap */
body,
h1, h2, h3, h4, h5, h6,
p, a, button, input, select, textarea, label {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}
