/* ===== Smooth Scroll ===== */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== CSS Variables ===== */
:root {
    /* Colors - Modern Automobile Theme */
    --primary-color: #0066CC;
    --primary-dark: #004d99;
    --primary-light: #3385d6;
    --secondary-color: #FF6600;
    --secondary-dark: #cc5200;
    --accent-color: #E63946;
    --accent-dark: #b82e3a;
    --dark-color: #1a1a1a;
    --dark-light: #2d2d2d;
    --text-color: #2d2d2d;
    --text-light: #6b7280;
    --body-color: #f8fafc;
    --white-color: #FFFFFF;
    --container-color: #FFFFFF;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066CC 0%, #004d99 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6600 0%, #cc5200 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 102, 204, 0.95) 0%, rgba(0, 77, 153, 0.95) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 25px -5px rgba(0, 102, 204, 0.3);
    
    /* Typography - Modern Font Stack */
    --body-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    --heading-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    --arabic-font: 'Segoe UI', 'Arial', 'Tahoma', 'Noto Sans Arabic', sans-serif;
    
    /* Font Sizes */
    --biggest-font-size: 3rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.75rem;
    
    /* Font Weight */
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    
    /* Spacing */
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;
    
    /* Z-index */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* RTL Support */
[dir="rtl"] {
    font-family: var(--arabic-font);
}

[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

/* RTL-specific adjustments */
[dir="rtl"] .home__buttons {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav__actions {
    flex-direction: row-reverse;
}

[dir="rtl"] .home__info-item {
    flex-direction: row-reverse;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== Reusable Classes ===== */
.container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.section {
    padding-block: 5rem 2rem;
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__title {
    font-size: var(--h1-font-size);
    font-weight: var(--font-bold);
    color: var(--dark-color);
    margin-bottom: var(--mb-1);
    position: relative;
    display: inline-block;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%) translateZ(10px);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.4);
    transition: width 0.3s ease, box-shadow 0.3s ease;
}

.section__title:hover::after {
    width: 100px;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.6);
}

[dir="rtl"] .section__title::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

.section__subtitle {
    font-size: var(--normal-font-size);
    color: var(--text-light);
}

/* ===== Buttons ===== */
.button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: var(--font-semi-bold);
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: var(--normal-font-size);
    min-height: 44px;
    min-width: 44px;
    text-align: center;
}

.button--primary {
    background: var(--gradient-primary);
    color: var(--white-color);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.button--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.button--primary:hover::before {
    left: 100%;
}

.button--primary:hover {
    transform: translateY(-4px) translateZ(10px);
    box-shadow: var(--shadow-primary), 0 8px 16px rgba(0, 102, 204, 0.4);
}

.button--phone {
    background: var(--white-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.button--phone:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-4px) translateZ(10px) scale(1.05);
    box-shadow: var(--shadow-lg), 0 8px 16px rgba(0, 102, 204, 0.3);
}

.button--phone .icon-phone {
    stroke: currentColor;
}

.button--call {
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
    animation: pulse-button 2s ease-in-out infinite;
}

.button--call:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 102, 204, 0.6);
    }
}

.button--secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button--secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* ===== Header & Navigation ===== */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: var(--z-fixed);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
    padding-block: 0.5rem;
}

[dir="rtl"] .header {
    left: auto;
    right: 0;
}

.nav {
    height: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: height 0.3s ease;
}

.header.scrolled .nav {
    height: 3.5rem;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 4.5rem;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.header.scrolled .logo-img {
    height: 3.5rem;
}

.nav__menu {
    position: fixed;
    top: 0;
    inset-inline-end: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white-color);
    padding: 4rem 0 0 3rem;
    transition: var(--transition);
    z-index: var(--z-fixed);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
}

[dir="rtl"] .nav__menu {
    inset-inline-end: auto;
    inset-inline-start: -100%;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
}

.nav__menu.show-menu {
    inset-inline-end: 0;
}

[dir="rtl"] .nav__menu.show-menu {
    inset-inline-end: auto;
    inset-inline-start: 0;
}

