/* ===== CSS Variables ===== */
:root {
    --primary: #E87A2D;
    --primary-dark: #D06820;
    --primary-light: #F5A623;
    --secondary: #1C2B4A;
    --secondary-light: #2A3F6B;
    --dark: #0F1923;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg: #FFFFFF;
    --bg-light: #F8F9FC;
    --bg-alt: #F0F2F7;
    --border: #E5E8EE;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 10px 40px rgba(232, 122, 45, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-ar: 'Tajawal', sans-serif;
    --font-en: 'Poppins', sans-serif;
}

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

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

body {
    font-family: var(--font-ar);
    color: var(--text);
    background: var(--bg);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.en {
    font-family: var(--font-en);
    direction: ltr;
    text-align: left;
}

body.loaded .loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Loader ===== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.loader-logo {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 30px;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
    animation: loaderBar 1.5s ease-in-out infinite;
}

@keyframes loaderBar {
    0% { width: 0; margin-right: auto; }
    50% { width: 100%; }
    100% { width: 0; margin-right: 0; margin-left: auto; }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    position: relative;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transform: rotate(-5deg);
}

.logo-speed-lines {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-speed-lines span {
    display: block;
    height: 2px;
    background: var(--primary);
    border-radius: 10px;
}

.logo-speed-lines span:nth-child(1) { width: 12px; }
.logo-speed-lines span:nth-child(2) { width: 16px; }
.logo-speed-lines span:nth-child(3) { width: 10px; }

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

.logo-text strong {
    font-family: var(--font-en);
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.navbar:not(.scrolled) .logo-text strong {
    color: white;
}

.logo-text small {
    font-family: var(--font-en);
    font-size: 10px;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--text);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 16px;
    left: 16px;
    height: 2px;
    background: var(--primary);
    border-radius: 10px;
}

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

.lang-toggle {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: transparent;
    color: white;
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.navbar.scrolled .lang-toggle {
    border-color: var(--border);
    color: var(--text);
}

.lang-toggle:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 10px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--text);
}

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

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

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

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(232, 122, 45, 0.3);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(232, 122, 45, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(28, 43, 74, 0.5) 0%, transparent 50%);
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    left: -200px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    bottom: -100px;
    right: -100px;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(232, 122, 45, 0.15);
    border: 1px solid rgba(232, 122, 45, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 12px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title-line {
    display: block;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    color: white;
    line-height: 1.2;
}

.hero-title-sub {
    display: block;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 300;
    color: var(--primary);
    line-height: 1.3;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-ar);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

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

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

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(232, 122, 45, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-en);
    line-height: 1;
}

.hero-stat-plus {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-en);
}

.hero-stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(232, 122, 45, 0.1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag-light {
    background: rgba(232, 122, 45, 0.2);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-title-light {
    color: white;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 10px;
    margin: 0 auto;
}

.section-line-light {
    background: var(--primary);
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    background: var(--bg);
}

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

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 80px;
}

.about-img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: 20px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    text-align: center;
}

.about-badge-text {
    font-weight: 700;
    color: var(--secondary);
    font-size: 14px;
}

.about-experience {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    margin-top: 20px;
    max-width: 280px;
}

.about-exp-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.about-experience strong {
    display: block;
    font-size: 16px;
    line-height: 1.3;
}

.about-experience span {
    font-size: 13px;
    opacity: 0.85;
}

.about-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-lead {
    font-size: 17px;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.about-content > p {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.9;
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.about-feature i {
    color: var(--primary);
    font-size: 16px;
}

/* ===== VMM Section ===== */
.vmm {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.vmm-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

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

.vmm-card-highlight {
    background: var(--secondary);
    color: white;
    border-color: transparent;
}

.vmm-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: rgba(232, 122, 45, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
}

.vmm-card-highlight .vmm-icon {
    background: rgba(232, 122, 45, 0.2);
}

.vmm-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--secondary);
}

.vmm-card-highlight h3 {
    color: white;
}

.vmm-card p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
}

.vmm-card-highlight p {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    background: var(--bg);
}

.services-category {
    margin-bottom: 60px;
}

.services-category:last-child {
    margin-bottom: 0;
}

.services-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--bg-alt);
}

