/* CSS Design System & Variables - Premium Light Mode */
:root {
    --bg-deep: #f8fafc;
    /* Sleek slate-white background */
    --bg-dark: #ffffff;
    /* Pure white for containers and cards */
    --bg-card: rgba(255, 255, 255, 0.9);
    --gold: #e95f20;
    /* Primary Brand Orange from Logo */
    --gold-rgb: 233, 95, 32;
    --gold-glow: rgba(233, 95, 32, 0.08);
    --gold-hover: #d24e13;
    --text-light: #1e293b;
    /* Deep slate gray for readability */
    --text-muted: #64748b;
    /* Cool gray for descriptions */
    --white: #0f172a;
    /* Near-black for titles and headings */
    --whatsapp-green: #25d366;

    --font-ar: 'Cairo', sans-serif;
    --font-en: 'Plus Jakarta Sans', sans-serif;

    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-border: rgba(15, 23, 42, 0.06);
    --gold-border: rgba(233, 95, 32, 0.15);

    --shadow-soft: 0 10px 30px -10px rgba(15, 23, 42, 0.06);
    --shadow-gold: 0 15px 40px -15px rgba(233, 95, 32, 0.18);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-deep);
    color: var(--text-light);
    overflow-x: clip;
    max-width: 100%;
}

body {
    background-color: var(--bg-deep);
    overflow-x: clip;
    position: relative;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100%;
}

/* Language Selection Triggers */
body.lang-ar {
    font-family: var(--font-ar);
    direction: rtl;
}

body.lang-en {
    font-family: var(--font-en);
    direction: ltr;
}

/* Translation Visibility Helper */
body.lang-ar .en-text {
    display: none !important;
}

body.lang-en .ar-text {
    display: none !important;
}

/* Background Glow Elements */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(160px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.08;
}

.bg-glow-1 {
    background: radial-gradient(circle, var(--gold), transparent);
    top: 10%;
    left: -200px;
}

.bg-glow-2 {
    background: radial-gradient(circle, rgba(var(--gold-rgb), 0.8), transparent);
    bottom: 20%;
    right: -200px;
}

/* Typography & Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.align-center {
    align-items: center;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
}

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

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

/* Grid Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 8px;
}

body.lang-ar .btn {
    font-family: var(--font-ar);
}

body.lang-en .btn {
    font-family: var(--font-en);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #d24e13);
    color: #ffffff;
    /* White text for orange button */
    box-shadow: 0 4px 15px rgba(var(--gold-rgb), 0.25);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-hover), var(--gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold-border);
}

.btn-outline:hover {
    background: rgba(var(--gold-rgb), 0.05);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: #ffffff;
}

.btn-block {
    width: 100%;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

/* Section Common Styling */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    bottom: -10px;
}

body.lang-ar .section-title::after {
    right: 0;
}

body.lang-en .section-title::after {
    left: 0;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 16px;
    max-width: 600px;
    margin: 16px auto 0;
}

.section-desc {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--text-muted);
}

/* Header / Navbar */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    z-index: 100;
    transition: var(--transition-smooth);
    background-color: rgba(255, 255, 255, 0.85);
    /* Light glassmorphism by default for maximum menu readability */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.02);
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: var(--glass-border);
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.05);
}

.header-container {
    height: 100px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 80px;
}

.header-col-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-col-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    /* Reduced from 32px to bring menus closer */
}

.logo-img {
    height: 68px;
    /* Enlarged logo */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-img {
    height: 52px;
    /* Enlarged scrolled logo */
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
    /* Tighter spacing (reduced from 32px) to keep menu close to logo */
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-fast);
}

body.lang-ar .nav-link::after {
    right: 0;
}

body.lang-en .nav-link::after {
    left: 0;
}

.nav-link:hover {
    color: var(--gold);
}

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

.contact-btn-nav {
    border: 1.5px solid var(--gold-border);
    border-radius: 6px;
    padding: 8px 16px !important;
    color: var(--gold);
}

.contact-btn-nav::after {
    display: none;
}

.contact-btn-nav:hover {
    background-color: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
}

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

/* Language Switch Button */
.lang-toggle-btn {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.lang-ar .lang-toggle-btn {
    font-family: var(--font-en);
}

body.lang-en .lang-toggle-btn {
    font-family: var(--font-ar);
}

.lang-toggle-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(233, 95, 32, 0.05);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    width: min(300px, 85vw);
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 150;
    padding: 32px 24px;
    transition: transform var(--transition-smooth), visibility var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 30px rgba(15, 23, 42, 0.08);
    visibility: hidden;
}

body.lang-ar .mobile-drawer {
    right: 0;
    left: auto;
    transform: translateX(100%);
    border-left: 1px solid var(--glass-border);
}

body.lang-en .mobile-drawer {
    left: 0;
    right: auto;
    transform: translateX(-100%);
    border-right: 1px solid var(--glass-border);
}