.nav__list {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

.nav__link {
    color: var(--text-color);
    font-weight: var(--font-medium);
    text-decoration: none;
    transition: var(--transition);
    font-size: var(--h3-font-size);
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__close {
    position: absolute;
    top: 1rem;
    inset-inline-end: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.nav__actions {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.nav__lang {
    background: none;
    border: 1px solid var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: var(--small-font-size);
    color: var(--text-color);
    transition: var(--transition);
    min-height: 44px;
}

.nav__lang:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.nav__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--white-color);
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: var(--font-semi-bold);
    font-size: var(--small-font-size);
    transition: var(--transition);
    min-height: 44px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.nav__phone:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

.nav__phone .icon-phone {
    width: 18px;
    height: 18px;
    margin-inline-end: 0;
}

.nav__phone-text {
    white-space: nowrap;
}

.nav__social {
    color: var(--text-color);
    transition: var(--transition);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0.5rem;
}

.nav__social:hover {
    background: rgba(0, 102, 204, 0.1);
    transform: scale(1.1) translateZ(5px);
}

.nav__toggle {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icons - SVG icons */
.icon-menu::before { content: "☰"; }
.icon-close::before { content: "✕"; }
.icon-arrow-up::before { content: "↑"; }

/* Phone number RTL fix - Keep +965 and numbers in LTR always */
.phone-country {
    unicode-bidi: embed;
    direction: ltr;
    display: inline-block;
    text-align: left;
}

.phone-number {
    unicode-bidi: embed;
    direction: ltr;
    display: inline-block;
    text-align: left;
}

.home__info-value-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    unicode-bidi: embed;
    direction: ltr;
}

[dir="rtl"] .home__info-value-wrapper {
    /* Keep LTR for phone numbers even in RTL mode */
    direction: ltr;
    text-align: left;
}

/* Ensure all phone numbers stay LTR */
.contact__card-data,
.footer__link {
    unicode-bidi: embed;
    direction: ltr;
    text-align: left;
}

[dir="rtl"] .contact__card-data,
[dir="rtl"] .footer__link {
    direction: ltr;
    text-align: left;
}

.icon-instagram {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.icon-instagram:hover {
    transform: scale(1.1) rotate(5deg);
}

.icon-whatsapp {
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.icon-whatsapp:hover {
    transform: scale(1.1);
}

.icon-phone {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-inline-end: 0.5rem;
}

/* ===== Home Section ===== */
.home {
    padding-top: 8rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
    overflow: hidden;
}

.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('../Images/car-icon-with-shadow-right.png') no-repeat center right,
        radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    background-size: 600px auto, cover, cover;
    background-position: 120% center, 0 0, 100% 100%;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.home::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: url('../Images/car-motor-oil-wheel-real-car-wheels.png') no-repeat center;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) translateZ(0) rotate(0deg) scale(1); 
        opacity: 0.08;
    }
    50% { 
        transform: translateY(-40px) translateZ(50px) rotate(8deg) scale(1.05); 
        opacity: 0.12;
    }
}

.home__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
}

.home__content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.home__title {
    font-size: var(--biggest-font-size);
    font-weight: var(--font-bold);
    color: var(--dark-color);
    margin-bottom: var(--mb-1-5);
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home__description {
    font-size: var(--h3-font-size);
    color: var(--text-color);
    margin-bottom: var(--mb-2);
    line-height: 1.8;
    font-weight: var(--font-medium);
    max-width: 600px;
    margin-inline: auto;
}

.home__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: var(--mb-2);
    align-items: center;
}

.home__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home__info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.home__info-item > div {
    display: inline-block;
    line-height: 1.6;
}

.home__info-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.home__info-label {
    color: var(--text-light);
    margin-inline-end: 0.5rem;
    display: inline-block;
    vertical-align: baseline;
}

.home__info-value {
    color: var(--primary-color);
    font-weight: var(--font-semi-bold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.home__info-value:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.home__image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    perspective: 1200px;
}

.home__img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 2rem;
    box-shadow: var(--shadow-2xl), 0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 0 16px rgba(0, 102, 204, 0.1);
    border: 4px solid var(--white-color);
    position: relative;
    z-index: 1;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home__img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.home__img::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: var(--gradient-primary);
    border-radius: 2rem;
    opacity: 0.3;
    z-index: -1;
    filter: blur(30px);
    transform: scale(0.95);
    transition: transform 0.6s ease;
}

.home__img:hover::before {
    transform: scale(1);
    opacity: 0.4;
}

.home__image-overlay {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 250px;
    height: 250px;
    z-index: 10;
    opacity: 0.85;
    pointer-events: none;
    transform: translateZ(50px);
}

[dir="rtl"] .home__image-overlay {
    right: auto;
    left: 5%;
}

.home__floating-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(0, 102, 204, 0.4));
    animation: carMoving 12s ease-in-out infinite, floatIcon3D 8s ease-in-out infinite;
    transform-style: preserve-3d;
    will-change: transform;
}

