/* ============================================
   CSS Variables & Reset
   ============================================ */

:root {
    --navy-blue: #1a365d;
    --navy-blue-dark: #0f2439;
    --navy-blue-light: #2d4a6b;
    --logistics-orange: #ff6b35;
    --logistics-orange-light: #ff8c5a;
    --logistics-orange-dark: #e55a2b;
    --white: #ffffff;
    --gray-light: #f7f8fa;
    --gray-medium: #e5e7eb;
    --gray-text: #6b7280;
    --gray-dark: #374151;
    --black: #1f2937;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing scale (4px base) */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
    
    /* Section spacing */
    --section-padding: 4.5rem;
    --section-padding-sm: 3rem;
    
    --transition: all 0.25s ease;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--navy-blue);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

h3 {
    font-size: 1.375rem;
    margin-bottom: var(--space-xs);
}

p {
    margin-bottom: var(--space-sm);
    color: var(--gray-dark);
    max-width: 65ch;
}

p:last-child {
    margin-bottom: 0;
}

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

/* ============================================
   Container & Layout
   ============================================ */

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    width: 100%;
}

section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: 2rem;
    color: var(--navy-blue);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-text);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   Header & Navigation
   ============================================ */

.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
}

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

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-image {
    height: 50px;
    width: auto;
    flex-shrink: 0;
    display: block;
}

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

.logo h1 {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.logo .tagline {
    font-size: 0.875rem;
    color: var(--logistics-orange);
    font-weight: 500;
    margin: 0;
}

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

.nav-link {
    color: var(--gray-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background-color: var(--navy-blue);
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    color: var(--white);
    padding: var(--space-2xl) 0;
    text-align: center;
}

.hero-content {
    max-width: 40rem;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--logistics-orange-light);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.hero-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    font-family: var(--font-primary);
    min-height: 44px;
    line-height: 1.4;
}

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

.btn-primary:hover {
    background-color: var(--logistics-orange-dark);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy-blue);
}

/* ============================================
   Services Section
   ============================================ */

.services {
    background-color: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--space-lg);
}

.service-card {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.service-title {
    color: var(--navy-blue);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.service-description {
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ============================================
   About Section
   ============================================ */

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

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
    width: 100%;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: var(--space-md);
}

.about-description {
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: var(--space-md);
    color: var(--gray-dark);
    max-width: 100%;
    text-align: left;
    width: 100%;
}

.about-description:last-child {
    margin-bottom: 0;
}

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

.feature-item {
    padding: var(--space-md);
    background-color: var(--gray-light);
    border-left: 4px solid var(--logistics-orange);
    border-radius: 4px;
    text-align: left;
}

.feature-item strong {
    color: var(--navy-blue);
    display: block;
    margin-bottom: 0.5rem;
}

/* ============================================
   About Snapshot Section
   ============================================ */

.about-snapshot {
    max-width: 1000px;
    margin: 0 auto;
}

.about-snapshot-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-badge {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--logistics-orange) 0%, var(--logistics-orange-dark) 100%);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.experience-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.experience-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-snapshot-text {
    padding-left: 1rem;
}

/* ============================================
   Geographic Coverage Section
   ============================================ */

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

.coverage-card:nth-child(4) {
    grid-column: 2;
    justify-self: center;
}

.coverage-card {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 2px solid var(--gray-medium);
}

.coverage-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--logistics-orange);
}

