/* ============================================
   AL-SAHIL COMPANY - Premium Stylesheet
   Automotive Import Theme
============================================ */

/* ============================================
   CSS VARIABLES - Automotive Theme
============================================ */
:root {
    /* Primary Colors - Automotive Theme */
    --dark-gray: #1a1a1a;
    --gray-primary: #2d2d2d;
    --gray-light: #4a4a4a;
    --accent-red: #dc2626;
    --accent-orange: #f97316;
    --white: #ffffff;
    
    /* Secondary Colors */
    --gray-medium: #3a3a3a;
    --gray-pale: #f5f5f5;
    --red-light: #ef4444;
    --orange-light: #fb923c;
    --gray-lighter: #e5e5e5;
    --gray-dark: #6b6b6b;
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-primary: #2d2d2d;
    --text-secondary: #5a5a5a;
    --text-light: #8a8a8a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--dark-gray), var(--gray-primary));
    --gradient-accent: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    --gradient-hero: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(45, 45, 45, 0.9));
    
    /* Fonts */
    --font-arabic: 'Cairo', sans-serif;
    --font-english: 'IBM Plex Sans Arabic', sans-serif;
    --font-display: 'Noto Sans Arabic', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 5rem;
    --spacing-5xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(26, 26, 26, 0.08);
    --shadow-md: 0 10px 30px rgba(26, 26, 26, 0.12);
    --shadow-lg: 0 20px 50px rgba(26, 26, 26, 0.15);
    --shadow-xl: 0 30px 70px rgba(26, 26, 26, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-arabic), 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
    background-color: var(--white);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   PRELOADER
============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    color: var(--dark-gray);
    animation: spin 1s linear infinite;
}

.loader-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/**
 * ----------------------------------------
 * animation bg-pan-top
 * ----------------------------------------
 */
@-webkit-keyframes bg-pan-top {
  0% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}

@-webkit-keyframes bg-pan-top {
  0% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}

@keyframes bg-pan-top {
  0% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}

.bg-pan-top {
	-webkit-animation: bg-pan-top 8s ease infinite both;
	        animation: bg-pan-top 8s ease infinite both;
}

/* ============================================
   ANIMATIONS - Animista
============================================ */

/**
 * ----------------------------------------
 * animation bounce-in-top
 * ----------------------------------------
 */
@-webkit-keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-65px);
            transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(-28px);
            transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-65px);
            transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(-28px);
            transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

.bounce-in-top {
	-webkit-animation: bounce-in-top 1.1s both;
	        animation: bounce-in-top 1.1s both;
}

/**
 * ----------------------------------------
 * animation text-pop-up-top
 * ----------------------------------------
 */
/* Animation removed - replaced with professional Arabic typography */

/* ============================================
   FLOATING ACTION BUTTON
============================================ */
.fab-phone {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-normal);
}

.fab-phone:hover {
    transform: scale(1.1);
    background: var(--gray-medium);
}

.fab-phone svg {
    width: 28px;
    height: 28px;
}

.fab-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark-gray);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.fab-phone:hover .fab-tooltip {
    opacity: 1;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.brand-ar {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-gray);
    line-height: 1.2;
}

.brand-sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
}

.nav-link {
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    padding: var(--spacing-sm) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--dark-gray);
    transition: var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--dark-gray);
    font-weight: 700;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--dark-gray);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
}

.nav-cta:hover {
    background: var(--gray-medium);
    transform: translateY(-2px);
}

.nav-cta svg {
    width: 18px;
    height: 18px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 
        inset 0 0 300px rgba(26, 26, 26, 0.95),
        inset 0 -200px 200px rgba(26, 26, 26, 0.7),
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 150px rgba(26, 26, 26, 0.3);
    filter: brightness(0.75) contrast(1.15) saturate(1.1);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.4) 0%,
        rgba(26, 26, 26, 0.6) 50%,
        rgba(26, 26, 26, 0.85) 100%
    );
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(214, 40, 40, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: var(--spacing-5xl) var(--spacing-xl);
}

.hero-text {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto var(--spacing-4xl);
}

.hero-badge {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-25px);
    position: relative;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-xl);
    line-height: 1.3;
    font-family: var(--font-arabic), 'Noto Sans Arabic', sans-serif;
    letter-spacing: -0.01em;
    transition: var(--transition-normal);
    color: var(--white);
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.title-line {
    display: block;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: var(--spacing-2xl);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--spacing-md);
    color: var(--accent-red);
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-english);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.8;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    margin: 0 auto var(--spacing-sm);
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--dark-gray);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gray-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-gray);
}


