/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0e1a;
    --bg-darker: #050810;
    --bg-card: #131827;
    --bg-card-hover: #1a1f2e;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    --accent-yellow: #ffd700;
    --accent-yellow-dark: #ffb800;
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --border-color: #1e293b;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

html[dir="rtl"],
html[dir="rtl"] body,
body[dir="rtl"] {
    font-family: 'Tajawal', sans-serif;
}

/* Ensure all elements inherit Tajawal in RTL */
html[dir="rtl"] * {
    font-family: 'Tajawal', sans-serif;
}

/* Ensure all text elements use the correct fonts */
h1, h2, h3, h4, h5, h6,
p, span, div, a, li, ul, ol,
button, input, textarea, select, label,
.nav-menu a, .btn, .section-title, .section-description,
.product-info h3, .product-info span,
.drawer-header h2, .drawer-header p,
.about-title, .about-text,
.mission-value-card h5,
.contact-item h3, .contact-item p,
.footer-section h3, .footer-section h4, .footer-section p,
.feature-box h3, .feature-box p {
    font-family: inherit;
}

/* Explicit font declarations for English */
body:not([dir="rtl"]) h1,
body:not([dir="rtl"]) h2,
body:not([dir="rtl"]) h3,
body:not([dir="rtl"]) h4,
body:not([dir="rtl"]) h5,
body:not([dir="rtl"]) h6,
body:not([dir="rtl"]) p,
body:not([dir="rtl"]) span,
body:not([dir="rtl"]) a,
body:not([dir="rtl"]) button,
body:not([dir="rtl"]) input,
body:not([dir="rtl"]) textarea,
body:not([dir="rtl"]) select,
body:not([dir="rtl"]) label,
body:not([dir="rtl"]) li,
body:not([dir="rtl"]) .nav-menu a,
body:not([dir="rtl"]) .btn,
body:not([dir="rtl"]) .section-title,
body:not([dir="rtl"]) .section-description {
    font-family: 'Quicksand', sans-serif;
}