.mobile-drawer.open {
    visibility: visible !important;
    transform: translateX(0) !important;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.drawer-logo {
    height: 38px;
}

.close-drawer {
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
}

.drawer-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-link {
    font-size: 18px;
    font-weight: 600;
    display: block;
    padding: 8px 0;
    color: var(--text-light); /* Explicit text color for mobile drawer links */
    border-bottom: 1px solid var(--glass-border);
}

.drawer-link:hover {
    color: var(--gold);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    width: auto;
    height: auto;
    background-color: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(4px);
    z-index: 140;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-indicators .indicator.active {
    background-color: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.4);
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 750px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(233, 95, 32, 0.06);
    border: 1px solid var(--gold-border);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--white) 60%, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #000000;
}

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

/* About Section */
.about-visual {
    position: relative;
}

.image-frame-gold {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.image-frame-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--gold);
    opacity: 0.2;
    border-radius: 12px;
    z-index: 2;
    pointer-events: none;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.about-visual:hover .about-img {
    transform: scale(1.03);
}

.mission-vision-mini {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.mini-card {
    display: flex;
    gap: 16px;
    background-color: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 16px 20px;
    box-shadow: var(--shadow-soft);
}

.mini-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(var(--gold-rgb), 0.06);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-card-body h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.mini-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Stats metrics styling */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.metric-card {
    background-color: var(--bg-dark);
    border: 1px dashed var(--glass-border);
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.metric-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* Why Us Section */
.advantages-grid {
    margin-top: 40px;
}

.adv-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, var(--gold-glow), transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.adv-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-border);
    box-shadow: var(--shadow-gold);
}

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

.adv-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(var(--gold-rgb), 0.05);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.adv-card:hover .adv-icon {
    background: var(--gold);
    color: #ffffff;
    transform: rotate(5deg) scale(1.05);
}

.adv-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.adv-card p {
    font-size: 14.5px;
    line-height: 1.6;
}

/* Services Section */
.services-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: stretch;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px 30px;
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 20px;
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--gold-border);
    box-shadow: var(--shadow-gold);
}

.service-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: rgba(var(--gold-rgb), 0.05);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: #ffffff;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.services-visual {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid var(--glass-border);
}

.services-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.4), transparent);
}

.service-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Products Section */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.tab-btn {
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

body.lang-ar .tab-btn {
    font-family: var(--font-ar);
}

body.lang-en .tab-btn {
    font-family: var(--font-en);
}

.tab-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.tab-btn.active {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
}

.product-content-wrapper {
    position: relative;
    min-height: 450px;
}

.product-tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth), visibility var(--transition-smooth);
    pointer-events: none;
}

.product-tab-content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.product-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(var(--gold-rgb), 0.05);
    border: 1px solid var(--gold-border);
    border-radius: 4px;
    font-size: 13px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 16px;
}

.product-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.featured-brands {
    margin: 24px 0;
}

.featured-brands h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--white);
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-item {
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.product-features {
    list-style: none;
    margin-bottom: 32px;
}

.product-features li {
    position: relative;
    padding-right: 20px;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14.5px;
    color: var(--text-muted);
}

.product-features li::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gold);
    top: 9px;
}

body.lang-ar .product-features li::before {
    right: 0;
}

body.lang-en .product-features li::before {
    left: 0;
}

.product-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
}

.prod-img {
    width: 100%;
    height: auto;
    transition: var(--transition-smooth);
}

.product-tab-content:hover .prod-img {
    transform: scale(1.02);
}

/* Partners Section */
.partners-section {
    padding-bottom: 60px;
    overflow: hidden;
}

.partners-ticker-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.ticker-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.ticker-track {
    display: inline-flex;
    gap: 16px;
    animation-play-state: running;
}

.ticker-container:hover .ticker-track {
    animation-play-state: paused;
}

.direction-normal .ticker-track {
    animation: marquee-normal 35s linear infinite;
}

.direction-reverse .ticker-track {
    animation: marquee-reverse 35s linear infinite;
}

.partner-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    padding: 16px 36px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    box-shadow: var(--shadow-soft);
    min-width: 180px;
    text-align: center;
}

.partner-logo span {
    color: var(--white);
    letter-spacing: 0.03em;
}

@keyframes marquee-normal {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes marquee-reverse {
    0% {
        transform: translate3d(-50%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* Contact Section */
.contact-section {
    background-color: #f1f5f9;
    /* Soft light grey background */
    border-top: 1px solid var(--glass-border);
}

.gap-4 {
    gap: 64px;
}

.contact-details-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.info-item-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-2px);
}

.info-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(var(--gold-rgb), 0.05);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item-content h4 {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 600;
}

.info-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.info-link-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.whatsapp-highlight {
    border-color: rgba(37, 211, 102, 0.2);
    background: rgba(37, 211, 102, 0.02);
}

.whatsapp-highlight:hover {
    border-color: var(--whatsapp-green);
    box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.15);
}

.whatsapp-highlight .info-item-icon {
    background: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp-green);
}

.whatsapp-btn {
    color: var(--whatsapp-green);
}