.coverage-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.coverage-title {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.coverage-description {
    color: var(--gray-text);
    line-height: 1.7;
}

/* ============================================
   Why Choose Us Section
   ============================================ */

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

.why-choose-card {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.why-choose-card:hover {
    box-shadow: var(--shadow-md);
}

.why-choose-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.why-choose-title {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.why-choose-description {
    color: var(--gray-text);
    line-height: 1.7;
}

/* ============================================
   CTA Banner Section
   ============================================ */

.cta-banner {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    color: var(--white);
    padding: var(--section-padding) 0;
    text-align: center;
}

.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--white);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.cta-banner-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    background-color: var(--gray-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-item h3 {
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.contact-item p {
    color: var(--gray-text);
    line-height: 1.7;
}

.company-details {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-medium);
}

.company-name {
    color: var(--navy-blue);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.company-cr {
    color: var(--gray-text);
    font-size: 0.95rem;
    margin: 0;
}

.contact-link {
    color: var(--logistics-orange);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--logistics-orange-dark);
    text-decoration: underline;
}

/* ============================================
   Contact Form
   ============================================ */

.contact-form {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy-blue);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-medium);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
    min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--logistics-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 8rem;
}

/* ============================================
   Page Header
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-xl);
    text-align: center;
}

.page-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: var(--white);
    margin-bottom: var(--space-sm);
    text-align: center;
    width: 100%;
}

.page-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   Service Detail Pages
   ============================================ */

.service-detail {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-content {
    text-align: center;
}

.service-detail-content .about-description,
.service-detail-content h3 {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
    line-height: 1;
}

.service-list {
    list-style: none;
    text-align: left;
    max-width: 700px;
    margin: 1.5rem auto 0;
    padding: 0;
}

.service-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-dark);
    line-height: 1.7;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--logistics-orange);
    font-weight: bold;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--logistics-orange);
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--logistics-orange-dark);
    padding-left: 5px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link .service-card {
    cursor: pointer;
    height: 100%;
}

/* ============================================
   Industry Features
   ============================================ */

.industry-features {
    list-style: none;
    margin-top: 1.5rem;
    padding: 0;
    text-align: left;
}

.industry-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-text);
    font-size: 0.95rem;
}

.industry-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--logistics-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   Project Cargo Section
   ============================================ */

.project-cargo-section {
    background-color: var(--white);
    padding: var(--section-padding) 0;
}

.project-cargo-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--space-2xl);
}

.project-cargo-intro {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--gray-dark);
    margin-top: var(--space-md);
}

.project-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.project-feature-card {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--logistics-orange);
    transition: var(--transition);
}

.project-feature-card:hover {
    box-shadow: var(--shadow-md);
}

.project-feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.project-feature-title {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-feature-description {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.project-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-dark);
    line-height: 1.7;
}

.project-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--logistics-orange);
    font-weight: bold;
    font-size: 1.1rem;
}

.project-highlight-box {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    color: var(--white);
    padding: var(--space-xl);
    border-radius: 12px;
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.project-highlight-content {
    max-width: 1000px;
    margin: 0 auto;
}

.project-highlight-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.project-highlight-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.8;
}

.project-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project-highlight-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.project-highlight-item strong {
    display: block;
    color: var(--logistics-orange-light);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.project-highlight-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.7;
}

.project-personnel-section {
    background-color: var(--gray-light);
    padding: var(--space-xl);
    border-radius: 12px;
    margin-bottom: var(--space-2xl);
}

.project-personnel-content {
    max-width: 1000px;
    margin: 0 auto;
}

