/* =============================================
   ALABRAR DWC - Landing Page Styles
   Colors extracted from logo:
   - Primary Green: #1B7A3D
   - Dark Green: #0D5A2A
   - Light Green: #27AE60
   - Black: #111111
   - White: #FFFFFF
   - Gold Accent: #C8A951
   ============================================= */

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

/* ── CSS Custom Properties ── */
:root {
    --primary: #1B7A3D;
    --primary-dark: #0D5A2A;
    --primary-light: #27AE60;
    --primary-lighter: #2ECC71;
    --accent-gold: #C8A951;
    --accent-gold-light: #E0C873;
    --black: #111111;
    --black-soft: #1A1A2E;
    --dark-bg: #0A0A0A;
    --dark-card: #141414;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.2);
    --shadow-green: 0 8px 30px rgba(27, 122, 61, 0.3);
    --shadow-gold: 0 8px 30px rgba(200, 169, 81, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-family: 'Cairo', sans-serif;
    --container-max: 1280px;
}

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

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

body {
    font-family: var(--font-family);
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

.container-custom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Utility Classes ── */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(27, 122, 61, 0.1), rgba(39, 174, 96, 0.08));
    color: var(--primary);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(27, 122, 61, 0.15);
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-title .title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-gold));
    border-radius: 4px;
    margin: 16px auto 0;
}

/* ── Animations ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(27, 122, 61, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(27, 122, 61, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes scroll-indicator {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ── Navigation ── */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
    background: transparent;
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    border-bottom: 1px solid rgba(27, 122, 61, 0.1);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: var(--transition-base);
}

.main-nav.scrolled .nav-logo img {
    height: 42px;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-logo-text .company-name-en {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
    transition: var(--transition-base);
}

.nav-logo-text .company-name-ar {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-base);
}

.main-nav.scrolled .nav-logo-text .company-name-en {
    color: var(--primary-dark);
}

.main-nav.scrolled .nav-logo-text .company-name-ar {
    color: var(--gray-500);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    position: relative;
    transition: var(--transition-base);
}

.main-nav.scrolled .nav-links a {
    color: var(--gray-700);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.main-nav.scrolled .nav-links a:hover,
.main-nav.scrolled .nav-links a.active {
    color: var(--primary);
    background: rgba(27, 122, 61, 0.08);
}

.nav-cta {
    padding: 10px 24px !important;
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 16px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

.main-nav.scrolled .lang-switch {
    border-color: var(--gray-200);
    color: var(--gray-700);
    background: var(--gray-100);
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.2);
}

.main-nav.scrolled .lang-switch:hover {
    background: var(--gray-200);
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--transition-base);
}

.main-nav.scrolled .nav-toggle span {
    background: var(--black);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Section ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.hero-bg-shapes .shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-light);
    top: -200px;
    right: -100px;
}

.hero-bg-shapes .shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-gold);
    bottom: -100px;
    left: -100px;
}

.hero-bg-shapes .shape-3 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--accent-gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-badge i {
    font-size: 0.8rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h1 .arabic-name {
    display: block;
    font-size: 2.5rem;
    margin-top: 8px;
    background: linear-gradient(135deg, var(--primary-lighter), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.8;
}

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

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-green);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(27, 122, 61, 0.4);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat .stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    display: block;
    line-height: 1;
}

.hero-stat .stat-number span {
    color: var(--accent-gold);
}

.hero-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.hero-logo-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
}

.hero-logo-circle {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 80px rgba(27, 122, 61, 0.2);
}

.hero-logo-circle img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 24px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-logo-wrapper .orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

.orbit-ring-1 {
    width: 480px;
    height: 480px;
}

.orbit-ring-2 {
    width: 540px;
    height: 540px;
    animation-direction: reverse !important;
    animation-duration: 40s !important;
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.hero-scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    position: relative;
}

.hero-scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 3px;
    animation: scroll-indicator 1.5s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ── About Section ── */
