/* ===== Google Font Import ===== */
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@400;500;600;700;800;900&family=Cairo:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* ================= BRAND PALETTE — غيّر ألوان الموقع من هنا ================= */
  --primary: #0b63ce;
  --secondary: #2563eb;
  --blue-deep: #004ce6;
  --blue-700: #1d4ed8;
  --blue-800: #084ca4;
  --blue-900: #1e40af;
  --navy: #0f223a;
  --sky: #38bdf8;
  --cyan: #0284c7;
  --cyan-bright: #00a2e8;
  --blue-soft: #60a5fa;
  --white: #ffffff;
  --bg: #f8fafc;
  --bg-subtle: #f1f5f9;
  --border-soft: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #334155;
  --gray-400: #9ca3af;
  --gray-neutral: #555555;
  --near-black: #1a1a1a;
  --ink: #0b1931;
  --ink-900: #0b0f19;
  --ink-950: #090d16;
  --gray-900: #111827;
  --gray-850: #0f172a;
  --slate-800: #1e293b;
  --green: #10b981;
  --green-dark: #059669;
  --orange: #ff6b00;
  --orange-warm: #ea580c;
  --whatsapp: #25d366;
  --purple: #7c3aed;
  --primary-rgb: 11, 99, 206;
  --secondary-rgb: 37, 99, 235;
  --sky-rgb: 56, 189, 248;
  /* ========================================================================= */

    --font-primary: 'Cairo', 'Alexandria', -apple-system, sans-serif;
    --bg-body: #f8fafc;
    --bg-header: #ffffff;
    --bg-card: #ffffff;
    --bg-card-subtle: #f1f5f9;
    --bg-input: #ffffff;
    --text-primary: #0b1931;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --border-color: rgba(226, 232, 240, 0.8);
    --border-subtle: #f1f5f9;
    --border-gradient: linear-gradient(135deg, rgba(11, 99, 206, 0.25), rgba(15, 34, 58, 0.25));
    --shadow-sm: 0 4px 15px rgba(11, 25, 49, 0.04);
    --shadow-md: 0 15px 35px rgba(11, 25, 49, 0.06);
    --shadow-lg: 0 20px 45px rgba(11, 25, 49, 0.12);
    --shadow-ambient: 0 12px 32px -8px rgba(11, 25, 49, 0.07);
    --shadow-glow: 0 0 25px rgba(11, 99, 206, 0.22);
    --shadow-card-hover: 0 22px 45px -10px rgba(11, 25, 49, 0.1), 0 0 18px rgba(11, 99, 206, 0.08);
    --gradient-primary: linear-gradient(135deg, #0b63ce 0%, #004ce6 100%);
    --gradient-accent: linear-gradient(135deg, #0f223a 0%, #1e40af 100%);
    --gradient-hero: linear-gradient(135deg, #0b63ce 0%, #38bdf8 50%, #0f223a 100%);
    --gradient-text-light: linear-gradient(135deg, #0b1931 0%, #0b63ce 100%);
    --accent-orange: #0f223a;
}

[data-theme="dark"] {
    --bg-body: #0b0f19;
    --bg-header: #111827;
    --bg-card: #151d2a;
    --bg-card-subtle: #111827;
    --bg-input: #1f2937;
    --text-primary: #f8fafc;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.12);
    --border-subtle: #243044;
    --border-gradient: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(255, 107, 0, 0.3));
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.5);
    --shadow-ambient: 0 12px 32px -8px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 25px rgba(56, 189, 248, 0.28);
    --shadow-card-hover: 0 22px 45px -10px rgba(0, 0, 0, 0.75), 0 0 20px rgba(56, 189, 248, 0.12);
    --gradient-text-light: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
}

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

body,
button,
input,
textarea,
select {
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html,
body {
    overflow-x: hidden;
}

body {
    background: var(--bg-body);
    color: var(--text-secondary);
    line-height: 1.7;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Global Spacing for Headings */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

h1, h2, h3 {
    margin-top: 1rem;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Theme Toggle Button & Nav Controls ===== */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 16px;
}

.theme-toggle-btn {
    background: var(--bg-card-subtle);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-sm);
    margin-right: 0;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.theme-toggle-btn:hover {
    transform: scale(1.1) rotate(15deg);
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.theme-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.theme-icon-light {
    display: none;
}

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

[data-theme="dark"] .theme-icon-light {
    display: inline-block;
    color: #fbbf24;
}

/* ===== Site Header & Navbar ===== */
.site-header {
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

/* ==================== LUXURY LOGO SYSTEM ==================== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-mark-wrap {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    filter: drop-shadow(0 4px 12px rgba(11, 99, 206, 0.38));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}

.logo-mark-wrap img, .logo-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo:hover .logo-mark-wrap {
    transform: scale(1.12) rotate(-5deg);
    filter: drop-shadow(0 8px 20px rgba(11, 99, 206, 0.6));
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}

.logo-main-title {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Cairo', system-ui, sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.brand-eg {
    background: linear-gradient(135deg, #0b63ce 0%, #0284c7 60%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.brand-siana {
    color: var(--text-primary, #0f172a);
    font-weight: 800;
    transition: color 0.3s ease;
}

[data-theme="dark"] .brand-siana {
    color: #f8fafc;
}

.logo-subtitle-tag {
    font-size: 10px;
    font-weight: 700;
    color: #0b63ce;
    background: rgba(11, 99, 206, 0.08);
    border: 1px solid rgba(11, 99, 206, 0.22);
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    width: fit-content;
    transition: all 0.3s ease;
}

[data-theme="dark"] .logo-subtitle-tag {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
    border-color: rgba(56, 189, 248, 0.3);
}

.logo:hover .logo-subtitle-tag {
    background: #0b63ce;
    color: #ffffff;
    border-color: #0b63ce;
    box-shadow: 0 2px 8px rgba(11, 99, 206, 0.3);
}

/* Fallback legacy logo icon enhancement */
.logo > i.fa-screwdriver-wrench {
    font-size: 26px !important;
    background: linear-gradient(135deg, #0b63ce 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 6px rgba(11, 99, 206, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover > i.fa-screwdriver-wrench {
    transform: rotate(15deg) scale(1.1);
}


.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--text-primary);
    transition: transform 0.2s ease;
}

.nav-toggle:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.nav-menu .nav-item:first-child {
    margin-right: auto;
}

.nav-link {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2.5px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-menu .nav-item-btn {
    margin-right: auto;
}

.btn-signup,
.hotline-btn {
    background: linear-gradient(135deg, var(--primary, #0b63ce) 0%, var(--blue-800, #0052cc) 100%) !important;
    color: #ffffff !important;
    padding: 8px 18px 8px 22px !important;
    border-radius: 999px !important;
    font-size: 15.5px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(var(--primary-rgb, 11, 99, 206), 0.35), 0 3px 10px rgba(var(--primary-rgb, 11, 99, 206), 0.2) !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    border: none !important;
    white-space: nowrap !important;
    position: relative !important;
    overflow: visible !important;
}

.btn-signup:hover,
.hotline-btn:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 12px 30px rgba(var(--primary-rgb, 11, 99, 206), 0.45) !important;
    color: #ffffff !important;
}

.hotline-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #ffffff;
    position: relative;
    flex-shrink: 0;
}

.hotline-online-dot {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10b981;
    border: 1.5px solid #0052cc;
    box-shadow: 0 0 6px #10b981;
}

.hotline-btn:hover .hotline-icon-wrap {
    transform: rotate(15deg) scale(1.15);
    background: rgba(255, 255, 255, 0.35);
}

.hotline-pulse {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: hotlinePulseAnim 1.8s infinite;
}

@keyframes hotlinePulseAnim {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

/* ===== Dark Mode Header Buttons (Exact Match to Design) ===== */
[data-theme="dark"] .btn-signup,
[data-theme="dark"] .hotline-btn,
[data-theme="dark"] .hotline-btn-primary,
[data-theme="dark"] .btn-hero-primary,
[data-theme="dark"] .btn-primary,
[data-theme="dark"] .btn-submit,
[data-theme="dark"] .btn-submit-booking,
[data-theme="dark"] .btn-about-cta,
[data-theme="dark"] .btn-appliances-cta,
[data-theme="dark"] .banner-btn,
[data-theme="dark"] .banner-call-btn,
[data-theme="dark"] .btn-pastel-primary,
[data-theme="dark"] .btn-pastel-call,
[data-theme="dark"] .btn-compact-call,
[data-theme="dark"] .devices-view-all-btn,
[data-theme="dark"] .channel-btn.phone-btn,
[data-theme="dark"] .branch-action-btn.call-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.6), 0 4px 15px rgba(37, 99, 235, 0.35) !important;
}

[data-theme="dark"] .btn-signup:hover,
[data-theme="dark"] .hotline-btn:hover,
[data-theme="dark"] .hotline-btn-primary:hover,
[data-theme="dark"] .btn-hero-primary:hover,
[data-theme="dark"] .btn-primary:hover,
[data-theme="dark"] .btn-submit:hover,
[data-theme="dark"] .btn-submit-booking:hover,
[data-theme="dark"] .btn-about-cta:hover,
[data-theme="dark"] .btn-appliances-cta:hover,
[data-theme="dark"] .banner-btn:hover,
[data-theme="dark"] .banner-call-btn:hover,
[data-theme="dark"] .btn-pastel-primary:hover,
[data-theme="dark"] .btn-pastel-call:hover,
[data-theme="dark"] .btn-compact-call:hover,
[data-theme="dark"] .devices-view-all-btn:hover,
[data-theme="dark"] .channel-btn.phone-btn:hover,
[data-theme="dark"] .branch-action-btn.call-btn:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.7), 0 6px 20px rgba(59, 130, 246, 0.45) !important;
    transform: translateY(-2px) scale(1.02) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .theme-toggle-btn {
    background: rgba(15, 23, 42, 0.95) !important;
    border: 1.5px solid rgba(56, 189, 248, 0.45) !important;
    color: #f59e0b !important;
    box-shadow: 0 0 14px rgba(245, 158, 11, 0.25) !important;
}

[data-theme="dark"] .theme-toggle-btn:hover {
    background: rgba(30, 41, 59, 0.95) !important;
    color: #fbbf24 !important;
    border-color: rgba(56, 189, 248, 0.75) !important;
    box-shadow: 0 0 22px rgba(245, 158, 11, 0.45) !important;
    transform: scale(1.08) rotate(15deg) !important;
}

[data-theme="dark"] .btn-hero-secondary,
[data-theme="dark"] .btn-cta-ghost {
    background: rgba(30, 41, 59, 0.8) !important;
    color: #f8fafc !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .btn-hero-secondary:hover,
[data-theme="dark"] .btn-cta-ghost:hover {
    background: rgba(56, 189, 248, 0.15) !important;
    border-color: #38bdf8 !important;
    color: #38bdf8 !important;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3) !important;
}

[data-theme="dark"] .btn-cta-white {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(56, 189, 248, 0.35) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(56, 189, 248, 0.2) !important;
}

[data-theme="dark"] .btn-cta-white:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: #ffffff !important;
    border-color: rgba(56, 189, 248, 0.6) !important;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5), 0 0 25px rgba(56, 189, 248, 0.4) !important;
}

[data-theme="dark"] .btn-load-more-brands {
    background: rgba(30, 41, 59, 0.8) !important;
    color: #38bdf8 !important;
    border: 1px solid rgba(56, 189, 248, 0.3) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .btn-load-more-brands:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #0284c7 100%) !important;
    color: #ffffff !important;
    border-color: rgba(56, 189, 248, 0.6) !important;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4) !important;
}

[data-theme="dark"] .channel-btn.whatsapp-btn,
[data-theme="dark"] .hotline-btn-whatsapp,
[data-theme="dark"] .branch-action-btn.whatsapp-btn {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(16, 185, 129, 0.5) !important;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35) !important;
}