.project-personnel-title {
    font-size: 2rem;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.project-personnel-description {
    font-size: 1.125rem;
    color: var(--gray-dark);
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.8;
}

.project-personnel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.project-personnel-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.project-personnel-item:hover {
    box-shadow: var(--shadow-md);
}

.personnel-icon {
    font-size: 2.25rem;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.project-personnel-item h4 {
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.project-personnel-item p {
    color: var(--gray-text);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.project-additional-services {
    max-width: 1000px;
    margin: 0 auto;
}

.project-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.project-service-item {
    background-color: var(--gray-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--logistics-orange);
}

.project-service-item strong {
    display: block;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.project-service-item p {
    color: var(--gray-text);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   Land Transportation Section
   ============================================ */

.land-transport-section {
    background-color: var(--white);
    padding: var(--section-padding) 0;
}

.land-transport-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--space-2xl);
}

.land-transport-intro {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--gray-dark);
    margin-top: var(--space-md);
}

/* Coverage Map Visual */
.coverage-map-container {
    max-width: 900px;
    margin: 0 auto var(--space-2xl);
    padding: var(--space-lg);
    background-color: var(--gray-light);
    border-radius: 12px;
}

.coverage-map {
    position: relative;
    width: 100%;
    height: 400px;
    min-height: 350px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e8f0 100%);
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.map-country {
    position: absolute;
    background-color: var(--logistics-orange);
    border: 2px solid var(--navy-blue);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.map-country:hover {
    z-index: 10;
    box-shadow: var(--shadow-md);
    border-color: var(--logistics-orange);
}

.map-country.oman {
    width: 100px;
    height: 120px;
    bottom: 18%;
    left: 12%;
    background-color: var(--navy-blue);
    color: var(--white);
}

.map-country.uae {
    width: 85px;
    height: 65px;
    top: 22%;
    left: 24%;
    background-color: var(--logistics-orange);
    color: var(--white);
}

.map-country.saudi {
    width: 150px;
    height: 170px;
    top: 10%;
    right: 18%;
    background-color: var(--logistics-orange);
    color: var(--white);
}

.map-country.qatar {
    width: 52px;
    height: 52px;
    top: 30%;
    right: 30%;
    background-color: var(--logistics-orange);
    color: var(--white);
}

.map-country.kuwait {
    width: 60px;
    height: 60px;
    top: 14%;
    right: 10%;
    background-color: var(--logistics-orange);
    color: var(--white);
}

.country-label {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-align: center;
    line-height: 1.2;
}

.country-pin {
    font-size: 1.25rem;
    line-height: 1;
}


.coverage-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid var(--navy-blue);
}

.legend-color.oman-color {
    background-color: var(--navy-blue);
}

.legend-color.gcc-color {
    background-color: var(--logistics-orange);
}

/* Transport Service Cards */
.land-transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.transport-service-card {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--logistics-orange);
    transition: var(--transition);
}

.transport-service-card:hover {
    box-shadow: var(--shadow-md);
}

.transport-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.transport-title {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.transport-description {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.transport-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transport-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-dark);
    line-height: 1.7;
}

.transport-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--logistics-orange);
    font-weight: bold;
}

.border-countries {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.border-country-item {
    padding: 1rem;
    background-color: var(--gray-light);
    border-radius: 6px;
    border-left: 3px solid var(--logistics-orange);
}

.border-country-item strong {
    display: block;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.border-country-item p {
    color: var(--gray-text);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Door-to-Door Box */
.door-to-door-box {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    color: var(--white);
    padding: var(--space-xl);
    border-radius: 12px;
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.door-to-door-content {
    max-width: 1000px;
    margin: 0 auto;
}

.door-to-door-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.door-to-door-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.8;
}

.door-to-door-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.door-to-door-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.door-icon {
    font-size: 2.25rem;
    margin-bottom: var(--space-sm);
    text-align: center;
    line-height: 1;
}

.door-to-door-item h4 {
    color: var(--logistics-orange-light);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.25rem;
}

.door-to-door-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.door-to-door-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.door-to-door-item ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--logistics-orange-light);
    font-weight: bold;
}

/* Reliability & Pricing */
.reliability-pricing-section {
    background-color: var(--gray-light);
    padding: var(--space-xl);
    border-radius: 12px;
    margin-bottom: var(--space-2xl);
}

.reliability-pricing-content {
    max-width: 1000px;
    margin: 0 auto;
}

.reliability-title {
    font-size: 2rem;
    color: var(--navy-blue);
    margin-bottom: 2.5rem;
    text-align: center;
}

.reliability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.reliability-item {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.reliability-icon {
    font-size: 2.25rem;
    margin-bottom: var(--space-sm);
    text-align: center;
    line-height: 1;
}

.reliability-item h4 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.reliability-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reliability-item ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-dark);
    line-height: 1.7;
}

.reliability-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--logistics-orange);
    font-weight: bold;
}

