/* ═══════════════════════════════════════════════════════════════════════
   FZ3A — "Pro Max" Premium Dark Theme
   RTL-First · Glassmorphism · Micro-Interactions
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ──────────────────────────────────────────────────── */
:root {
    /* Surfaces */
    --bg-body: #0b0f19;
    --bg-darker: #0f172a;
    --bg-card: #1e293b;
    --bg-card-hover: #253349;
    --bg-elevated: rgba(30, 41, 59, 0.75);

    /* Text */
    --text-white: #f1f5f9;
    --text-light: #94a3b8;
    --text-muted: #64748b;

    /* Accent — Emerald glow */
    --accent: #10b981;
    --accent-hover: #34d399;
    --accent-glow: rgba(16, 185, 129, 0.30);
    --accent-dim: rgba(16, 185, 129, 0.10);

    /* Semantic */
    --danger: #ef4444;
    --warning: #f59e0b;
    --success: #10b981;
    --info: #06b6d4;

    /* Borders */
    --border-color: rgba(148, 163, 184, 0.12);
    --border-accent: rgba(16, 185, 129, 0.35);

    /* Glass */
    --glass-bg: rgba(15, 23, 42, 0.60);
    --glass-border: rgba(148, 163, 184, 0.08);
    --glass-blur: 12px;

    /* Typography */
    --font-family: 'Cairo', sans-serif;

    /* Motion */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
}

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

/* ─── Hidden Scrollbars (functional scroll preserved) ────────────────── */
::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html {
    scroll-behavior: smooth;
}

/* ─── Base ───────────────────────────────────────────────────────────── */
body {
    background-color: var(--bg-body);
    color: var(--text-white);
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Ambient background glow animation */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -30%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    animation: ambientFloat 20s ease-in-out infinite alternate;
}

@keyframes ambientFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-15%, 10%) scale(1.15);
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   HEADER — Glassmorphism sticky bar
   ═══════════════════════════════════════════════════════════════════════ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.85rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

/* Logo — wrappable in <a> */
.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo,
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.logo-text-ar {
    background: linear-gradient(135deg, var(--accent) 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon {
    color: var(--accent);
    filter: drop-shadow(0 0 6px var(--accent-glow));
}

.logo-text-en {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar a {
    position: relative;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.navbar a:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.04);
}

.navbar a.active {
    color: var(--accent);
    background: var(--accent-dim);
}

.navbar a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    inset-inline-start: 25%;
    width: 50%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════════════════════════════════ */
.main-content {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 4rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO SECTION (Home / Reviews / Contact)
   ═══════════════════════════════════════════════════════════════════════ */
.hero {
    text-align: center;
    padding: 3rem 1.5rem;
    animation: fadeSlideUp 0.6s var(--transition) both;
}

.hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--text-white) 40%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.9;
}

/* CTA buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 34px;
    border: none;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
    color: #fff;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition), opacity var(--transition-fast);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-primary:active:not(:disabled) {
    transform: scale(0.98) translateY(0);
}

.btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-light);
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}

.btn-secondary:active {
    transform: scale(0.98);
}

/* Utility */
.mt-20 {
    margin-top: 20px;
}

/* ═══════════════════════════════════════════════════════════════════════
   WIZARD CONTAINER
   ═══════════════════════════════════════════════════════════════════════ */
.wizard-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.30);
    position: relative;
    overflow: hidden;
}

/* Decorative top glow */
.wizard-container::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════════════════════
   STEPPER (Progress bar)
   ═══════════════════════════════════════════════════════════════════════ */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    min-width: 56px;
    transition: all var(--transition);
}

.stepper-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid var(--border-color);
    background: var(--bg-darker);
    color: var(--text-muted);
    transition: all var(--transition);
}

.stepper-step.active .stepper-circle {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 16px var(--accent-glow);
}

.stepper-step.completed .stepper-circle {
    border-color: var(--accent);
    background: var(--accent-dim);
    color: var(--accent);
}

.stepper-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    transition: color var(--transition);
    white-space: nowrap;
}

.stepper-step.active .stepper-label {
    color: var(--accent);
    font-weight: 700;
}

.stepper-step.completed .stepper-label {
    color: var(--text-light);
}

.stepper-line {
    flex: 1;
    height: 2px;
    min-width: 20px;
    background: var(--border-color);
    border-radius: 2px;
    transition: background var(--transition-slow);
    margin: 0 4px;
    align-self: flex-start;
    margin-top: 18px;
}