[data-theme="dark"] .channel-btn.whatsapp-btn:hover,
[data-theme="dark"] .hotline-btn-whatsapp:hover,
[data-theme="dark"] .branch-action-btn.whatsapp-btn:hover {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%) !important;
    border-color: rgba(52, 211, 153, 0.7) !important;
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5) !important;
}


.dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 10px;
    margin-right: 6px;
    transition: transform 0.25s ease;
}

.dropdown:hover .dropdown-icon,
.dropdown.open .dropdown-icon,
.dropdown.is-open .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu.mega-dropdown {
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translateX(50%) translateY(12px);
    background: var(--bg-header);
    width: 620px;
    box-shadow: var(--shadow-lg);
    border-radius: 20px;
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 250;
    border: 1px solid var(--border-color);
    text-align: right;
    display: block;
}

.dropdown:hover .dropdown-menu.mega-dropdown,
.dropdown:focus-within .dropdown-menu.mega-dropdown,
.dropdown.open .dropdown-menu.mega-dropdown,
.dropdown.is-open .dropdown-menu.mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(50%) translateY(0);
}

/* Dropdown Header */
.mega-dropdown .dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.mega-dropdown .header-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mega-dropdown .header-badge-icon {
    width: 36px;
    height: 36px;
    background: rgba(var(--secondary-rgb), 0.12);
    color: var(--secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.mega-dropdown .header-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
}

.mega-dropdown .header-tag {
    background: var(--bg-card-subtle);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

/* Dropdown Body Layout */
.mega-dropdown-body {
    display: grid;
    grid-template-columns: 1fr 185px;
    gap: 16px;
    align-items: stretch;
}

/* Brands 2-Column Grid */
.brands-mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    background: var(--bg-card-subtle);
    border: 1px solid var(--border-subtle);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.brand-item:hover {
    background: var(--bg-card);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.brand-badge {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-card);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.brand-item:hover .brand-badge {
    background: var(--secondary);
    color: var(--white);
}

.brand-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.brand-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0;
    padding: 0;
}

.brand-tag {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 3px;
    font-weight: 500;
    line-height: 1.2;
}

/* Callout Box - Dark Navy Blue */
.mega-dropdown-callout {
    background: linear-gradient(135deg, #0b132b 0%, #1c2541 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 25px -5px rgba(11, 19, 43, 0.25);
    box-sizing: border-box;
}

.callout-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.callout-title i {
    color: var(--blue-soft);
    font-size: 14px;
}

.callout-desc {
    font-size: 11px;
    color: var(--slate-400);
    line-height: 1.5;
    margin-bottom: 14px;
}

.callout-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: var(--secondary);
    color: var(--white);
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(var(--secondary-rgb), 0.3);
}

.callout-link:hover {
    background: #3b82f6;
    transform: translateY(-1px);
}

/* Dropdown Footer */
.mega-dropdown .dropdown-footer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--bg-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-text {
    font-size: 11px;
    color: var(--slate-500);
    font-weight: 500;
}

.dropdown-all-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
}

.dropdown-all-link:hover {
    color: var(--blue-700);
}

.dropdown-all-link i {
    font-size: 13px;
}

main {
    min-height: 50vh;
}

section {
    padding: 90px 0;
}

section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 36px;
    color: var(--text-primary);
    font-weight: 900;
    font-family: var(--font-primary);
    line-height: 1.25;
}