.about-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(27, 122, 61, 0.05), transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

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

.about-image-area {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-green);
    z-index: 2;
}

.about-experience-badge .year-num {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.about-experience-badge .year-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content > p {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.about-feature:hover {
    background: rgba(27, 122, 61, 0.06);
    transform: translateY(-2px);
}

.about-feature .feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.about-feature .feature-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.about-feature .feature-text p {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ── Products Section ── */
.products-section {
    background: var(--gray-100);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent-gold), var(--primary));
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    group: product;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-card-image .product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-base);
}

.product-card:hover .product-card-image .product-overlay {
    opacity: 1;
}

.product-card-body {
    padding: 24px;
    text-align: center;
}

.product-card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.product-card-body .product-name-ar {
    font-size: 1rem;
    color: var(--gray-400);
    font-weight: 600;
}

.product-card-body .product-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 16px;
    background: rgba(27, 122, 61, 0.08);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Export Countries Section ── */
.countries-section {
    background: linear-gradient(180deg, var(--black-soft) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.countries-section .section-title .subtitle {
    background: rgba(200, 169, 81, 0.15);
    color: var(--accent-gold-light);
    border-color: rgba(200, 169, 81, 0.2);
}

.countries-section .section-title h2 {
    color: var(--white);
}

.countries-section .section-title p {
    color: var(--gray-400);
}

.countries-section .section-title .title-line {
    background: linear-gradient(90deg, var(--accent-gold), var(--primary));
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.country-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    cursor: default;
}

.country-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(27, 122, 61, 0.2);
}

.country-flag {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    margin: 0 auto 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-card:hover .country-flag {
    transform: scale(1.15);
    border-color: var(--primary);
}

.country-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.country-card .country-name-ar {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* ── Licenses Section ── */
.licenses-section {
    background: var(--white);
    position: relative;
}

.licenses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.license-card {
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
}

.license-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.license-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent-gold));
}

.license-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.license-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
}

.license-header-text h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--black);
}

.license-header-text p {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

.license-details {
    display: grid;
    gap: 12px;
}

.license-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}

.license-detail-row .detail-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
}

.license-detail-row .detail-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
}

.license-remarks {
    margin-top: 16px;
    padding: 16px;
    background: rgba(27, 122, 61, 0.06);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
}

.license-remarks h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.license-remarks p {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ── Locations Section ── */
.locations-section {
    background: var(--gray-100);
    position: relative;
}

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

.location-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.location-map {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
    transition: filter var(--transition-base);
}

.location-card:hover .location-map iframe {
    filter: grayscale(0%);
}

.location-info {
    padding: 28px;
}

.location-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.location-type.headquarters {
    background: rgba(27, 122, 61, 0.1);
    color: var(--primary);
}

.location-type.cold-storage {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.location-type.factory {
    background: rgba(200, 169, 81, 0.15);
    color: var(--accent-gold);
}

.location-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.location-info p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.location-coords {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--gray-400);
}

.location-coords i {
    color: var(--primary);
}

/* ── Contact Section ── */
.contact-section {
    background: linear-gradient(180deg, var(--black-soft) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(27, 122, 61, 0.1), transparent 70%);
    bottom: -100px;
    right: -100px;
}

.contact-section .section-title .subtitle {
    background: rgba(200, 169, 81, 0.15);
    color: var(--accent-gold-light);
    border-color: rgba(200, 169, 81, 0.2);
}

.contact-section .section-title h2 {
    color: var(--white);
}

.contact-section .section-title p {
    color: var(--gray-400);
}

.contact-section .section-title .title-line {
    background: linear-gradient(90deg, var(--accent-gold), var(--primary));
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-6px);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition-base);
}

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

.contact-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.contact-card p,
.contact-card a {
    font-size: 0.9rem;
    color: var(--gray-400);
    display: block;
    margin-bottom: 4px;
    transition: var(--transition-base);
}