/* Explicit font declarations for Arabic */
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] p,
html[dir="rtl"] span,
html[dir="rtl"] a,
html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select,
html[dir="rtl"] label,
html[dir="rtl"] li,
html[dir="rtl"] .nav-menu a,
html[dir="rtl"] .btn,
html[dir="rtl"] .section-title,
html[dir="rtl"] .section-description,
html[dir="rtl"] .product-info h3,
html[dir="rtl"] .product-info span,
html[dir="rtl"] .drawer-header h2,
html[dir="rtl"] .drawer-header p,
html[dir="rtl"] .mission-value-card h5,
html[dir="rtl"] .mission-value-card ul li,
html[dir="rtl"] .about-title,
html[dir="rtl"] .about-text,
html[dir="rtl"] .contact-item h3,
html[dir="rtl"] .contact-item p,
html[dir="rtl"] .footer-section h3,
html[dir="rtl"] .footer-section h4,
html[dir="rtl"] .footer-section p,
html[dir="rtl"] .feature-box h3,
html[dir="rtl"] .feature-box p,
html[dir="rtl"] .section-label,
body[dir="rtl"] h1,
body[dir="rtl"] h2,
body[dir="rtl"] h3,
body[dir="rtl"] h4,
body[dir="rtl"] h5,
body[dir="rtl"] h6,
body[dir="rtl"] p,
body[dir="rtl"] span,
body[dir="rtl"] a,
body[dir="rtl"] button,
body[dir="rtl"] input,
body[dir="rtl"] textarea,
body[dir="rtl"] select,
body[dir="rtl"] label,
body[dir="rtl"] li,
body[dir="rtl"] .nav-menu a,
body[dir="rtl"] .btn,
body[dir="rtl"] .section-title,
body[dir="rtl"] .section-description,
body[dir="rtl"] .product-info h3,
body[dir="rtl"] .product-info span,
body[dir="rtl"] .drawer-header h2,
body[dir="rtl"] .drawer-header p,
body[dir="rtl"] .mission-value-card h5,
body[dir="rtl"] .mission-value-card ul li,
body[dir="rtl"] .about-title,
body[dir="rtl"] .about-text,
body[dir="rtl"] .contact-item h3,
body[dir="rtl"] .contact-item p,
body[dir="rtl"] .footer-section h3,
body[dir="rtl"] .footer-section h4,
body[dir="rtl"] .footer-section p,
body[dir="rtl"] .feature-box h3,
body[dir="rtl"] .feature-box p,
body[dir="rtl"] .section-label {
    font-family: 'Tajawal', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--text-primary);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.lang-switcher:hover {
    background: var(--bg-card);
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    background: var(--bg-darker);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 2s; }
.particle:nth-child(3) { left: 50%; top: 10%; animation-delay: 4s; }
.particle:nth-child(4) { left: 70%; top: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 80%; top: 70%; animation-delay: 8s; }
.particle:nth-child(6) { left: 30%; top: 80%; animation-delay: 10s; }
.particle:nth-child(7) { left: 60%; top: 30%; animation-delay: 12s; }
.particle:nth-child(8) { left: 90%; top: 50%; animation-delay: 14s; }
.particle:nth-child(9) { left: 15%; top: 45%; animation-delay: 1s; }
.particle:nth-child(10) { left: 35%; top: 25%; animation-delay: 3s; }
.particle:nth-child(11) { left: 55%; top: 65%; animation-delay: 5s; }
.particle:nth-child(12) { left: 75%; top: 15%; animation-delay: 7s; }
.particle:nth-child(13) { left: 25%; top: 55%; animation-delay: 9s; }
.particle:nth-child(14) { left: 45%; top: 75%; animation-delay: 11s; }
.particle:nth-child(15) { left: 65%; top: 5%; animation-delay: 13s; }
.particle:nth-child(16) { left: 85%; top: 35%; animation-delay: 15s; }
.particle:nth-child(17) { left: 5%; top: 30%; animation-delay: 0.5s; }
.particle:nth-child(18) { left: 40%; top: 50%; animation-delay: 2.5s; }
.particle:nth-child(19) { left: 95%; top: 25%; animation-delay: 4.5s; }
.particle:nth-child(20) { left: 12%; top: 70%; animation-delay: 6.5s; }
.particle:nth-child(21) { left: 28%; top: 35%; animation-delay: 8.5s; }
.particle:nth-child(22) { left: 52%; top: 85%; animation-delay: 10.5s; }
.particle:nth-child(23) { left: 68%; top: 55%; animation-delay: 12.5s; }
.particle:nth-child(24) { left: 88%; top: 80%; animation-delay: 14.5s; }
.particle:nth-child(25) { left: 8%; top: 60%; animation-delay: 1.5s; }
.particle:nth-child(26) { left: 38%; top: 15%; animation-delay: 3.5s; }
.particle:nth-child(27) { left: 58%; top: 40%; animation-delay: 5.5s; }
.particle:nth-child(28) { left: 78%; top: 65%; animation-delay: 7.5s; }
.particle:nth-child(29) { left: 18%; top: 85%; animation-delay: 9.5s; }
.particle:nth-child(30) { left: 48%; top: 5%; animation-delay: 11.5s; }

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.8;
    }
}

/* Curved Yellow Shapes */
.yellow-curve {
    position: absolute;
    z-index: 2;
    background: var(--accent-yellow);
    opacity: 0.9;
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.5));
    animation: curveFloat 12s ease-in-out infinite;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.3);
}

.yellow-curve-left {
    bottom: -100px;
    left: -200px;
    width: 600px;
    height: 800px;
    border-radius: 60% 40% 0 0;
    transform: rotate(-20deg) skewY(-8deg);
    transform-origin: bottom left;
    clip-path: ellipse(60% 50% at 30% 100%);
}

.yellow-curve-right {
    top: -150px;
    right: -100px;
    width: 300px;
    height: 120%;
    border-radius: 0 0 50% 50%;
    transform: rotate(3deg);
    transform-origin: top right;
    clip-path: ellipse(40% 60% at 50% 0%);
}

@keyframes curveFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(-20deg) skewY(-8deg);
    }
    50% {
        transform: translateY(-20px) translateX(8px) rotate(-18deg) skewY(-6deg);
    }
}

body[dir="rtl"] .yellow-curve-left {
    transform: rotate(20deg) skewY(8deg);
    left: auto;
    right: -200px;
    animation: curveFloatRTL 12s ease-in-out infinite;
}