.services-category-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.services-category-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-light);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    border-radius: 0 0 10px 10px;
    transition: height 0.4s ease;
}

body.en .service-card::before {
    right: auto;
    left: 0;
}

.service-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(232, 122, 45, 0.1);
}

.service-card:hover::before {
    height: 100%;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(232, 122, 45, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== Why Us Section ===== */
.why-us {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
}

.why-us-bg::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='%23E87A2D' fill-opacity='0.04'%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");
}

.why-us .container {
    position: relative;
    z-index: 2;
}

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

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(232, 122, 45, 0.3);
}

.why-card-number {
    position: absolute;
    top: 16px;
    left: 20px;
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 900;
    color: rgba(232, 122, 45, 0.1);
    line-height: 1;
}

body.en .why-card-number {
    left: auto;
    right: 20px;
}

.why-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(232, 122, 45, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-card-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.why-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ===== Fleet Section ===== */
.fleet {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.fleet-category {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.fleet-category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--bg-alt);
}

.fleet-category-header i {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.fleet-category-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
}

.fleet-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fleet-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.fleet-item:hover {
    background: rgba(232, 122, 45, 0.05);
    transform: translateX(-5px);
}

body.en .fleet-item:hover {
    transform: translateX(5px);
}

.fleet-item-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    display: block;
}

.fleet-item-name-en {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-en);
}

.fleet-item-count {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.fleet-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    margin-top: 20px;
    font-weight: 600;
}

.fleet-total strong {
    font-family: var(--font-en);
    font-size: 24px;
}

.fleet-summary {
    margin-top: 24px;
    padding: 24px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: var(--radius);
    color: white;
}

.fleet-summary-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fleet-summary-item i {
    font-size: 32px;
    color: var(--primary);
}

.fleet-summary-item strong {
    display: block;
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.fleet-summary-item span {
    font-size: 14px;
    opacity: 0.8;
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    height: 100%;
}

.contact-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-card > p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 122, 45, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-detail a,
.contact-detail span {
    font-size: 14px;
    opacity: 0.8;
    color: white;
}

.contact-detail a:hover {
    opacity: 1;
    color: var(--primary);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: var(--font-ar);
    color: var(--text);
    background: var(--bg-light);
    transition: var(--transition);
    outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(232, 122, 45, 0.1);
}

.form-group label {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
    background: transparent;
    padding: 0 6px;
}

body.en .form-group label {
    right: auto;
    left: 18px;
}

.form-group textarea ~ label {
    top: 20px;
    transform: none;
}

.form-group .select-label {
    top: -10px;
    font-size: 12px;
    color: var(--primary);
    background: white;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    transform: none;
    font-size: 12px;
    color: var(--primary);
    background: white;
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-form .btn {
    font-size: 17px;
    padding: 16px 32px;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: white;
}

.footer-top {
    padding: 60px 0 40px;
}

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

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

.footer-logo .logo-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
}

.footer-logo .logo-text strong {
    color: white;
    font-size: 15px;
}

.footer-about > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: var(--transition);
}

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

.footer-links h4,
.footer-contact h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-right: 10px;
}

body.en .footer-links a:hover {
    padding-right: 0;
    padding-left: 10px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact li i {
    color: var(--primary);
    font-size: 14px;
    width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom strong {
    color: var(--primary);
}

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

body.en .scroll-top {
    left: auto;
    right: 24px;
}

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

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

body.en .whatsapp-float {
    left: auto;
    right: 24px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ===== Reveal Animations ===== */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

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

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 100px 30px 40px;
        gap: 4px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    }

    body.en .nav-menu {
        right: auto;
        left: -100%;
    }

    body.en .nav-menu.open {
        left: 0;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        color: var(--text);
        padding: 12px 16px;
        font-size: 16px;
    }

    .nav-cta {
        display: none;
    }

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

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

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

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

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

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .contact-form {
        padding: 24px;
    }

    .contact-info-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title-line {
        font-size: 28px;
    }

    .hero-title-sub {
        font-size: 20px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-number {
        font-size: 28px;
    }

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

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ===== Body Overlay for Mobile Menu ===== */
.body-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.body-overlay.active {
    opacity: 1;
    visibility: visible;
}