/* ===== Inner Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--blue-700) 0%, #1e3a8a 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 38px;
    font-weight: 900;
    font-family: var(--font-primary);
    color: var(--white);
}

/* ===== Brand Cards ===== */
.brand-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    padding: 32px 24px;
    margin: 12px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--text-primary);
    min-width: 180px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--border-color);
}

.brand-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(var(--primary-rgb), 0.4);
}

.brand-card i {
    font-size: 40px;
    color: var(--primary-color, var(--primary));
    transition: transform 0.3s ease, color 0.3s ease;
}

.brand-card:hover i {
    transform: scale(1.1);
    color: var(--blue-deep);
}

/* ===== Contact Form & Buttons ===== */
.contact-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    background: var(--bg-input);
    color: var(--text-primary);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(var(--secondary-rgb), 0.2);
}

.btn-submit {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 15px 38px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(var(--secondary-rgb), 0.3);
    transition: all 0.25s ease;
}

.btn-submit:hover {
    background: var(--blue-700);
    transform: translateY(-2px);
}

/* Mobile Adjustments */
@media(max-width:992px) {
    .nav-toggle {
        display: block;
    }

    .logo img {
        height: 36px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--bg-header);
        flex-direction: column;
        align-items: stretch;
        padding: 18px 20px 24px 20px;
        gap: 10px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
        max-height: 82vh;
        overflow-y: auto;
        animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .nav-menu.open {
        display: flex
    }

    .nav-menu .nav-item:first-child {
        margin-right: 0;
    }

    .nav-link {
        font-size: 16px;
        padding: 12px 14px;
        text-align: right;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--text-secondary);
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--bg-card-subtle);
        color: var(--text-primary);
    }

    .nav-link::after {
        display: none;
    }

    .nav-menu .nav-item-btn {
        text-align: center;
        margin-top: 12px;
        margin-right: 0;
    }

    .nav-menu .btn-signup {
        display: block;
        text-align: center;
        padding: 12px 20px;
        font-size: 15px;
        border-radius: 12px;
    }

    /* Mobile Mega Dropdown Container */
    .dropdown-menu.mega-dropdown {
        position: static;
        transform: none !important;
        box-shadow: none;
        border: 1px solid var(--border-color);
        background: var(--bg-header);
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        padding: 14px;
        margin-top: 6px;
        border-radius: 14px;
        transition: none;
    }

    .dropdown.open .dropdown-menu.mega-dropdown,
    .dropdown.is-open .dropdown-menu.mega-dropdown {
        display: block;
    }

    /* Mobile Header & Layout */
    .mega-dropdown .dropdown-header {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .mega-dropdown .header-badge-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 8px;
    }

    .mega-dropdown .header-title {
        font-size: 14px;
    }

    .mega-dropdown .header-tag {
        font-size: 11px;
        padding: 3px 8px;
    }

    .mega-dropdown-body {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mega-dropdown-callout {
        display: none;
    }

    /* Mobile Grid */
    .brands-mega-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .brand-item {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 10px;
        gap: 8px;
    }

    .brand-badge {
        width: 30px;
        height: 30px;
        font-size: 13px;
        border-radius: 8px;
    }

    .brand-name {
        font-size: 13px;
    }

    .brand-tag {
        font-size: 10px;
    }

    /* Mobile Footer */
    .mega-dropdown .dropdown-footer {
        margin: 12px 0 0 0;
        padding: 10px 0 0 0;
        background: transparent;
        border-top: 1px solid var(--border-color);
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-text {
        font-size: 11px;
    }

    .dropdown-icon {
        margin-right: 0;
        font-size: 12px;
    }

    .dropdown.open .dropdown-icon {
        transform: rotate(180deg);
    }

    .contact-section .container {
        grid-template-columns: 1fr
    }
}

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

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

/* ===== FURNIZEN Arabic Hero Section ===== */
.hero-furnizen {
    background-color: var(--bg-body);
    padding: 70px 0 85px 0;
    font-family: var(--font-primary);
    color: var(--text-primary);
    text-align: right;
    position: relative;
    overflow: hidden;
}

.hero-furnizen .hero-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Main Grid (Top Row) */
.hero-main-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 22px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 36px;
    font-weight: 600;
}

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