/* Additional Services */
.land-transport-additional {
    max-width: 1000px;
    margin: 0 auto;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.additional-service-item {
    background-color: var(--gray-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--logistics-orange);
}

.additional-service-item strong {
    display: block;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.additional-service-item p {
    color: var(--gray-text);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   Industries / Cargo Types Page
   ============================================ */

.cargo-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.cargo-type-card {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--logistics-orange);
    text-align: center;
}

.cargo-type-card:hover {
    box-shadow: var(--shadow-md);
}

.cargo-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    display: block;
    line-height: 1;
}

.cargo-title {
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-weight: 600;
}

.cargo-subtitle {
    color: var(--logistics-orange);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cargo-description {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
}

.cargo-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.cargo-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 0.95rem;
}

.cargo-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--logistics-orange);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Cargo Advantages Grid */
.cargo-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.advantage-item {
    background-color: var(--gray-light);
    padding: var(--space-lg);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border-left: 4px solid var(--logistics-orange);
}

.advantage-item:hover {
    box-shadow: var(--shadow-md);
    background-color: var(--white);
}

.advantage-icon {
    font-size: 2.25rem;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.advantage-item h4 {
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.advantage-item p {
    color: var(--gray-text);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   Map Placeholder Section
   ============================================ */

.map-placeholder {
    background-color: var(--gray-light);
    padding: 60px 0;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-placeholder-content {
    background-color: var(--white);
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.map-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.map-placeholder-content h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.map-placeholder-content p {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.map-note {
    color: var(--gray-text);
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 1rem;
}

/* ============================================
   Utility Classes
   ============================================ */

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

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: var(--navy-blue-dark);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-company-info {
    max-width: 300px;
}

.footer-company-name {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.footer-company-cr {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-company-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--logistics-orange);
    transform: translateX(5px);
}

.footer-contact-item {
    margin-bottom: 1.25rem;
}

.footer-contact-item strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.footer-contact-item a,
.footer-contact-item p {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.footer-contact-item a:hover {
    color: var(--logistics-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.6;
    text-align: center;
    width: 100%;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .about-snapshot-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-snapshot-text {
        padding-left: 0;
    }
    
    .coverage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .coverage-card:nth-child(4) {
        grid-column: 2;
        justify-self: center;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-banner-title {
        font-size: 2rem;
    }
    
    
    .project-highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .project-personnel-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .project-services-list {
        grid-template-columns: 1fr;
    }
    
    .project-highlight-box {
        padding: 2rem;
    }
    
    .project-personnel-section {
        padding: 2rem;
    }
    
    .coverage-map {
        height: 320px;
        min-height: 300px;
    }
    
    .map-country {
        padding: 0.5rem;
    }
    
    .map-country.oman {
        width: 85px;
        height: 100px;
        bottom: 12%;
        left: 8%;
    }
    
    .map-country.uae {
        width: 70px;
        height: 55px;
        top: 18%;
        left: 20%;
    }
    
    .map-country.saudi {
        width: 130px;
        height: 145px;
        top: 6%;
        right: 12%;
    }
    
    .map-country.qatar {
        width: 45px;
        height: 45px;
        top: 26%;
        right: 26%;
    }
    
    .map-country.kuwait {
        width: 55px;
        height: 55px;
        top: 10%;
        right: 6%;
    }
    
    .country-label {
        font-size: 0.6875rem;
    }
    
    .country-pin {
        font-size: 1rem;
    }
    
    
    .land-transport-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .cargo-types-grid {
        gap: var(--space-md);
    }
    
    .cargo-advantages-grid {
        gap: var(--space-md);
    }
    
    .project-features-grid {
        gap: var(--space-md);
    }
    
    .door-to-door-grid {
        grid-template-columns: 1fr;
    }
    
    .reliability-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-services-grid {
        grid-template-columns: 1fr;
    }
    
    .cargo-types-grid {
        grid-template-columns: 1fr;
    }
    
    .cargo-type-card {
        padding: 2rem;
    }
    
    .cargo-advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: var(--space-lg);
        gap: 0;
    }
    
    .nav-list li {
        border-bottom: 1px solid var(--gray-medium);
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        padding: 1rem 0;
        min-height: 44px;
    }
    
    .hero {
        padding: var(--space-xl) 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
    }
    
    section {
        padding: var(--section-padding-sm) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-xl);
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9375rem;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .coverage-card,
    .why-choose-card,
    .cargo-type-card,
    .transport-service-card,
    .project-feature-card {
        padding: var(--space-md);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-snapshot-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .experience-badge {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .experience-number {
        font-size: 3rem;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-card:nth-child(4) {
        grid-column: 1;
        justify-self: stretch;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner {
        padding: var(--space-xl) 0;
    }
    
    .cta-banner-title {
        font-size: 1.75rem;
    }
    
    .cta-banner-description {
        font-size: 1rem;
        margin-bottom: var(--space-lg);
    }
    
    .cta-banner-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-form {
        padding: var(--space-md);
    }
    
    .map-placeholder-content {
        padding: 2.5rem 1.5rem;
    }
    
    .map-icon {
        font-size: 3rem;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-company-info {
        max-width: 100%;
    }
    
    .logo h1 {
        font-size: 1.125rem;
    }
    
    .logo-image {
        height: 36px;
    }
    
    .logo a {
        gap: var(--space-xs);
    }
    
    .logo .tagline {
        font-size: 0.75rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card,
    .coverage-card,
    .why-choose-card,
    .cargo-type-card,
    .transport-service-card,
    .project-feature-card {
        padding: var(--space-sm);
    }
    
    .experience-number {
        font-size: 2.5rem;
    }
    
    .cta-banner-title {
        font-size: 1.5rem;
    }
    
    .cta-banner-description {
        font-size: 0.9375rem;
    }
    
    
    .map-placeholder-content {
        padding: 2rem 1rem;
    }
    
    .map-icon {
        font-size: 2.5rem;
    }
    
    .map-placeholder-content h3 {
        font-size: 1.5rem;
    }
    
    .project-cargo-intro {
        font-size: 1rem;
    }
    
    .land-transport-intro {
        font-size: 1rem;
    }
    
    .project-highlight-title {
        font-size: 1.5rem;
    }
    
    .project-personnel-title {
        font-size: 1.5rem;
    }
    
    .project-highlight-box {
        padding: var(--space-md);
    }
    
    .project-personnel-section {
        padding: var(--space-md);
    }
    
    .door-to-door-box {
        padding: var(--space-md);
    }
    
    .reliability-pricing-section {
        padding: var(--space-md);
    }
    
    .project-feature-card {
        padding: 2rem;
    }
    
    .coverage-map {
        height: 280px;
        min-height: 250px;
    }
    
    .map-country.oman {
        width: 70px;
        height: 85px;
        bottom: 10%;
        left: 5%;
    }
    
    .map-country.uae {
        width: 55px;
        height: 45px;
        top: 15%;
        left: 18%;
    }
    
    .map-country.saudi {
        width: 110px;
        height: 125px;
        top: 5%;
        right: 10%;
    }
    
    .map-country.qatar {
        width: 38px;
        height: 38px;
        top: 24%;
        right: 24%;
    }
    
    .map-country.kuwait {
        width: 48px;
        height: 48px;
        top: 8%;
        right: 4%;
    }
    
    .country-label {
        font-size: 0.625rem;
    }
    
    .country-pin {
        font-size: 0.875rem;
    }
    
    
    .door-to-door-title {
        font-size: 1.5rem;
    }
    
    .reliability-title {
        font-size: 1.5rem;
    }
    
    
    .cargo-types-grid {
        grid-template-columns: 1fr;
    }
    
    .cargo-icon {
        font-size: 2.5rem;
    }
    
    .service-icon-large {
        font-size: 3rem;
    }
    
    .coverage-icon {
        font-size: 2.5rem;
    }
    
    .why-choose-icon {
        font-size: 2rem;
    }
    
    .cargo-title {
        font-size: 1.5rem;
    }
    
}