body[dir="rtl"] .yellow-curve-right {
    transform: rotate(-3deg);
    right: auto;
    left: -100px;
}

@keyframes curveFloatRTL {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(20deg) skewY(8deg);
    }
    50% {
        transform: translateY(-20px) translateX(-8px) rotate(18deg) skewY(6deg);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    width: 100%;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

/* Logo Section */
.hero-logo {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.company-logo-img {
    max-width: 455px;
    max-height: 455px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
    animation: logoGlow 3s ease-in-out infinite, logoFloat 6s ease-in-out infinite;
    transform-origin: center;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.8));
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.logo-arabic {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Tajawal', sans-serif;
    margin: 0;
}

.logo-english {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 8px;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}

/* Company Name Section */
.hero-company-name {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.company-name-arabic {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-yellow);
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.company-name-english {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Quicksand', sans-serif;
}

html[dir="rtl"] .btn,
body[dir="rtl"] .btn {
    font-family: 'Tajawal', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    color: var(--bg-dark);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Partners Section */
.partners {
    padding: 5rem 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.partners-carousel {
    display: flex;
    gap: 3rem;
    align-items: center;
    width: fit-content;
    animation: scrollPartners 30s linear infinite;
}

.partners-carousel.paused {
    animation-play-state: paused;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    transition: var(--transition);
    height: 120px;
    min-width: 180px;
    flex-shrink: 0;
    cursor: pointer;
}

.partner-logo:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover img {
    opacity: 1;
    filter: brightness(0) invert(1);
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about {
    position: relative;
    padding: 2rem 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.yellow-accent {
    position: absolute;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
}

.yellow-accent-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -200px;
}

.yellow-accent-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--accent-yellow);
    opacity: 0.5;
}

.section-label::before {
    left: calc(50% - 60px);
}

.section-label::after {
    right: calc(50% - 60px);
}

html[dir="rtl"] .section-label::before,
body[dir="rtl"] .section-label::before {
    left: auto;
    right: calc(50% - 60px);
}

html[dir="rtl"] .section-label::after,
body[dir="rtl"] .section-label::after {
    right: auto;
    left: calc(50% - 60px);
}

.about {
    position: relative;
    overflow: hidden;
}

.about-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    filter: blur(60px);
}

.about-bg-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: floatShape 20s ease-in-out infinite;
}

.about-bg-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, transparent 70%);
    bottom: -50px;
    right: 10%;
    animation: floatShape 15s ease-in-out infinite reverse;
}

.about-bg-shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    top: 50%;
    right: -50px;
    animation: floatShape 18s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.about-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 0;
}

.about-title,
.about-title-ar {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    line-height: 1.2;
    color: var(--text-primary);
    text-align: center;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.about-title::after,
.about-title-ar::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #a2a29fbf, transparent);
    border-radius: 3px;
}

html[dir="rtl"] .about-title-ar,
html[dir="rtl"] .logo-arabic,
html[dir="rtl"] .company-name-arabic,
html[dir="rtl"] .section-title-ar,
html[dir="rtl"] .section-description-ar,
.about-title-ar,
.logo-arabic,
.company-name-arabic,
.section-title-ar,
.section-description-ar {
    font-family: 'Tajawal', sans-serif;
}

.about-text {
    color: var(--text-secondary);
    line-height: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.about-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.highlight-product {
    color: var(--accent-yellow);
    font-weight: 500;
    background: rgb(255 215 0 / 6%);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    display: inline;
    margin: 0 0.2rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.highlight-product:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

html[dir="rtl"] .highlight-product,
body[dir="rtl"] .highlight-product {
    display: inline;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.highlight-yellow {
    color: var(--accent-yellow);
}

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

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
}

.about-feature-item .feature-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-feature-item small {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.3) 0%, rgba(10, 14, 26, 0.8) 100%);
}

.logo-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    z-index: 3;
}

.logo-overlay h2 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

/* Mission & Values Section with Animated Boxes */
.mission-values-section {
    padding: 6rem 0;
    background: var(--bg-darker);
    position: relative;
}

.mission-values-section::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 100px;
    width: 220px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.mission-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mission-value-card {
    position: relative;
    background-color: var(--bg-card);
    border: 1px solid var(--accent-yellow);
    height: 300px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.mission-value-card .default-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--accent-yellow);
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 1;
    padding: 2rem;
}

