:root {
    --color-primary: #0ea2f5;
    --color-primary-soft: #38b7ff;
    --color-dark: #121826;
    --color-muted: #656e7f;
    --color-bg: #fafbfb;
    --color-white: #ffffff;

    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;

    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);
    --shadow-subtle: 0 10px 24px rgba(0, 0, 0, 0.05);

    --container-width: 1120px;
}

/* Global */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--color-bg);
    color: var(--color-dark);
    line-height: 1.7;
}

/* Utilities */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section--alt {
    background-color: #f1f4f8;
}

.section__inner {
    display: grid;
    gap: 3rem;
}

.section__inner--split {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    align-items: center;
}

.section__eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section__title {
    font-size: 2rem;
    margin: 0 0 1rem;
}

.section__subtitle {
    max-width: 640px;
    margin: 0.5rem auto 2.5rem;
    color: var(--color-muted);
    text-align: center;
}

.section__body {
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

/* Header & Nav */

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 251, 251, 0.97);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.85rem;
    gap: 1.5rem;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.nav__logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.nav__company-name {
    font-weight: 800;
    font-size: 1rem;
}

.nav__company-sub {
    font-size: 0.8rem;
    color: var(--color-muted);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__links a {
    text-decoration: none;
    color: var(--color-muted);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.2rem;
}

.nav__links a::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-soft));
    transition: width 0.22s ease;
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    white-space: nowrap;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--color-primary), #0079c8);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 24px 50px rgba(14, 162, 245, 0.35);
}

.btn--ghost {
    background: transparent;
    border: 1px solid rgba(101, 110, 127, 0.35);
    color: var(--color-muted);
    box-shadow: none;
}

.btn--ghost:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn--small {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
}

/* Hero */

.hero {
    padding: 4.5rem 0 4rem;
    background: radial-gradient(circle at top left, #e1f3ff 0, #fafbfb 55%, #e9f1ff 100%);
}

.hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 3rem;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background: rgba(14, 162, 245, 0.08);
}

.hero__title {
    margin: 1rem 0 0.75rem;
    font-size: clamp(2.1rem, 3vw, 2.7rem);
}

.hero__typed {
    color: var(--color-primary);
    border-inline-end: 2px solid var(--color-primary);
    padding-inline-end: 4px;
    margin-inline: 0.25rem;
}

.hero__subtitle {
    color: var(--color-muted);
    max-width: 580px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.2rem;
}

.stat {
    min-width: 90px;
}

.stat__number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-primary);
}

.stat__label {
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* Hero Visual */

.hero__visual {
    position: relative;
    min-height: 280px;
}

.hero__card {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #0b1a2f, #12263f);
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    isolation: isolate;
    color: #e8f3ff;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(14, 162, 245, 0.14);
    font-size: 0.8rem;
}

.hero__route {
    position: absolute;
    inset-inline: 8%;
    top: 52%;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(14, 162, 245, 0.2), rgba(14, 162, 245, 0.9));
}

.hero__vehicle {
    position: absolute;
    bottom: 20%;
    width: 70px;
    height: 36px;
    border-radius: 18px;
    background: linear-gradient(145deg, #f9fafb, #dbeafe);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.5);
    animation: floatVehicle 4s ease-in-out infinite;
}

.hero__vehicle--truck {
    inset-inline-end: 16%;
}

.hero__vehicle--car {
    inset-inline-start: 14%;
    width: 62px;
    height: 32px;
    animation-delay: 0.8s;
}

.hero__vehicle::before,
.hero__vehicle::after {
    content: "";
    position: absolute;
    bottom: -9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #020617;
}

.hero__vehicle::before {
    inset-inline-start: 9px;
}

.hero__vehicle::after {
    inset-inline-end: 9px;
}

.hero__floating-tag {
    position: absolute;
    inset-inline-start: 1.4rem;
    top: 1.9rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    animation: floatSoft 3.8s ease-in-out infinite;
}

.hero__floating-box {
    position: absolute;
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius-md);
    background: var(--color-white);
    box-shadow: var(--shadow-subtle);
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-muted);
}

.hero__floating-box--1 {
    top: -1rem;
    inset-inline-end: 12%;
    animation: floatSoft 4.5s ease-in-out infinite;
}

.hero__floating-box--2 {
    bottom: -0.5rem;
    inset-inline-start: 4%;
    animation: floatSoft 5s ease-in-out infinite;
}

/* About */

.list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
}