.contact-card a:hover {
    color: var(--primary-light);
}

.contact-card .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 20px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition-base);
}

.contact-card .whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    color: var(--white);
}

.contact-card .call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition-base);
}

.contact-card .call-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
    color: var(--white);
}

/* ── Footer ── */
.main-footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-about .footer-logo img {
    height: 50px;
}

.footer-about .footer-logo span {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.footer-about p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 0.88rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
}

.footer-col ul a:hover {
    color: var(--primary-light);
    transform: translateX(6px);
}

.footer-col ul a i {
    font-size: 0.7rem;
    color: var(--primary);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--gray-500);
}

.footer-bottom p span {
    color: var(--primary-light);
    font-weight: 700;
}

/* ── Marquee/Ticker ── */
.products-ticker {
    background: var(--primary);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
}

.ticker-item i {
    color: var(--accent-gold-light);
    font-size: 0.6rem;
}

/* ── Back to top button ── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    box-shadow: var(--shadow-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(27, 122, 61, 0.4);
}

/* ── Imports Section ── */
.imports-section {
    background: linear-gradient(135deg, var(--black) 0%, #0f1a14 50%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.imports-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.imports-section .container-custom {
    position: relative;
    z-index: 1;
}

.imports-section .section-title .subtitle {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-gold-light);
    border-color: rgba(255, 255, 255, 0.1);
}

.imports-section .section-title h2 {
    color: var(--white);
}

.imports-section .section-title p {
    color: rgba(255, 255, 255, 0.6);
}

.imports-section .title-line {
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-light));
}

.imports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.import-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-base);
}

.import-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 169, 81, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.import-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.import-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.import-card:hover .import-card-image img {
    transform: scale(1.08);
}

.import-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-base);
}

.import-card:hover .import-overlay {
    opacity: 1;
}

.import-overlay-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
}

.import-overlay-content i {
    font-size: 1.4rem;
    color: var(--accent-gold);
}

.import-card-body {
    padding: 28px;
}

.import-card-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.import-card-body p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.import-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.import-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(200, 169, 81, 0.12);
    color: var(--accent-gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid rgba(200, 169, 81, 0.2);
    transition: var(--transition-base);
}

.import-tag i {
    font-size: 0.7rem;
    color: var(--accent-gold);
}

.import-tag:hover {
    background: rgba(200, 169, 81, 0.2);
    border-color: rgba(200, 169, 81, 0.4);
}

/* ── Nav Logo Image Fix ── */
.nav-logo img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: var(--transition-base);
    object-fit: cover;
}

.footer-about .footer-logo img {
    border-radius: 8px;
    object-fit: cover;
}

/* ── Dubai License Remarks ── */
.license-remarks-dubai {
    margin-top: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(27, 122, 61, 0.06), rgba(200, 169, 81, 0.06));
    border-radius: var(--radius-md);
    border: 1px solid rgba(27, 122, 61, 0.12);
}

.license-remarks-dubai h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dubai-districts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.dubai-district-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.dubai-district-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.dubai-district-item .district-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
}

.dubai-district-item span {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--black);
}

.dubai-brands {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.dubai-brand-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}

.dubai-brand-item .brand-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, var(--accent-gold), #9a7d2e);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
}

.dubai-brand-item span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gray-600);
}

/* ── RTL (Arabic) Mode ── */
.rtl-mode {
    direction: rtl;
}

.rtl-mode .nav-inner {
    flex-direction: row-reverse;
}

.rtl-mode .nav-links {
    flex-direction: row-reverse;
}

.rtl-mode .nav-logo {
    flex-direction: row-reverse;
}

.rtl-mode .hero-content {
    direction: rtl;
}

.rtl-mode .hero-text {
    text-align: right;
    animation: fadeInRight 1s ease;
}

.rtl-mode .hero-visual {
    animation: fadeInLeft 1s ease;
}