.btn-hero-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 38px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 28px rgba(var(--primary-rgb), 0.32);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.6s ease;
}

.btn-hero-primary:hover::before {
    left: 140%;
}

.btn-hero-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.45), var(--shadow-glow);
    color: var(--white);
}

.btn-hero-secondary {
    background-color: var(--bg-card);
    color: var(--text-primary);
    border: 1.5px solid var(--border-color);
    padding: 15px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-sm);
}

.btn-hero-secondary:hover {
    background-color: var(--bg-card-subtle);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-md);
}

/* Image Container */
.hero-image-card {
    position: relative;
    width: 100%;
    height: 450px;
    background-color: var(--bg-card-subtle);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.hero-image-card picture,
.hero-image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 36px;
}

.hero-image-placeholder-text {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-image-placeholder-text i {
    font-size: 36px;
    color: var(--text-primary);
}

/* Bottom Grid (2 Full Feature Pill Boxes) */
.hero-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 28px 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-icon {
    font-size: 26px;
    color: var(--secondary);
    margin-bottom: 2px;
}

.feature-info h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.feature-info p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

/* ===== Services Grid Section ===== */
.services-grid-section {
    background-color: var(--bg-body);
    padding: 95px 0;
    font-family: var(--font-primary);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 55px auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card-subtle);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 800;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 18px;
    border: 1px solid var(--border-color);
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 500;
}