@keyframes carMoving {
    0% {
        transform: translateX(-20px) translateY(0) translateZ(0) rotateY(-5deg);
    }
    25% {
        transform: translateX(10px) translateY(-10px) translateZ(20px) rotateY(0deg);
    }
    50% {
        transform: translateX(30px) translateY(-15px) translateZ(30px) rotateY(5deg);
    }
    75% {
        transform: translateX(10px) translateY(-10px) translateZ(20px) rotateY(0deg);
    }
    100% {
        transform: translateX(-20px) translateY(0) translateZ(0) rotateY(-5deg);
    }
}

[dir="rtl"] .home__floating-icon {
    animation: carMovingRTL 12s ease-in-out infinite, floatIcon3D 8s ease-in-out infinite;
}

@keyframes carMovingRTL {
    0% {
        transform: translateX(20px) translateY(0) translateZ(0) rotateY(5deg) scaleX(-1);
    }
    25% {
        transform: translateX(-10px) translateY(-10px) translateZ(20px) rotateY(0deg) scaleX(-1);
    }
    50% {
        transform: translateX(-30px) translateY(-15px) translateZ(30px) rotateY(-5deg) scaleX(-1);
    }
    75% {
        transform: translateX(-10px) translateY(-10px) translateZ(20px) rotateY(0deg) scaleX(-1);
    }
    100% {
        transform: translateX(20px) translateY(0) translateZ(0) rotateY(5deg) scaleX(-1);
    }
}

@keyframes floatIcon3D {
    0%, 100% { 
        transform: translateY(0) translateZ(0) rotateY(0deg) rotateX(0deg); 
    }
    25% { 
        transform: translateY(-15px) translateZ(20px) rotateY(5deg) rotateX(2deg); 
    }
    50% { 
        transform: translateY(-25px) translateZ(30px) rotateY(0deg) rotateX(5deg); 
    }
    75% { 
        transform: translateY(-15px) translateZ(20px) rotateY(-5deg) rotateX(2deg); 
    }
}

/* ===== Services Section ===== */
.services {
    background: linear-gradient(180deg, var(--white-color) 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.2;
}

.services::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: url('../Images/car-jeep-tire-motor-vehicle-service-vector-car-parts.png') no-repeat center;
    background-size: contain;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
    animation: float 25s ease-in-out infinite;
}

.services__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white-color);
    padding: 0;
    padding-bottom: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

[dir="rtl"] .service-card::before {
    transform-origin: right;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px) translateZ(20px) rotateX(3deg) rotateY(-2deg);
    box-shadow: var(--shadow-2xl), 
                0 25px 50px rgba(0, 102, 204, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: var(--primary-light);
    perspective: 1000px;
}

.service-card__image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 1.5rem 1.5rem 0 0;
    z-index: 0;
    transform-style: preserve-3d;
    perspective: 1000px;
    background: var(--gray-100);
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    filter: brightness(0.7) contrast(1.1);
    transform: scale(1) translateZ(0);
}

.service-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-card__image {
    transform: scale(1.2) translateZ(20px);
    filter: brightness(0.85) contrast(1.2);
}

.service-card:hover .service-card__overlay {
    opacity: 0.4;
}

.service-card__icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--white-color);
}

.service-card:hover .service-card__icon-wrapper {
    transform: translate(-50%, -50%) scale(1.15) translateZ(30px);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.4);
    background: var(--white-color);
}

.service-card__icon {
    font-size: 3rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-card__icon {
    transform: scale(1.1);
}

.service-card__content {
    padding: 2rem;
    padding-top: 1.5rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card:hover .service-card__icon {
    transform: scale(1.15) rotate(5deg);
}

.service-card__title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--mb-1);
    color: var(--dark-color);
    position: relative;
    z-index: 1;
}

.service-card__description {
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* ===== Process / How We Work Section ===== */
.process {
    background: var(--white-color);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 204, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 102, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.process .container {
    position: relative;
    z-index: 1;
}

.process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    position: relative;
}

.process__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 3;
    margin-top: 2rem;
}

.process__step {
    text-align: center;
    position: relative;
    opacity: 0.6;
    transition: all 0.5s ease;
}

.process__step.active {
    opacity: 1;
}

.process__step-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process__step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    font-size: var(--small-font-size);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

[dir="rtl"] .process__step-number {
    right: auto;
    left: -10px;
}

.process__step-icon-bg {
    width: 100px;
    height: 100px;
    background: var(--white-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.process__step.active .process__step-icon-bg {
    background: var(--gradient-primary);
    border-color: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 102, 204, 0.3);
}

.process__step-content {
    padding: 0 1rem;
}

.process__step-title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--dark-color);
    margin-bottom: var(--mb-1);
    transition: color 0.3s ease;
}