.rtl-mode .hero-text p {
    margin-left: auto;
    margin-right: 0;
}

.rtl-mode .hero-buttons {
    justify-content: flex-start;
}

.rtl-mode .about-content .section-title {
    text-align: right !important;
}

.rtl-mode .section-title {
    text-align: center;
}

.rtl-mode .footer-col h4::after {
    left: auto;
    right: 0;
}

.rtl-mode .footer-col ul a:hover {
    transform: translateX(-6px);
}

.rtl-mode .footer-col ul a i.fa-chevron-right {
    transform: rotate(180deg);
}

.rtl-mode .lang-switch {
    margin-left: 0;
    margin-right: 16px;
}

.rtl-mode .license-remarks-dubai {
    direction: ltr;
}

.rtl-mode .license-detail-row {
    direction: ltr;
}

/* ── Responsive Design ── */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-logo-wrapper {
        width: 350px;
        height: 350px;
    }

    .orbit-ring-1 {
        width: 400px;
        height: 400px;
    }

    .orbit-ring-2 {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }

    .hero-text {
        order: 2;
    }

    .hero-text p {
        margin: 0 auto 36px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: 1;
    }

    .hero-logo-wrapper {
        width: 250px;
        height: 250px;
    }

    .orbit-ring-1, .orbit-ring-2 {
        display: none;
    }

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

    .about-content .section-title {
        text-align: center !important;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mobile Navigation */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        z-index: 1000;
        padding: 20px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.3rem;
        color: var(--white) !important;
        padding: 12px 30px;
        width: 80%;
        max-width: 300px;
        text-align: center;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(27, 122, 61, 0.3) !important;
    }

    .nav-links a.nav-cta {
        background: var(--primary) !important;
        margin-top: 10px;
    }

    .nav-toggle {
        display: flex;
    }

    .lang-switch {
        order: -1;
    }

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

    .section-title h2 {
        font-size: 2rem;
    }

    .dubai-districts,
    .dubai-brands {
        grid-template-columns: 1fr;
    }

    /* RTL mobile nav */
    .rtl-mode .nav-links {
        flex-direction: column;
    }

    .rtl-mode .hero-content {
        text-align: center;
    }

    .rtl-mode .hero-text {
        text-align: center;
    }

    .rtl-mode .hero-text p {
        margin: 0 auto 36px;
    }

    .rtl-mode .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container-custom {
        padding: 0 16px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .hero-content {
        padding-top: 80px;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text h1 .arabic-name {
        font-size: 1.4rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero-stat .stat-number {
        font-size: 1.5rem;
    }

    .hero-stat .stat-label {
        font-size: 0.7rem;
    }

    .hero-logo-wrapper {
        width: 200px;
        height: 200px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card-image {
        height: 200px;
    }

    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .country-card {
        padding: 20px 16px;
    }

    .country-flag {
        width: 52px;
        height: 52px;
    }

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

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

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-experience-badge {
        bottom: -10px;
        right: -10px;
        padding: 16px;
    }

    .about-experience-badge .year-num {
        font-size: 1.8rem;
    }

    .about-image-main img {
        height: 300px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .location-card .location-map {
        height: 180px;
    }

    .location-info {
        padding: 20px;
    }

    .license-card {
        padding: 24px;
    }

    .license-detail-row {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

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

    .nav-logo-text .company-name-en {
        font-size: 0.95rem;
    }

    .nav-logo-text .company-name-ar {
        font-size: 0.72rem;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 6px 14px;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }

    .products-ticker {
        padding: 10px 0;
    }

    .ticker-item {
        font-size: 0.82rem;
        padding: 0 24px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text h1 .arabic-name {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons a {
        justify-content: center;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hero-logo-wrapper {
        width: 180px;
        height: 180px;
    }

    .section-title h2 {
        font-size: 1.4rem;
    }

    .nav-logo-text {
        display: none;
    }

    .contact-card {
        padding: 24px 16px;
    }
}