.stepper-line.completed {
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
}

/* ═══════════════════════════════════════════════════════════════════════
   WIZARD STEPS
   ═══════════════════════════════════════════════════════════════════════ */
.wizard-step,
.step {
    display: none;
}

.wizard-step.active,
.step.active {
    display: block;
    animation: wizardFadeIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes wizardFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

/* Step heading */
.step-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.step-heading h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.5;
}

.step-heading h2 strong {
    color: var(--accent);
}

.step-heading-icon {
    display: none;
    /* Icons handled inline */
}

/* ═══════════════════════════════════════════════════════════════════════
   OPTIONS GRID (device / brand / model / issues)
   ═══════════════════════════════════════════════════════════════════════ */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
}

.option-card {
    background: var(--bg-darker);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.25rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    user-select: none;
    position: relative;
    overflow: hidden;
}

/* Subtle inner shimmer on hover */
.option-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, var(--accent-dim) 100%);
    opacity: 0;
    transition: opacity var(--transition);
}

.option-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

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

.option-card:active {
    transform: scale(0.97) translateY(0);
}

.option-card.selected {
    border-color: var(--accent);
    background: var(--accent-dim);
    box-shadow: 0 0 20px var(--accent-glow), inset 0 0 30px var(--accent-dim);
}

.option-card.selected::after {
    content: '✓';
    position: absolute;
    top: 8px;
    inset-inline-end: 10px;
    width: 22px;
    height: 22px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.option-icon {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    transition: color var(--transition-fast);
}

.option-card.selected .option-icon {
    color: var(--accent);
}

.option-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(0.85);
    transition: filter var(--transition-fast);
}

.option-card.selected .option-icon img {
    filter: brightness(0) invert(1);
}

.option-label {
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-light);
    transition: color var(--transition-fast);
    line-height: 1.4;
}

.option-card.selected .option-label {
    color: var(--text-white);
}

/* ═══════════════════════════════════════════════════════════════════════
   SEARCH SECTION (model step)
   ═══════════════════════════════════════════════════════════════════════ */
.search-section {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-main {
    flex: 1;
    min-width: 0;
}

.search-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.search-label strong {
    color: var(--accent);
}

.search-input-wrap {
    position: relative;
}

.search-input-wrap input {
    width: 100%;
    padding: 14px 50px 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-darker);
    color: var(--text-white);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition);
}

[dir="rtl"] .search-input-wrap input {
    padding: 14px 18px 14px 50px;
}

.search-input-wrap input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 16px var(--accent-glow);
}

.search-input-wrap input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    position: absolute;
    top: 50%;
    inset-inline-end: 14px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
    padding: 4px;
}

.search-btn:hover {
    color: var(--accent);
}

/* Search results dropdown */
.search-results {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    inset-inline-end: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    max-height: 260px;
    overflow-y: auto;
    display: none;
    z-index: 20;
}

.search-results.active {
    display: block;
    animation: slideDown 0.2s ease-out both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

.search-result-item {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--accent-dim);
    color: var(--accent);
}

/* Find My Model Button */
.find-model-btn {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-family: var(--font-family);
    transition: all var(--transition-fast);
    text-align: center;
    min-width: 100px;
}

.find-model-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}

.find-model-icon {
    position: relative;
    color: inherit;
}

.find-model-icon svg {
    width: 40px;
    height: 40px;
}

.question-badge {
    position: absolute;
    top: -4px;
    inset-inline-end: -6px;
    width: 20px;
    height: 20px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.find-model-label {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Or Divider */
.or-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.or-divider .dot {
    display: none;
}

.or-divider strong {
    color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════════════
   FORM INPUTS (Contact step)
   ═══════════════════════════════════════════════════════════════════════ */
.input-group {
    margin-bottom: 1.25rem;
}

.input-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-darker);
    color: var(--text-white);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition);
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 14px var(--accent-glow);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════
   PRICE ESTIMATE CARD (Contact step)
   ═══════════════════════════════════════════════════════════════════════ */
.price-estimate-card {
    background: var(--bg-darker) !important;
    border: 1px solid var(--border-accent) !important;
    box-shadow: 0 0 24px var(--accent-glow) !important;
}

/* ═══════════════════════════════════════════════════════════════════════
   NAVIGATION BUTTONS
   ═══════════════════════════════════════════════════════════════════════ */
.navigation-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* ═══════════════════════════════════════════════════════════════════════
   SUCCESS MESSAGE
   ═══════════════════════════════════════════════════════════════════════ */
.success-message {
    text-align: center;
    padding: 2rem 1rem;
    animation: wizardFadeIn 0.6s ease both;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #059669);
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 40px var(--accent-glow);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {

    0%,
    100% {
        box-shadow: 0 0 20px var(--accent-glow);
    }

    50% {
        box-shadow: 0 0 50px var(--accent-glow);
    }
}

.success-message h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.success-message p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 420px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════
   MODAL — Find My Model
   ═══════════════════════════════════════════════════════════════════════ */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    width: 92%;
    max-width: 520px;
    max-height: 88vh;
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    z-index: 201;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
}

.modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.close-modal {
    position: absolute;
    top: 14px;
    inset-inline-end: 16px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
}

.modal h2 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    color: var(--text-white);
}