.list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-muted);
    font-size: 0.92rem;
}

.list i {
    margin-top: 0.2rem;
    color: var(--color-primary);
}

.list--icon i {
    font-size: 1.1rem;
}

.about__grid {
    display: grid;
    gap: 1rem;
}

.about__card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.3rem 1.4rem;
    box-shadow: var(--shadow-subtle);
}

.about__card h3 {
    margin: 0.3rem 0 0.4rem;
}

.about__card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.about__icon {
    font-size: 1.4rem;
    color: var(--color-primary);
}

/* Cards Section */

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.7rem 1.5rem;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    border-inline-start: 3px solid transparent;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border-inline-start-color: var(--color-primary);
}

.card__icon {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

.card__title {
    margin: 0 0 0.4rem;
}

.card__body {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* Fleet & Process */

.fleet {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.fleet__item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.3rem 1.1rem;
    box-shadow: var(--shadow-subtle);
}

.fleet__item h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
}

.fleet__item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.process {
    background: #0b1220;
    color: #e5edf7;
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.7rem;
    box-shadow: var(--shadow-soft);
}

.process__title {
    margin: 0 0 1rem;
    font-size: 1.2rem;
}

.process__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.process__steps li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
}

.process__steps span {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    background: rgba(14, 162, 245, 0.13);
    color: var(--color-primary-soft);
}

/* Why Us / Partners */

.partners h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
}

.partners p {
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.partners__item {
    padding: 0.8rem 0.9rem;
    border-radius: var(--radius-md);
    background: var(--color-white);
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-muted);
    box-shadow: var(--shadow-subtle);
}

/* Contact */

.contact__info {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
    display: grid;
    gap: 0.45rem;
    color: var(--color-muted);
    font-size: 0.92rem;
}

.contact__info i {
    color: var(--color-primary);
    margin-inline-end: 0.4rem;
}

.form {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1.7rem 1.6rem;
    box-shadow: var(--shadow-soft);
}

.form__group {
    margin-bottom: 1rem;
}

.form__group--half {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #111827;
}

input,
select,
textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d9dde5;
    padding: 0.6rem 0.75rem;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    background-color: #f9fafb;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--color-primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 1px rgba(14, 162, 245, 0.15);
}

textarea {
    resize: vertical;
}

.form__submit {
    width: 100%;
    margin-top: 0.5rem;
}

.form__note {
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: var(--color-muted);
}

.map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--color-white);
    min-height: 320px;
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}


/* Footer */

.footer {
    background: #020617;
    color: #9ca3af;
    padding: 2rem 0 1.5rem;
    margin-top: 2rem;
}

.footer__inner {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer__brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.footer__title {
    margin: 0 0 0.25rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: #e5e7eb;
}

.footer__copy {
    margin: 0;
    font-size: 0.8rem;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.footer__links a {
    color: #d1d5db;
    text-decoration: none;
}

.footer__links a:hover {
    color: var(--color-primary-soft);
}

.footer__rights {
    margin: 0;
    font-size: 0.75rem;
    text-align: left;
}

.footer-designer a:hover {
    text-decoration: underline;
}
        

/* Reveal Animation (Scroll) */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframes */

@keyframes floatSoft {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes floatVehicle {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive */

@media (max-width: 992px) {
    .hero__content,
    .section__inner--split {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero__visual {
        order: -1;
    }

    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fleet {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .nav__links {
        position: absolute;
        inset-inline: 0;
        top: 100%;
        background: rgba(250, 251, 251, 0.99);
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem 1.5rem 1.1rem;
        gap: 0.9rem;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.18s ease-out, opacity 0.18s ease-out;
    }

    .nav__links--open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
    }

    .nav__toggle {
        display: block;
        color: var(--color-muted);
    }

    .nav__cta {
        display: none;
    }

    .hero {
        padding-top: 3.5rem;
    }

    .hero__content {
        gap: 2.5rem;
    }

    .cards {
        grid-template-columns: minmax(0, 1fr);
    }

    .fleet {
        grid-template-columns: minmax(0, 1fr);
    }

    .section__inner--split {
        gap: 2.2rem;
    }

    .form {
        padding: 1.4rem 1.2rem;
    }

    .footer__inner {
        justify-items: flex-start;
    }

    .footer__rights {
        text-align: right;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.9rem;
    }

    .hero__stats {
        gap: 1rem;
    }

    .form__group--half {
        grid-template-columns: minmax(0, 1fr);
    }
}