/* Cards Grid */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.service-feature-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 34px 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--cyan) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-feature-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(var(--primary-rgb), 0.4);
}

.service-feature-card.reveal-active:hover {
    transform: translateY(-8px) scale(1.015);
}

.service-feature-card:hover::before {
    opacity: 1;
}

.service-card-icon {
    width: 54px;
    height: 54px;
    background: var(--bg-card-subtle);
    color: var(--secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-subtle);
}

.service-feature-card:hover .service-card-icon {
    background: var(--secondary);
    color: var(--white);
}

.service-card-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.35;
}

.service-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

/* Featured Dark Card */
.service-feature-card.featured-dark {
    background: linear-gradient(135deg, var(--ink) 0%, var(--slate-800) 100%);
    color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(11, 25, 49, 0.25);
    transform: translateY(-4px);
}

.service-feature-card.featured-dark .service-card-icon {
    background: rgba(var(--secondary-rgb), 0.25);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-feature-card.featured-dark .service-card-title {
    color: var(--white);
}

.service-feature-card.featured-dark .service-card-desc {
    color: var(--slate-300);
}

.service-feature-card.featured-dark:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(11, 25, 49, 0.35);
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .service-feature-card {
        padding: 26px 22px;
    }
}

/* ===== Dynamic Scroll Reveal & Micro-Animations ===== */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale-up {
    opacity: 0;
    transform: scale(0.93) translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-scale-up.is-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Stagger delay classes */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Scrolled Navbar Header Effect */
.site-header {
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: var(--bg-header) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.site-header.scrolled .navbar {
    padding: 14px 24px;
}

/* ===== Infographic Section ===== */
.infographic-section {
    background-color: var(--bg-body);
    padding: 95px 0;
    font-family: var(--font-primary);
    text-align: center;
}

.infographic-main-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 55px;
    letter-spacing: -0.5px;
}

.infographic-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1160px;
    margin: 0 auto;
}