.btn-large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1.1rem;
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   SECTIONS
============================================ */
section {
    padding: var(--spacing-5xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
}

.section-badge {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--gray-pale);
    color: var(--dark-gray);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    transform: translateY(-25px);
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark-gray);
    font-family: var(--font-arabic), 'Noto Sans Arabic', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.3;
    transition: var(--transition-normal);
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-underline {
    width: 80px;
    height: 4px;
    background: var(--accent-red);
    margin: 0 auto var(--spacing-lg);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.about-content {
    direction: rtl;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.about-intro strong {
    color: var(--dark-gray);
    font-size: 1.2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.about-feature {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gray-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xs);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.about-image {
    position: relative;
}

.about-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--spacing-lg);
    height: 100%;
}

.about-img-main {
    grid-column: 1 / 3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-lg);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-img-secondary,
.about-img-tertiary {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-lg);
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.6);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.about-img-main:hover .image-overlay,
.about-img-secondary:hover .image-overlay,
.about-img-tertiary:hover .image-overlay {
    background: rgba(26, 26, 26, 0.4);
}

.image-badge {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.badge-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-gray);
    font-family: var(--font-english);
}

.badge-text {
    display: block;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ============================================
   PRODUCTS SECTION
============================================ */
.products {
    background: var(--gray-light);
}

.products-grid {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-xl);
    overflow-x: auto;
    overflow-y: hidden;
    padding: var(--spacing-md) 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-red) var(--gray);
    -webkit-overflow-scrolling: touch;
}

.products-grid::-webkit-scrollbar {
    height: 8px;
}

.products-grid::-webkit-scrollbar-track {
    background: var(--gray);
    border-radius: 10px;
}

.products-grid::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 10px;
}

.products-grid::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gray);
}

.product-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    flex: 0 0 320px;
    min-width: 280px;
    max-width: 350px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gray-pale);
    opacity: 0.1;
    z-index: 0;
    transition: var(--transition-normal);
}

.product-card:hover::before {
    opacity: 0.2;
}

.product-card > * {
    position: relative;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-red);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-pale);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--dark-gray);
    transition: var(--transition-normal);
}

.product-card:hover .product-icon {
    background: var(--dark-gray);
    color: var(--white);
    transform: scale(1.1);
}

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

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
}

.product-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   SERVICES SECTION
============================================ */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--gray);
    transition: var(--transition-normal);
}

.service-card:hover {
    border-color: var(--dark-gray);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--white);
}

.service-icon svg {
    width: 35px;
    height: 35px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   WHY US SECTION
============================================ */
.why-us {
    background: var(--gray-light);
}

.why-us-grid {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-xl);
    overflow-x: auto;
    overflow-y: hidden;
    padding: var(--spacing-md) 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-red) var(--gray);
    -webkit-overflow-scrolling: touch;
}

.why-us-grid::-webkit-scrollbar {
    height: 8px;
}

.why-us-grid::-webkit-scrollbar-track {
    background: var(--gray);
    border-radius: 10px;
}

.why-us-grid::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 10px;
}

.why-us-grid::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gray);
}

.why-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--gray);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(-100px);
    flex: 0 0 300px;
    min-width: 280px;
    max-width: 350px;
}

.why-card.animate-in {
    opacity: 1;
    animation: bounce-in-top 1.1s both;
}

/* Staggered animation delays for why-cards */
.why-card:nth-child(1).animate-in {
    animation-delay: 0.1s;
}

.why-card:nth-child(2).animate-in {
    animation-delay: 0.2s;
}

.why-card:nth-child(3).animate-in {
    animation-delay: 0.3s;
}

.why-card:nth-child(4).animate-in {
    animation-delay: 0.4s;
}

.why-card:nth-child(5).animate-in {
    animation-delay: 0.5s;
}

.why-card:nth-child(6).animate-in {
    animation-delay: 0.6s;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}

.why-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover::after {
    opacity: 1;
}

.why-card:hover {
    border-color: var(--dark-gray);
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 70px rgba(26, 26, 26, 0.25);
    background: linear-gradient(to bottom, var(--white) 0%, var(--gray-pale) 100%);
}

/* Staggered Layout - Creative Positioning */
.why-card-large {
    grid-column: span 1;
    grid-row: span 2;
    min-height: 320px;
}

.why-card-medium {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 250px;
}

.why-card-small {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 200px;
}

/* Remove staggered positioning for horizontal layout */

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--white);
    transition: var(--transition-normal);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
}

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

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   GALLERY SECTION
============================================ */
.gallery {
    background: var(--white);
    padding: var(--spacing-5xl) 0 var(--spacing-2xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 2px solid var(--gray);
    transition: var(--transition-normal);
}

.gallery-item:hover {
    border-color: var(--dark-gray);
    box-shadow: var(--shadow-md);
}

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

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
    position: relative;
    padding: var(--spacing-4xl) 0;
    background: var(--gradient-hero);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    overflow: hidden;
    margin-top: -var(--spacing-2xl);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.85) 0%,
        rgba(26, 74, 111, 0.8) 50%,
        rgba(26, 26, 26, 0.85) 100%
    );
    backdrop-filter: blur(2px);
}