.process__step.active .process__step-title {
    color: var(--primary-color);
}

.process__step-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: var(--small-font-size);
}

.process__step.active .process__step-description {
    color: var(--text-color);
}

/* ===== Brands Section ===== */
.brands {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white-color) 100%);
    position: relative;
    overflow: hidden;
}

.brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 204, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.brands .container {
    position: relative;
    z-index: 1;
}

.brands__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.brands__image-wrapper {
    position: relative;
    width: 100%;
    padding: 2rem;
    background: var(--white-color);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.brands__image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(255, 102, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.brands__image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl), 0 25px 50px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-color);
}

.brands__image-wrapper:hover::before {
    opacity: 1;
}

.brands__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
    filter: grayscale(0%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.brands__image-wrapper:hover .brands__image {
    filter: grayscale(0%) brightness(1.05);
    transform: scale(1.02);
}

/* ===== Features Section ===== */
.features {
    background: var(--white-color);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: url('../Images/car-motor-oil-wheel-real-car-wheels.png') no-repeat center;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
    animation: float 30s ease-in-out infinite reverse;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--white-color);
    border-radius: 2rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.trust-badge__icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: var(--font-bold);
}

.trust-badge__text {
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--dark-color);
}

.features__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card:hover {
    transform: translateY(-15px) translateZ(20px) rotateY(3deg) rotateX(1deg);
    box-shadow: var(--shadow-2xl), 
                0 25px 50px rgba(255, 102, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: var(--secondary-color);
    perspective: 1000px;
}

.feature-card__icon {
    font-size: 4rem;
    margin-bottom: var(--mb-1-5);
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.15);
}

.feature-card__icon {
    font-size: 3rem;
    margin-bottom: var(--mb-1);
    display: block;
}

.feature-card__title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--mb-1);
    color: var(--dark-color);
}

.feature-card__description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white-color) 100%),
                url('../Images/pexels-olly-3806249.jpg') center/cover;
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials__container {
    position: relative;
}

.testimonials__slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    inset-inline-start: 1.5rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px) rotateZ(1deg);
    box-shadow: var(--shadow-2xl), 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card__quote {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: var(--mb-1);
    line-height: 1;
    opacity: 0.3;
    position: relative;
    z-index: 1;
}

.testimonial-card__text {
    color: var(--text-color);
    margin-bottom: var(--mb-1-5);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-card__author {
    font-weight: var(--font-semi-bold);
    color: var(--dark-color);
}

.testimonial-card__location {
    color: var(--text-light);
    font-size: var(--small-font-size);
}

/* ===== Contact Section ===== */
.contact {
    background: linear-gradient(135deg, var(--white-color) 0%, var(--gray-50) 100%),
                url('../Images/pexels-daniel-andraski-197681005-13065690.jpg') center/cover;
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact__container {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact__info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact__card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.contact__card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl), 0 15px 30px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-color);
}

.contact__card-icon {
    font-size: 3rem;
    margin-bottom: var(--mb-1);
}

.contact__card-title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--mb-1);
    color: var(--dark-color);
}

.contact__card-data {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: var(--mb-0-5);
    font-size: var(--small-font-size);
}

.contact__card-data:hover {
    color: var(--primary-color);
}

/* Phone Numbers Display */
.phone-numbers-display {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.phone-number-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 102, 204, 0.1) 100%);
    border-radius: 0.75rem;
    text-decoration: none;
    border: 2px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

[dir="rtl"] .phone-number-link {
    flex-direction: row-reverse;
}

.phone-number-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.phone-number-link:hover::before {
    left: 100%;
}

.phone-number-link:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.15) 100%);
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

[dir="rtl"] .phone-number-link:hover {
    transform: translateX(-5px);
}

.phone-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.phone-value {
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    unicode-bidi: embed;
    direction: ltr;
    text-align: left;
}

[dir="rtl"] .phone-value {
    direction: ltr;
    unicode-bidi: embed;
}

.phone-value .phone-country {
    color: var(--primary-color);
    font-weight: var(--font-bold);
    unicode-bidi: embed;
    direction: ltr;
    display: inline-block;
}

.phone-value .phone-number {
    color: var(--dark-color);
    letter-spacing: 0.5px;
    unicode-bidi: embed;
    direction: ltr;
    display: inline-block;
}

/* Working Hours Display */
.working-hours-display {
    margin-top: 1rem;
}

.hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.15) 100%);
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 102, 0, 0.2);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.1);
}

.hours-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