.mission-value-card .hover-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 2rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.92);
    color: var(--accent-yellow);
    transform: translateY(100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 2;
}

.mission-value-card:hover .hover-content {
    transform: translateY(0);
    opacity: 1;
}

.mission-value-card:hover .default-content {
    transform: translateY(-100%);
    opacity: 0;
}

.mission-value-card h5 {
    font-weight: bold;
    font-size: 1.3rem;
    margin: 0;
}

.mission-value-card ul {
    padding-left: 1.2rem;
    font-size: 0.95rem;
    text-align: left;
    list-style: none;
    margin: 0;
}

.mission-value-card ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.mission-value-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

.mission-value-card .hover-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: left;
    margin: 0;
    color: var(--text-secondary);
}

html[dir="rtl"] .mission-value-card .hover-content p,
body[dir="rtl"] .mission-value-card .hover-content p {
    text-align: right;
}

.mission-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 60px solid #2a2a2a;
    border-left: 60px solid transparent;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.mission-value-card:hover::before {
    opacity: 1;
}

.mission-card::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    opacity: 1;
    z-index: 0;
}

.vision-card::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    opacity: 1;
    z-index: 0;
}

/* Card Shapes Decoration */
.card-shape {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mission-value-card:hover .card-shape {
    opacity: 0.25;
}

.card-shape .shape-decoration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

html[dir="rtl"] .card-shape,
body[dir="rtl"] .card-shape {
    right: auto;
    left: 20px;
}
.mission-values-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Timeline Style (Left Side) */
.values-list-container {
    position: relative;
    padding-left: 40px;
}

.values-timeline-line {
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: var(--accent-yellow);
}

.value-item {
    position: relative;
    margin-bottom: 40px;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-circle {
    position: absolute;
    left: -40px;
    top: 5px;
    width: 16px;
    height: 16px;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px var(--accent-yellow);
}

.value-text h3 {
    color: var(--accent-yellow);
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.value-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Right Side Content */
.values-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: left; /* Aligns with English flow */
}

/* RTL Support for the Timeline */
body[dir="rtl"] .values-list-container {
    padding-left: 0;
    padding-right: 40px;
}

body[dir="rtl"] .values-timeline-line {
    left: auto;
    right: 7px;
}

body[dir="rtl"] .value-circle {
    left: auto;
    right: -40px;
}

body[dir="rtl"] .values-content .section-title {
    text-align: right;
}

/* Responsiveness */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-content {
        order: -1; /* Puts the description on top on mobile */
    }
}

/* Values Section - Company Profile Style */
.values-section {
    padding: 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.values-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 700px;
    overflow: hidden;
}

/* Curved Line Connector */
.values-connector {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 400px;
    z-index: 10;
    pointer-events: none;
}

.values-curve-line {
    width: 100%;
    height: 100%;
}

.curve-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawCurveLine 2s ease-out forwards;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
}

.curve-dot {
    opacity: 0;
    animation: fadeInCurveDot 0.5s ease forwards;
}

.curve-dot-left {
    animation-delay: 1.8s;
}

.curve-dot-right {
    animation-delay: 2s;
}

@keyframes drawCurveLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInCurveDot {
    to {
        opacity: 1;
    }
}

.values-left {
    position: relative;
    z-index: 2;
    background: linear-gradient(to right, #1a1f2e 0%, #1a1f2e 85%, rgba(26, 31, 46, 0.5) 95%, transparent 100%);
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
}

.values-left-content {
    width: 100%;
}

.values-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 3rem;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.2;
}

.values-list-container {
    position: relative;
    padding-left: 40px;
}

.values-timeline-line {
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-yellow), var(--accent-yellow-dark));
    z-index: 1;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.value-item {
    position: relative;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInValue 0.6s ease forwards;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-item:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2) { animation-delay: 0.2s; }
.value-item:nth-child(3) { animation-delay: 0.3s; }
.value-item:nth-child(4) { animation-delay: 0.4s; }
.value-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInValue {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.value-node {
    position: absolute;
    left: -40px;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-yellow);
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    animation: pulseDot 2s ease-in-out infinite;
}