.cta-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl);
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-red);
    border-radius: 2px;
    opacity: 0.8;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-arabic);
    letter-spacing: -0.01em;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-2xl);
    opacity: 0.95;
    font-family: var(--font-arabic);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--dark-gray);
    border: 2px solid var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-white:hover {
    background: var(--gray-pale);
    color: var(--dark-gray);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark-gray);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 50%, var(--white) 100%);
    padding: var(--spacing-5xl) 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(26, 26, 26, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
    position: relative;
    z-index: 1;
}

.contact-header .section-underline {
    display: none;
}

.contact-header .section-subtitle {
    max-width: 600px;
    margin: var(--spacing-lg) auto 0;
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info {
    background: var(--white);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(26, 26, 26, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(26, 26, 26, 0.05);
    transition: var(--transition-normal);
}

.contact-info:hover {
    box-shadow: 0 15px 50px rgba(26, 26, 26, 0.15);
    transform: translateY(-5px);
}

.contact-info-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--gray);
}

.contact-info-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
}

.contact-info-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.contact-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    background: var(--white);
}

.contact-item:hover {
    background: linear-gradient(135deg, var(--gray-pale) 0%, rgba(220, 38, 38, 0.05) 100%);
    transform: translateX(-8px);
    border-color: var(--accent-red);
    box-shadow: 0 5px 20px rgba(26, 26, 26, 0.08);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.35);
}

.contact-item:hover .contact-icon::before {
    width: 200px;
    height: 200px;
}

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

.contact-details h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
}

.contact-details p,
.contact-details a {
    color: var(--text-secondary);
    transition: var(--transition-normal);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details a {
    color: var(--accent-red);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--dark-gray);
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(26, 26, 26, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    position: relative;
    border: 1px solid rgba(26, 26, 26, 0.05);
    transition: var(--transition-normal);
}

.contact-form:hover {
    box-shadow: 0 15px 50px rgba(26, 26, 26, 0.15);
    transform: translateY(-5px);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    opacity: 0.8;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.form-group input,
.form-group textarea {
    padding: var(--spacing-lg) var(--spacing-xl);
    border: 2px solid var(--gray);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    color: var(--text-primary);
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.4;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-gray);
    box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.08),
                0 4px 12px rgba(26, 26, 26, 0.1);
    transform: translateY(-3px);
    background: var(--white);
}

.form-group input:hover:not(:focus),
.form-group textarea:hover:not(:focus) {
    border-color: var(--accent-red);
    background: var(--gray-pale);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.contact-info-cards-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-3xl);
}

.info-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-pale) 100%);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(26, 26, 26, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(26, 26, 26, 0.2);
    border-color: var(--accent-red);
    background: linear-gradient(135deg, var(--white) 0%, rgba(220, 38, 38, 0.05) 100%);
}

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

.info-card:hover::after {
    opacity: 1;
}

.info-card-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.info-card-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: var(--radius-lg);
    background: var(--gradient-accent);
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
    transition: all 0.4s ease;
}

.info-card:hover .info-card-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.info-card:hover .info-card-icon::before {
    opacity: 0.5;
    transform: scale(1.2);
}

.info-card-icon svg {
    width: 36px;
    height: 36px;
}

.info-card-content {
    flex: 1;
    width: 100%;
}

.info-card-content h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.info-card-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.info-card-content p:last-child {
    margin-bottom: 0;
}

.info-card-content a {
    color: var(--accent-red);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: var(--spacing-xs) 0;
    position: relative;
    z-index: 1;
}

.info-card-content a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--dark-gray);
    transition: width 0.3s ease;
}

.info-card-content a:hover {
    color: var(--dark-gray);
    transform: translateX(-3px);
}

.info-card-content a:hover::after {
    width: 100%;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: var(--spacing-4xl) 0 var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

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

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.credits-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.credits-link {
    color: var(--accent-red);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.credits-link:hover {
    color: var(--dark-gray);
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-xl);
        box-shadow: var(--shadow-lg);
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .about-grid,
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        margin-top: var(--spacing-2xl);
    }
    
    .info-card {
        padding: var(--spacing-2xl);
    }
    
    .info-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .info-card-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .info-card-content h4 {
        font-size: 1.3rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-images-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .about-img-main {
        grid-column: 1;
        min-height: 250px;
    }
    
    .about-img-secondary,
    .about-img-tertiary {
        min-height: 200px;
    }
    
    .why-us-grid {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .why-card-large,
    .why-card-medium,
    .why-card-small {
        flex: 0 0 280px;
        min-width: 250px;
        min-height: auto;
        margin-top: 0 !important;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .product-card {
        flex: 0 0 280px;
        min-width: 250px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .why-us-grid {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .why-card-large,
    .why-card-medium,
    .why-card-small {
        flex: 0 0 260px;
        min-width: 240px;
        min-height: auto;
        margin-top: 0 !important;
    }
    
    .product-card {
        flex: 0 0 260px;
        min-width: 240px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: var(--spacing-md);
    }
    
    .nav-brand-text {
        font-size: 0.9rem;
    }
    
    .brand-ar {
        font-size: 1.1rem;
    }
    
    section {
        padding: var(--spacing-3xl) 0;
    }
}