.modal h2 strong {
    color: var(--accent);
}

/* Modal Tabs */
.modal-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 1.25rem;
}

.modal-tab {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-family);
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-tab:hover {
    border-color: var(--accent);
    color: var(--text-light);
}

.modal-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Modal tab content */
.modal-tab-content {
    display: none;
}

.modal-tab-content.active {
    display: block;
    animation: wizardFadeIn 0.3s ease both;
}

/* Guide steps */
.guide-step {
    background: var(--bg-darker);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    border: 1px solid var(--border-color);
}

.guide-step-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guide-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.guide-step p strong {
    color: var(--text-white);
}

/* ═══════════════════════════════════════════════════════════════════════
   LANGUAGE TOGGLE BUTTON — Premium Pill
   ═══════════════════════════════════════════════════════════════════════ */
.lang-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-light);
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    white-space: nowrap;
}

.lang-toggle-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
    box-shadow: 0 0 14px var(--accent-glow);
}

.lang-toggle-btn .lang-globe-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   UNAVAILABLE SERVICE — Red overlay
   ═══════════════════════════════════════════════════════════════════════ */
.option-card.unavailable-service {
    cursor: not-allowed;
    opacity: 0.55;
    position: relative;
}

.option-card.unavailable-service:hover {
    border-color: var(--danger);
    transform: none;
    box-shadow: 0 0 18px rgba(239, 68, 68, 0.25);
}

.option-card.unavailable-service:hover::before {
    background: linear-gradient(135deg, transparent 30%, rgba(239, 68, 68, 0.08) 100%);
    opacity: 1;
}

.unavailable-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(239, 68, 68, 0.10);
    border-radius: inherit;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 5;
}

.option-card.unavailable-service:hover .unavailable-overlay {
    display: flex;
}

.unavailable-x {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--danger);
    line-height: 1;
}

.unavailable-text {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--danger);
    text-align: center;
    padding: 0 8px;
}

/* ═══════════════════════════════════════════════════════════════════════
   QUALITY CARDS — Selected state
   ═══════════════════════════════════════════════════════════════════════ */
.quality-option-card.selected {
    border-color: var(--accent);
    background: var(--accent-dim);
    box-shadow: 0 0 18px var(--accent-glow);
}

.q-part-type {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════
   CONTACT PAGE — Fix centering
   ═══════════════════════════════════════════════════════════════════════ */
.hero {
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */

/* Tablets */
@media (min-width: 640px) {
    .wizard-container {
        padding: 3rem 2.5rem;
    }

    .options-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }

    .stepper {
        gap: 0;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .main-content {
        max-width: 1080px;
        padding: 3rem 2rem 5rem;
    }

    .options-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

/* Mobile Nav */
@media (max-width: 768px) {
    .header {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
        gap: 8px;
    }

    .navbar {
        width: 100%;
        gap: 4px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .navbar a {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .wizard-container {
        padding: 1.75rem 1.25rem;
        border-radius: var(--radius);
    }

    .stepper {
        margin-bottom: 1.75rem;
    }

    .stepper-circle {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .stepper-label {
        font-size: 0.6rem;
    }

    .stepper-line {
        min-width: 12px;
        margin-top: 14px;
    }

    .step-heading h2 {
        font-size: 1.15rem;
    }

    .options-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }

    .option-card {
        padding: 1rem 0.75rem;
    }

    .search-section {
        flex-direction: column;
    }

    .find-model-btn {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        min-width: auto;
    }

    .find-model-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Very small screens */
@media (max-width: 400px) {
    .logo {
        font-size: 1.15rem;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .wizard-container {
        padding: 1.25rem 1rem;
    }

    .stepper-label {
        display: none;
    }
}