.value-node::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-yellow);
    opacity: 0;
    animation: rippleDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 25px rgba(255, 215, 0, 1);
    }
}

@keyframes rippleDot {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.value-item:nth-child(1) .value-node { animation-delay: 0s; }
.value-item:nth-child(2) .value-node { animation-delay: 0.4s; }
.value-item:nth-child(3) .value-node { animation-delay: 0.8s; }
.value-item:nth-child(4) .value-node { animation-delay: 1.2s; }
.value-item:nth-child(5) .value-node { animation-delay: 1.6s; }

.value-content {
    flex: 1;
}

.value-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    font-family: 'Quicksand', sans-serif;
}

.value-description {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}

.values-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    background: linear-gradient(to left, #000000 0%, #000000 85%, rgba(0, 0, 0, 0.5) 95%, transparent 100%);
    height: 100%;
}

.values-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    animation: logoFadeIn 1s ease;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.values-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.4));
}

/* Products Section */
.products {
    position: relative;
    padding: 6rem 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.section-title,
.section-title-ar {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after,
.section-title-ar::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #a2a29fbf, transparent);
    border-radius: 3px;
}

.section-title-ar {
    font-family: 'Tajawal', sans-serif;
}

.section-description,
.section-description-ar {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.section-description-ar {
    font-family: 'Tajawal', sans-serif;
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Products Carousel */
.products-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 4rem 0;
    margin-top: 3rem;
}

/* Light Pulse Background Effect */
.products-light-pulse {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 215, 0, 0.02) 20%,
        rgba(255, 215, 0, 0.06) 50%,
        rgba(255, 215, 0, 0.02) 80%,
        transparent 100%
    );
    animation: lightPulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes lightPulse {
    0%, 100% {
        opacity: 0.15;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.3;
        transform: scaleY(1.05);
    }
}

.products-carousel {
    display: flex;
    gap: 4rem;
    align-items: center;
    width: fit-content;
    animation: scrollProducts 40s linear infinite;
    position: relative;
    z-index: 2;
}

.products-carousel.paused {
    animation-play-state: paused;
}

@keyframes scrollProducts {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollProductsRTL {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

html[dir="rtl"] .products-carousel,
body[dir="rtl"] .products-carousel {
    animation: scrollProductsRTL 40s linear infinite;
}

.product-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 4rem;
    background: var(--bg-card);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 280px;
    min-width: 320px;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.product-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.product-logo-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.15);
}

.product-logo-card:active {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.1);
}

/* Glow Effect */
.product-logo-glow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
    filter: blur(30px);
    z-index: 0;
    animation: glowPulse 2s ease-in-out infinite;
}

.product-logo-card:hover .product-logo-glow {
    opacity: 0.1;
    width: 300px;
    height: 300px;
    bottom: -80px;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.1;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.25;
        transform: translateX(-50%) scale(1.1);
    }
}

.product-logo-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-logo-content img {
    max-width: 180px;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.2));
    transition: all 0.4s ease;
}

.product-logo-card:hover .product-logo-content img {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 16px rgba(255, 215, 0, 0.15));
}



/* Product Drawer */
.product-drawer {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.product-drawer.active {
    display: block;
}

.drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

.drawer-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 85%;
    background: var(--bg-darker);
    border-radius: 30px 30px 0 0;
    padding: 3rem;
    animation: slideUp 0.45s ease;
    overflow-y: auto;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.drawer-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10000;
}

.drawer-close:hover {
    background: var(--bg-card);
    color: var(--accent-yellow);
    transform: rotate(90deg);
}

.drawer-header {
    margin-bottom: 2.5rem;
    padding-right: 3rem;
}