.info-column {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.info-card-text {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-card-text h3 {
    font-size: 19px;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.35;
}

.info-card-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

/* Center Pie Wheel Diagram */
.info-center-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pie-chart-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
}

.pie-chart-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.12));
}

.pie-slice {
    fill: var(--bg-card);
    stroke: var(--border-color);
    stroke-width: 1.5;
    transition: fill 0.35s ease-in-out, filter 0.3s ease;
    cursor: pointer;
}

.pie-slice.active-slice {
    fill: var(--secondary) !important;
}

.pie-slice:hover {
    filter: brightness(0.92);
}

.pie-spoke {
    stroke: var(--bg-body);
    stroke-width: 8;
    transition: stroke 0.3s ease;
}

.pie-center-circle {
    fill: var(--bg-body);
    transition: fill 0.3s ease;
}

.pie-icons-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.slice-icon {
    position: absolute;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--text-primary);
    cursor: pointer;
    pointer-events: auto;
    transition: color 0.35s ease-in-out, transform 0.3s ease;
    border-radius: 50%;
    z-index: 10;
}

.slice-icon:hover {
    transform: scale(1.18);
}

.slice-icon.active-icon,
.slice-icon.active-icon i {
    color: var(--white) !important;
}

.slice-icon.slice-1 {
    top: 22%;
    right: 26%;
}

.slice-icon.slice-2 {
    top: 54%;
    right: 18%;
}

.slice-icon.slice-3 {
    bottom: 17%;
    left: 45%;
}

.slice-icon.slice-4 {
    top: 54%;
    left: 18%;
}

.slice-icon.slice-5 {
    top: 22%;
    left: 26%;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .infographic-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-center-diagram {
        order: -1;
    }

    .pie-chart-wrapper {
        width: 300px;
        height: 300px;
    }

    .info-card-text {
        text-align: center;
    }
}

/* ===== Do's and Don'ts Section ===== */
.dos-donts-section {
    background-color: var(--bg-body);
    padding: 95px 0;
    font-family: var(--font-primary);
    text-align: center;
}

.dos-donts-header {
    margin-bottom: 50px;
}

.dos-badge {
    display: inline-block;
    background: var(--bg-card-subtle);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid var(--border-color);
}

.dos-title {
    font-size: 40px;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.25;
}

.dos-donts-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
}

.dos-donts-capsule {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dos-donts-capsule:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.capsule-half {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 32px;
    text-align: right;
}

/* DO Side (Right Side in RTL) */
.capsule-half.do-side {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: none;
    border-radius: 50px 0 0 50px;
}

.capsule-half.do-side .capsule-icon {
    font-size: 26px;
    color: var(--secondary);
    flex-shrink: 0;
}

.capsule-half.do-side .capsule-text {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
}

/* DONT Side (Left Side in RTL) */
.capsule-half.dont-side {
    background-color: var(--slate-800);
    border-radius: 0 50px 50px 0;
}

.capsule-half.dont-side .capsule-icon {
    font-size: 26px;
    color: #ef4444;
    opacity: 0.9;
    flex-shrink: 0;
}

.capsule-half.dont-side .capsule-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--bg);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Media Queries */
@media (max-width: 820px) {
    .dos-donts-capsule {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .capsule-half.do-side {
        border-radius: 24px 24px 0 0;
        border-left: 1px solid var(--border-color);
        border-bottom: none;
    }

    .capsule-half.dont-side {
        border-radius: 0 0 24px 24px;
    }

    .dos-title {
        font-size: 30px;
    }
}

/* ===== Map Coverage Section ===== */
.map-coverage-section {
    background-color: var(--bg-body);
    padding: 95px 0;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.map-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: center;
}

.map-text-side {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.map-badge {
    display: inline-block;
    background: var(--bg-card-subtle);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
    border: 1px solid var(--border-color);
}

.map-title {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.22;
    color: var(--text-primary);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.map-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.75;
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 520px;
}

.curly-arrow-wrapper {
    width: 80px;
    height: 60px;
    margin: 10px 0 10px 0;
}

.curly-arrow-path {
    stroke: var(--text-primary);
    opacity: 0.45;
    transition: stroke 0.3s ease;
}

/* Map Stats Row */
.map-stats-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.map-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.stat-number {
    font-size: 44px;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    letter-spacing: -1px;
}

[data-theme="dark"] .stat-number {
    color: var(--blue-soft);
}

.stat-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
}

/* Map Graphic Side */
.map-graphic-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-graphic-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    height: 460px;
    background-color: var(--bg-card-subtle);
    border-radius: 32px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.dotted-map-svg,
.map-connecting-lines-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.dotted-map-svg circle {
    fill: var(--text-muted);
    opacity: 0.6;
    transition: fill 0.3s ease;
}

.map-connecting-line {
    stroke: var(--text-primary);
    stroke-width: 1.5;
    opacity: 0.35;
    transition: stroke 0.3s ease;
}

.map-pin-pill {
    position: absolute;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(var(--secondary-rgb), 0.35);
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    z-index: 5;
}

[data-theme="dark"] .map-pin-pill {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 0 20px rgba(var(--secondary-rgb), 0.55);
}

[data-theme="dark"] .map-pin-pill::after {
    border-top-color: var(--secondary);
}

[data-theme="dark"] .map-pin-pill.hub-pin {
    background-color: #3b82f6;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.7);
}

[data-theme="dark"] .map-pin-pill.hub-pin::after {
    border-top-color: #3b82f6;
}

.map-pin-pill::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--secondary);
    transition: border-top-color 0.25s ease;
}