/* Form Styles */
.contact-form-panel {
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.contact-form h3 {
    font-size: 22px;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 12px;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2.5px;
    background-color: var(--gold);
    bottom: 0;
}

body.lang-ar .contact-form h3::after {
    right: 0;
}

body.lang-en .contact-form h3::after {
    left: 0;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-size: 14.5px;
    transition: var(--transition-fast);
}

body.lang-ar .form-group input,
body.lang-ar .form-group select,
body.lang-ar .form-group textarea {
    font-family: var(--font-ar);
}

body.lang-en .form-group input,
body.lang-en .form-group select,
body.lang-en .form-group textarea {
    font-family: var(--font-en);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.08);
}

.form-group select option {
    background-color: var(--bg-dark);
    color: var(--white);
}

/* Success Modal Pop-up */
.success-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 100%;
    max-width: 450px;
    background: var(--bg-dark);
    border: 1.5px solid var(--gold);
    border-radius: 16px;
    padding: 40px 32px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition-smooth), opacity var(--transition-smooth), visibility var(--transition-smooth);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.success-modal.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(var(--gold-rgb), 0.08);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.success-modal h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.success-modal p {
    font-size: 15px;
    margin-bottom: 28px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 190;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Footer Section */
.main-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
    background-image: linear-gradient(to bottom, rgb(16 131 181 / 60%), rgba(15, 23, 42, 0.97)), url(img/hero-bg2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 64px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 128px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    /* Light gray for readability on dark background */
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 700;
}

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

.footer-links a {
    color: #ffffff;
    /* Light gray link color */
    font-size: 14.5px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
    /* Brand orange hover highlight */
}

.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.4;
    color: #ffffff;
}

.contact-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-email {
    color: #ffffff;
    transition: var(--transition-fast);
}

.footer-email:hover {
    color: var(--gold);
}

.hours-p {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    /* White text for hours header */
    margin-bottom: 8px;
}

.hours-desc {
    font-size: 13.5px;
    line-height: 1.5;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    /* White border divider */
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 13.5px;
    color: #64748b;
}

/* Floating WhatsApp Link */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--whatsapp-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition-smooth);
    animation: pulseWhatsapp 2s infinite;
}

body.lang-ar .floating-whatsapp {
    left: 30px;
}

body.lang-en .floating-whatsapp {
    right: 30px;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes pulseWhatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-legal {
        grid-column: span 2;
    }

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

    .services-wrapper {
        grid-template-columns: 1fr;
    }

    .services-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .bg-glow {
        display: none;
    }

    .header-container {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80px;
        width: 100%;
        padding: 0 24px;
    }

    .header-col-left {
        display: none;
    }

    .header-col-right {
        position: static;
        width: 0;
        min-width: 0;
        flex: 0 0 0;
        overflow: visible;
    }

    .header-actions {
        position: static;
    }

    .logo-area {
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 5;
        flex: 1;
    }

    .logo-img {
        height: 65px !important;
    }

    section {
        padding: 70px 0;
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    .container {
        max-width: 100%;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .mobile-menu-btn {
        position: absolute;
        display: flex;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);
    }

    .lang-toggle-btn {
        position: absolute;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);
    }

    /* RTL Layout Positions */
    body.lang-ar .mobile-menu-btn {
        right: 24px;
        left: auto;
    }
    body.lang-ar .lang-toggle-btn {
        left: 24px;
        right: auto;
    }

    /* LTR Layout Positions */
    body.lang-en .mobile-menu-btn {
        left: 24px;
        right: auto;
    }
    body.lang-en .lang-toggle-btn {
        right: 24px;
        left: auto;
    }

    .nav-menu {
        display: none;
    }

    .hero-section {
        padding-top: 110px;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .product-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-legal {
        grid-column: span 1;
    }

    .contact-form-panel {
        padding: 24px;
    }

    .service-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px;
    }

    .service-card h3 {
        margin-bottom: 0;
        line-height: 1.4;
    }

    .service-card p {
        line-height: 1.6;
    }
}

/* Product Cards Grid & Layout */
.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
    width: 100%;
}

.product-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-card-img {
    height: 180px;
    overflow: hidden;
    position: relative;
    background-color: #f1f5f9;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-card-img img {
    transform: scale(1.04);
}

.product-card-brand {
    position: absolute;
    top: 12px;
    background: var(--gold);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

body.lang-ar .product-card-brand {
    right: 12px;
    left: auto;
}

body.lang-en .product-card-brand {
    left: 12px;
    right: auto;
}

.product-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--white);
}

.product-card-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
    line-height: 1.5;
}

.product-card-specs {
    margin-bottom: 20px;
    padding-top: 12px;
    border-top: 1px dashed var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-card-spec-item {
    font-size: 12.5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card-spec-item::before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

body.lang-ar .product-card-spec-item::before {
    margin-left: 2px;
}

body.lang-en .product-card-spec-item::before {
    margin-right: 2px;
}

.product-card-footer {
    margin-top: auto;
}

.product-card.hidden-product {
    display: none !important;
}

.phone-number,
.phone-ltr {
    direction: ltr !important;
    display: inline-block !important;
    unicode-bidi: embed;
    text-align: left;
}