.drawer-header h2 {
    font-size: 2.2rem;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.drawer-header p {
    color: var(--text-secondary);
    max-width: 700px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.drawer-gallery {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.drawer-gallery img {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 500px;
    object-fit: contain;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    background: var(--bg-card);
    padding: 1rem;
}

.drawer-gallery img:hover {
    transform: scale(1.03);
    border-color: var(--accent-yellow);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: var(--bg-card-hover);
}

/* Responsive Drawer */
@media (max-width: 1024px) {
    .drawer-gallery {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.8rem;
    }

    .drawer-gallery img {
        min-height: 280px;
        max-height: 450px;
    }
}

@media (max-width: 768px) {
    .drawer-content {
        height: 90%;
        padding: 2rem 1.5rem;
        border-radius: 20px 20px 0 0;
    }

    .drawer-close {
        top: 15px;
        right: 20px;
        font-size: 1.8rem;
    }

    .drawer-header {
        padding-right: 2.5rem;
        margin-bottom: 2rem;
    }

    .drawer-header h2 {
        font-size: 1.8rem;
    }

    .drawer-header p {
        font-size: 1rem;
    }

    .drawer-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .drawer-gallery img {
        min-height: 250px;
        max-height: 400px;
        padding: 0.8rem;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: var(--bg-darker);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-box {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-yellow);
}

.feature-icon {
    display: none;
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-cta {
    text-align: center;
    margin: 0rem 0;
    padding: 1rem;
    /* background: linear-gradient(139deg, rgb(255 215 0 / 9%) 0%, rgb(255 215 0 / 10%) 100%); */
    border-radius: 20px;
    /* border: 0.5px solid rgba(255, 215, 0, 0.3); */
}

.cta-text {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

.contact-locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.contact-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin: 0.3rem 0;
}

.contact-link:hover {
    color: var(--accent-yellow);
    text-decoration: underline;
    transform: translateX(5px);
}

html[dir="rtl"] .contact-link:hover,
body[dir="rtl"] .contact-link:hover {
    transform: translateX(-5px);
}

.contact-location {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-location:hover {
    border-color: var(--accent-yellow);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.location-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-location .contact-item {
    margin-bottom: 1.5rem;
}

.contact-location .contact-item:last-child {
    margin-bottom: 0;
}

.contact-location .contact-item p {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0.3rem 0;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

html[dir="rtl"] .form-group input,
html[dir="rtl"] .form-group textarea,
html[dir="rtl"] .form-group label,
body[dir="rtl"] .form-group input,
body[dir="rtl"] .form-group textarea,
body[dir="rtl"] .form-group label {
    font-family: 'Tajawal', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.85rem;
    color: var(--accent-yellow);
    background: var(--bg-card);
    padding: 0 0.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-address {
    margin-top: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    padding: 0.6rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-yellow);
    color: var(--bg-dark);
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

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

.footer-link:hover {
    color: var(--accent-yellow);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .company-logo-img {
        max-width: 364px;
        max-height: 364px;
    }
    
    .mission-values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .mission-value-card {
        height: 260px;
    }
    
    .logo-arabic {
        font-size: 2rem;
    }
    
    .logo-english {
        font-size: 1.6rem;
    }
    
    .company-name-arabic {
        font-size: 1.5rem;
    }
    
    .company-name-english {
        font-size: 1.1rem;
    }
    
    .yellow-curve-left {
        width: 450px;
        height: 650px;
        left: -150px;
    }
    
    .yellow-curve-right {
        width: 250px;
        right: -80px;
    }
    
    .about-wrapper {
        max-width: 100%;
        padding: 2rem 0;
    }

    .about-title,
    .about-title-ar {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about-title::after,
    .about-title-ar::after {
        width: 80px;
        height: 4px;
        bottom: -12px;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.8;
        padding: 0;
    }

    .about-text p {
        margin-bottom: 1.2rem;
    }

    .container {
        padding: 0 15px;
    }

    .about-bg-shape-1 {
        width: 250px;
        height: 250px;
        top: -50px;
        left: -50px;
    }

    .about-bg-shape-2 {
        width: 200px;
        height: 200px;
        bottom: -30px;
        right: 5%;
    }

    .about-bg-shape-3 {
        width: 150px;
        height: 150px;
        top: 40%;
        right: -30px;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-locations {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-location {
        padding: 2rem;
    }

    .location-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-cta {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-card);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .navbar-logo {
        height: 50px;
    }
    
    .company-logo-img {
        max-width: 120px;
        max-height: 120px;
    }
    
    .logo-arabic {
        font-size: 1.8rem;
    }
    
    .logo-english {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }
    
    .company-name-arabic {
        font-size: 1.3rem;
    }
    
    .company-name-english {
        font-size: 1rem;
    }
    
    .yellow-curve-left {
        width: 350px;
        height: 550px;
        left: -120px;
    }
    
    .yellow-curve-right {
        width: 180px;
        right: -60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .values-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
        padding: 0;
    }
    
    .values-connector {
        width: 250px;
        height: 300px;
        top: 48%;
    }
    
    .values-left {
        padding: 3rem 2rem;
        background: linear-gradient(to bottom, #1a1f2e 0%, #1a1f2e 85%, rgba(26, 31, 46, 0.5) 95%, transparent 100%);
    }
    
    .values-right {
        justify-content: center;
        padding: 3rem 2rem;
        background: linear-gradient(to top, #000000 0%, #000000 85%, rgba(0, 0, 0, 0.5) 95%, transparent 100%);
    }
    
    .values-logo {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .values-title {
        font-size: 2.5rem;
    }
    
    .value-name {
        font-size: 1.4rem;
    }
    
    .values-list-container {
        padding-left: 30px;
    }
    
    .value-node {
        left: -30px;
        width: 16px;
        height: 16px;
    }
    
    .products-carousel-wrapper {
        padding: 2.5rem 0;
    }

    .product-logo-card {
        min-width: 260px;
        height: 220px;
        padding: 1.5rem 2.5rem;
    }

    .product-logo-content img {
        max-width: 140px;
        max-height: 110px;
    }


    .products-carousel {
        gap: 2.5rem;
    }

    .products-light-pulse {
        height: 120px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-values-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .mission-value-card {
        height: 280px;
    }
    
    .partner-logo {
        min-width: 150px;
        height: 100px;
        padding: 1rem 1.5rem;
    }
    
    .partners-carousel {
        gap: 2rem;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
        padding: 1.5rem;
    }
    
    .modal-main-image {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .modal-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .modal-gallery img {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .company-logo-img {
        max-width: 325px;
        max-height: 325px;
    }
    
    .logo-arabic {
        font-size: 1.5rem;
    }
    
    .logo-english {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .company-name-arabic {
        font-size: 1.1rem;
    }
    
    .company-name-english {
        font-size: 0.9rem;
    }
    
    .modal-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-carousel-wrapper {
        padding: 2rem 0;
    }

    .product-logo-card {
        min-width: 220px;
        height: 200px;
        padding: 1.5rem 2rem;
    }

    .product-logo-content img {
        max-width: 120px;
        max-height: 100px;
    }

    .product-logo-label h4 {
        font-size: 0.9rem;
    }

    .products-carousel {
        gap: 2rem;
    }

    .products-light-pulse {
        height: 100px;
    }
    
    .modal-gallery img {
        height: 60px;
    }
    
    .yellow-curve-left {
        width: 280px;
        height: 450px;
        left: -100px;
    }
    
    .yellow-curve-right {
        width: 140px;
        right: -50px;
    }
    
    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .mission-value-card {
        height: 260px;
    }
    
    .partner-logo {
        min-width: 120px;
        height: 90px;
        padding: 0.8rem 1.2rem;
    }
    
    .partners-carousel {
        gap: 1.5rem;
    }
}

/* RTL Support */
body[dir="rtl"] .nav-menu {
    direction: rtl;
}

body[dir="rtl"] .nav-menu a::after {
    left: auto;
    right: 0;
}

body[dir="rtl"] .about-list li {
    padding-left: 0;
    padding-right: 2rem;
}

body[dir="rtl"] .about-list li::before {
    left: auto;
    right: 0;
}

body[dir="rtl"] .values-wrapper {
    direction: rtl;
}

body[dir="rtl"] .values-list-container {
    padding-left: 0;
    padding-right: 40px;
}

body[dir="rtl"] .values-timeline-line {
    left: auto;
    right: 7px;
}

body[dir="rtl"] .value-node {
    left: auto;
    right: -40px;
}

body[dir="rtl"] .footer-section a:hover {
    padding-left: 0;
    padding-right: 5px;
}

body[dir="rtl"] .form-group label {
    right: 1rem;
    left: auto;
}

body[dir="rtl"] .form-group input:focus + label,
body[dir="rtl"] .form-group input:valid + label,
body[dir="rtl"] .form-group textarea:focus + label,
body[dir="rtl"] .form-group textarea:valid + label {
    right: 0.8rem;
    left: auto;
}