.map-pin-pill.hub-pin {
    background-color: var(--blue-700);
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(29, 78, 216, 0.4);
    z-index: 8;
}

.map-pin-pill:hover {
    background-color: var(--blue-700);
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 12px 25px rgba(29, 78, 216, 0.4);
    z-index: 10;
}

.map-pin-pill:hover::after {
    border-top-color: var(--blue-700);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background-color: var(--bg-body);
    padding: 95px 0;
    font-family: var(--font-primary);
}

.testimonials-top-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.testimonials-top-title {
    font-size: 40px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 18px;
}

.trustpilot-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-secondary);
}

.trustpilot-stars {
    color: var(--green);
    font-size: 18px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
}

.testimonials-side-title {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-icon {
    font-size: 64px;
    color: var(--text-muted);
    opacity: 0.5;
    line-height: 1;
}

.testimonials-side-title h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.35;
    margin: 0;
}

.slider-arrows {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

.slider-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.25s ease;
}

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

.slider-line {
    height: 2px;
    width: 80px;
    background: var(--border-color);
    border-radius: 2px;
}

.testimonials-cards-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 4px 20px 4px;
    scrollbar-width: none;
}

.testimonials-cards-row::-webkit-scrollbar {
    display: none;
}

.testimonial-card-item {
    min-width: 290px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.testimonial-bubble-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    border-radius: 20px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
    gap: 16px;
    position: relative;
    min-height: 195px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-bubble-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-bubble-box::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 28px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 10px solid var(--bg-card);
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

.testimonial-rating {
    color: var(--green);
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 8px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 2px 0;
}

.author-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== FAQs Section ===== */

/* ===== Footer ===== */
.main-site-footer {
    background-color: var(--ink-900);
    color: var(--slate-300);
    padding: 85px 0 35px 0;
    font-family: var(--font-primary);
    text-align: right;
    border-top: 1px solid var(--border-color);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.footer-logo-box:hover {
    transform: translateY(-2px);
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 12px rgba(11, 99, 206, 0.45));
    transition: transform 0.3s ease;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-box:hover .footer-logo-icon {
    transform: scale(1.1) rotate(-5deg);
}

.footer-brand-title {
    font-size: 22px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 4px;
}

.brand-siana-light {
    color: #ffffff;
}

.footer-brand-sub {
    font-size: 10px;
    font-weight: 700;
    color: #38bdf8;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 1px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--slate-400);
    line-height: 1.7;
    margin: 0;
    max-width: 320px;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-pill-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--slate-300);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.25s ease;
}

.social-pill-btn:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--blue-soft);
    margin-bottom: 22px;
}

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

.footer-links-list a {
    color: var(--slate-400);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Footer Bottom Bar */
.footer-bottom-bar {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--slate-500);
}

.status-indicator {
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal-links a {
    color: var(--slate-500);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--slate-300);
}