.hours-text {
    font-size: var(--h3-font-size);
    font-weight: var(--font-bold);
    color: var(--secondary-dark);
    letter-spacing: 0.5px;
}

/* Kuwait Map Styles */
.kuwait-map-container {
    width: 100%;
    max-width: 100%;
    height: 250px;
    margin: 1.5rem auto;
    position: relative;
    background: var(--gray-100);
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid rgba(0, 102, 204, 0.2);
    box-shadow: var(--shadow-lg);
    z-index: 1;
    min-height: 250px;
}

.kuwait-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 102, 204, 0.1) 100%);
    z-index: 0;
    pointer-events: none;
}

.kuwait-map-container.loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kuwait-map-container.loading::after {
    content: 'Loading map...';
    color: var(--primary-color);
    font-weight: var(--font-semi-bold);
    z-index: 2;
}

.kuwait-map-container .leaflet-container {
    width: 100% !important;
    height: 100% !important;
    border-radius: 1rem;
    z-index: 1;
    font-family: var(--body-font);
}

.kuwait-map-container .leaflet-popup-content-wrapper {
    border-radius: 0.75rem;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(0, 102, 204, 0.2);
}

.kuwait-map-container .leaflet-popup-content {
    margin: 0.75rem 1rem;
    font-size: var(--small-font-size);
    color: var(--dark-color);
    text-align: center;
}

.kuwait-map-container .leaflet-popup-tip {
    background: var(--white-color);
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.kuwait-map-container .leaflet-control-zoom {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 0.5rem;
    overflow: hidden;
}

.kuwait-map-container .leaflet-control-zoom a {
    background-color: var(--white-color);
    color: var(--primary-color);
    border: none;
    font-size: 1.25rem;
    line-height: 30px;
    transition: all 0.2s ease;
}

.kuwait-map-container .leaflet-control-zoom a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Custom marker styles */
.custom-marker {
    background: transparent !important;
    border: none !important;
}

.custom-marker div {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border: 3px solid var(--white-color);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
    animation: pulse-marker 2s infinite;
    transition: all 0.3s ease;
}

.custom-marker:hover div {
    transform: scale(1.3);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.6);
}

@keyframes pulse-marker {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 6px 20px rgba(0, 102, 204, 0.6);
    }
}

.service-areas-list {
    margin-top: 1rem;
    text-align: center;
}

.service-areas-list .contact__card-data {
    font-size: var(--small-font-size);
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding-block: 3rem 2rem;
}

.footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer__content {
    text-align: center;
}

.footer__logo-img {
    height: 4rem;
    width: auto;
    margin-bottom: var(--mb-1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--mb-1);
}

.footer__title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--mb-1);
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--white-color);
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: var(--mb-1);
}

.footer__social-link {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
}

.footer__social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.15) translateZ(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer__copy {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    width: 64px;
    height: 64px;
    bottom: 2rem;
    inset-inline-end: 2rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white-color);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
    z-index: var(--z-fixed);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
}

[dir="rtl"] .whatsapp-float {
    inset-inline-end: auto;
    inset-inline-start: 2rem;
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float .icon-whatsapp {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* ===== Sticky Mobile Call Button ===== */
.sticky-call-button {
    position: fixed;
    bottom: 2rem;
    inset-inline-start: 2rem;
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 1rem 2rem;
    border-radius: 3rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4), 0 0 0 0 rgba(0, 102, 204, 0.5);
    z-index: calc(var(--z-fixed) - 1);
    font-weight: var(--font-bold);
    font-size: var(--normal-font-size);
    min-height: 56px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-call 2s infinite;
    white-space: nowrap;
    transform: none;
}

[dir="rtl"] .sticky-call-button {
    inset-inline-start: auto;
    inset-inline-end: 2rem;
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4), 0 0 0 0 rgba(0, 102, 204, 0.5);
    }
    50% {
        box-shadow: 0 8px 24px rgba(0, 102, 204, 0.6), 0 0 0 10px rgba(0, 102, 204, 0);
    }
    100% {
        box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4), 0 0 0 0 rgba(0, 102, 204, 0.5);
    }
}

.sticky-call-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.6);
    animation: none;
}

[dir="rtl"] .sticky-call-button:hover {
    transform: translateY(-3px) scale(1.05);
}

.sticky-call-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.sticky-call-text {
    font-weight: var(--font-bold);
}

/* Hide sticky call button on desktop */
@media screen and (min-width: 768px) {
    .sticky-call-button {
        display: none;
    }
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: var(--mb-1);
}

.mb-2 {
    margin-bottom: var(--mb-2);
}

.mb-3 {
    margin-bottom: var(--mb-3);
}