/* =========================================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ========================================================= */

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

    section h2,
    .section-title,
    .dos-title,
    .map-title,
    .testimonials-top-title,
    .faq-title,
    .infographic-main-title {
        font-size: 30px;
        margin-bottom: 24px;
    }

    /* Navbar Mobile */
    .navbar {
        padding: 12px 18px;
    }

    .logo img {
        height: 38px;
        max-height: 38px;
    }

    .nav-controls {
        margin-right: 0;
        gap: 8px;
    }

    .theme-toggle-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
        order: 1;
    }

    .nav-toggle {
        display: flex;
        order: 2;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--bg-header);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 18px 22px 18px;
        gap: 8px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border-top: 1px solid var(--border-color);
        max-height: 82vh;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.open,
    .nav-menu.is-open {
        display: flex;
        animation: mobileNavSlide 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

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

    .nav-menu .nav-item {
        width: 100%;
    }

    .nav-menu .nav-item:first-child {
        margin-right: 0;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 700;
        color: var(--text-secondary);
        background: var(--bg-card-subtle);
        border: 1px solid transparent;
        transition: all 0.2s ease;
    }

    .nav-link::after {
        display: none !important;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--secondary);
        background: rgba(var(--secondary-rgb), 0.08);
        border-color: rgba(var(--secondary-rgb), 0.2);
    }

    .nav-menu .nav-item-btn {
        margin-right: 0;
        margin-top: 8px;
    }

    .btn-signup {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
        font-size: 15px;
        border-radius: 14px;
    }

    /* Mega Dropdown Menu inside Mobile Menu */
    .dropdown-menu.mega-dropdown {
        position: static;
        transform: none !important;
        width: 100%;
        box-shadow: none;
        border: 1px solid var(--border-color);
        border-radius: 16px;
        margin-top: 8px;
        padding: 14px;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: var(--bg-body);
    }

    .dropdown.open .dropdown-menu.mega-dropdown,
    .dropdown.is-open .dropdown-menu.mega-dropdown {
        display: block;
        animation: mobileNavSlide 0.2s ease forwards;
    }

    .mega-dropdown-body {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .brands-mega-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .brand-item {
        padding: 10px;
        gap: 10px;
    }

    .brand-badge {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .brand-name {
        font-size: 13px;
    }

    .brand-tag {
        font-size: 10px;
    }

    .mega-dropdown-callout {
        padding: 14px;
        border-radius: 14px;
    }

    /* Hero Mobile */
    .hero-furnizen {
        padding: 40px 0 50px 0;
    }

    .hero-main-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-image-card {
        order: -1;
        height: 260px;
        border-radius: 24px;
    }

    .hero-text-content {
        padding-left: 0;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 13px 20px;
        font-size: 15px;
    }

    .hero-bottom-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-box {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px 24px;
        border-radius: 20px;
    }

    /* Services Grid Mobile */
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    /* Infographic Mobile */
    .infographic-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .info-center-diagram {
        order: -1;
    }

    .pie-chart-wrapper {
        width: 300px;
        height: 300px;
    }

    .info-card-text {
        text-align: center;
    }

    .info-column {
        gap: 24px;
    }

    /* Map Coverage Mobile */
    .map-section-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .map-graphic-wrapper {
        height: 380px;
        border-radius: 24px;
    }

    .curly-arrow-wrapper {
        display: none;
    }

    .map-stats-row {
        gap: 20px;
        justify-content: space-between;
    }

    .stat-number {
        font-size: 34px;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Footer Mobile */
    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    section {
        padding: 45px 0;
    }

    .container {
        padding: 0 16px;
    }

    section h2,
    .section-title,
    .dos-title,
    .map-title,
    .testimonials-top-title,
    .faq-title,
    .infographic-main-title {
        font-size: 25px;
        margin-bottom: 20px;
    }

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

    .hero-image-card {
        height: 220px;
        border-radius: 20px;
    }

    /* Services Grid 1 column on small screens */
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-feature-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    /* Infographic Wheel Small Mobile */
    .pie-chart-wrapper {
        width: 260px;
        height: 260px;
    }

    .slice-icon {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    /* Do's and Don'ts Capsules Small Mobile */
    .dos-donts-capsule {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .capsule-half {
        padding: 16px 18px;
        font-size: 14px;
    }

    .capsule-half.do-side {
        border-radius: 18px 18px 0 0;
        border-left: 1px solid var(--border-color);
        border-bottom: none;
    }

    .capsule-half.dont-side {
        border-radius: 0 0 18px 18px;
    }

    /* Map Graphic Small Mobile */
    .map-graphic-wrapper {
        height: 290px;
        border-radius: 20px;
        overflow: hidden;
    }

    .map-pin-pill {
        font-size: 9.5px;
        padding: 4px 8px;
    }

    .map-stats-row {
        flex-direction: flex-row;
        justify-content: space-around;
        text-align: center;
        gap: 12px;
    }

    .map-stat-item {
        align-items: center;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* FAQs Small Mobile */
    .faq-item {
        padding: 14px 18px;
        border-radius: 20px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    /* Footer Small Mobile */
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 6px;
    }
}
/* ===== Accessibility: skip link ===== */
.skip-link {
  position: absolute;
  top: -60px;
  right: 16px;
  z-index: 3000;
  background: var(--primary, #0b63ce);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}
