@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* =========================
   RESET
========================= */

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

body {

    font-family: var(--body-font);
    background: var(--white);
    color: var(--primary);
    line-height: 1.7;
    overflow-x: hidden;

}

img {

    width: 100%;
    display: block;

}

a {

    text-decoration: none;
    color: inherit;

}

ul {

    list-style: none;

}

button {

    border: none;
    cursor: pointer;
    font-family: inherit;

}

/* =========================
   DESIGN SYSTEM
========================= */
html {

    scroll-behavior: smooth;

}

:root {

    /* Brand Colors */

    --primary: #0F172A;
    --secondary: #1E293B;
    --accent: #C9A227;

    /* Neutral Colors */

    --white: #FFFFFF;
    --light: #F8FAFC;
    --gray: #64748B;
    --border: #E2E8F0;

    /* Typography */

    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;

    /* Layout */

    --container-width: 1200px;

    /* Border Radius */

    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 28px;

    /* Shadows */

    --shadow-sm: 0 4px 10px rgba(0, 0, 0, .05);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, .08);

    /* Transition */

    --transition: .3s ease;

}


/* =========================
   GLOBAL STYLES
========================= */

.container {

    width: min(90%, var(--container-width));
    margin: auto;
    padding: 0 24px;

}

section {

    padding: 30px 0;

}

.section-title {

    font-family: var(--heading-font);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;

}

.section-subtitle {

    color: var(--gray);
    max-width: 700px;
    margin-bottom: 0px;
    font-size: 1.05rem;

}

h1,
h2,
h3,
h4 {

    font-family: var(--heading-font);

}

h1 {

    font-size: 3rem;
    line-height: 1;

}

h2 {

    font-size: 2.7rem;

}

h3 {

    font-size: 1.5rem;

}

p {

    color: var(--gray);

}

/* =========================
   BUTTONS
========================= */

.btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;

    border-radius: 50px;

    transition: var(--transition);

    font-weight: 600;

}

.btn-primary {

    background: var(--accent);
    color: white;

}

.btn-primary:hover {

    transform: translateY(-3px);
    box-shadow: var(--shadow-md);

}

.btn-outline {

    border: 2px solid var(--accent);
    color: var(--accent);

}

.btn-outline:hover {

    background: var(--accent);
    color: white;

}

.card {

    background: white;

    border-radius: var(--radius-medium);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

    overflow: hidden;

}

.card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-md);

}

.text-center {

    text-align: center;

}

.mt-2 {

    margin-top: 20px;

}

.mt-4 {

    margin-top: 40px;

}

.mb-2 {

    margin-bottom: 20px;

}

.mb-4 {

    margin-bottom: 40px;

}

@media(max-width:768px) {

    h1 {

        font-size: 2.8rem;

    }

    h2 {

        font-size: 2rem;

    }

    section {

        padding: 70px 0;

    }

}

/* =========================
   NAVIGATION
========================= */

.navbar {

    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);

}

.nav-wrapper {

    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo {

    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);

}

.logo span {

    color: var(--accent);

}

.nav-links {

    display: flex;
    gap: 35px;

}

.nav-links a {

    position: relative;

    font-weight: 500;

    transition: var(--transition);

}

.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 2px;

    background: var(--accent);

    transition: width .3s ease;

}

.nav-links a:hover {

    color: var(--accent);

}

.nav-links a:hover::after {

    width: 100%;

}

.nav-links a.active {

    color: var(--accent);

    font-weight: 600;

}

.nav-links a.active::after {

    width: 100%;

}

.menu-toggle {

    display: none;

    width: 44px;
    height: 44px;

    background: none;

    border: none;

    cursor: pointer;

    flex-direction: column;

    justify-content: center;

    gap: 6px;

}

.menu-toggle span {

    width: 28px;

    height: 3px;

    background: var(--primary);

    border-radius: 10px;

    transition: var(--transition);

}

.menu-toggle.active span:nth-child(1) {

    transform: translateY(9px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2) {

    opacity: 0;

}

.menu-toggle.active span:nth-child(3) {

    transform: translateY(-9px) rotate(-45deg);

}

.desktop-cta {

    display: block;

}

.mobile-cta {

    display: none;

}

/* =========================
   HERO
========================= */

#hero {

    background: var(--light);
    padding: 50px 0 70px;

}

.hero-content {

    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 60px;

}

.hero-tag {

    display: inline-block;

    background: #F3F4F6;

    color: var(--accent);

    padding: 10px 20px;

    border-radius: 50px;

    font-weight: 600;

    margin-bottom: 25px;

}

.hero-text p {

    margin: 35px 0;
    max-width: 650px;
    font-size: 1.15rem;
    line-height: 1.8;

}

.hero-buttons {

    display: flex;

    gap: 20px;

    margin-bottom: 30px;

}

.hero-features {

    display: flex;

    gap: 25px;

    flex-wrap: wrap;

    color: var(--primary);

    font-weight: 500;

}

.hero-image {

    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, .15);

}

.hero-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

}

/* ===========================
   HOME PAGE
=========================== */

.section-header {

    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;

}

.section-header h2 {
    margin: 20px 0;
}

.section-button {
    text-align: center;
    margin-top: 50px;
}

.services-preview-grid,

.fleet-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.service-preview {
    text-align: center;
    padding: 40px 30px;
}

.service-icon {

    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1;

}

.service-preview h3 {
    margin-bottom: 15px;
}

.fleet-preview-card {

    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;

}

.fleet-preview-card:hover {
    transform: translateY(-8px);
}

.fleet-preview-card img {

    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;

}

.fleet-preview-card h3 {

    padding: 25px;
    text-align: center;
    flex-grow: 1;

}

#why-us {

    padding: 100px 0;
    background: #F8FAFC;
    text-align: center;
}

#why-us .hero-tag {

    display: inline-block;

    margin-bottom: 18px;

}

#why-us .section-title {

    margin-bottom: 22px;

}

#why-us .section-description {

    max-width: 760px;

    margin: 0 auto 55px;

}

.why-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;

}

.why-card {

    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);

}

.why-card:hover {

    transform: translateY(-8px);

}

.why-icon {

    font-size: 3rem;
    margin-bottom: 20px;

}

.why-card h3 {

    margin-bottom: 15px;

}

.why-card p {

    margin: 0;
    line-height: 1.8;

}

/* ==========================================
   ABOUT PAGE
========================================== */

#about {

    background: var(--white);

}

.about-grid {

    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 60px;
    align-items: center;

}

.about-image {

    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;

}

.about-image img {

    max-width: 420px;
    width: 100%;
    height: auto;
    transition: var(--transition);

}

.about-image img:hover {

    transform: scale(1.02);

}

.about-text p {

    margin-bottom: 24px;

}

.about-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 15px;

}

.feature-card {

    background: var(--white);

    padding: 35px 30px;

    border-radius: 22px;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}

.feature-card:hover {

    transform: translateY(-6px);

}

.feature-card h3 {

    margin-bottom: 15px;

    color: var(--primary);

}

.feature-card p {

    margin: 0;

    line-height: 1.8;

}

.about-preview {

    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 0;
}

.about-preview h2 {

    margin: 20px 0;

}

.about-preview p {

    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;

}

.about-text h1 {

    margin-bottom: 40px;

}

.about-wrapper {

    background: var(--light);

    margin-top: -20px;

    padding: 30px;

    border-radius: 28px;

}

/* ==========================================
   SERVICES PAGE
========================================== */

.services-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0px;
    align-items: stretch;

}

.service-card {

    background: #FFFFFF;
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 23, 42, 0.05);

}

.service-card h3 {

    margin: 18px 0 14px;

}

#services-page .section-header {

    margin-bottom: 30px;

}

#services-page h1 {
    margin-bottom: 28px;
}

#services-page {

    padding-bottom: 90px;

}

.service-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-lg);

}

.services-wrapper {

    background: #EEF2F7;

    margin-top: 40px;

    padding: 40px 35px;

    border-radius: 28px;

}

.services-cta {

    background: var(--primary);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
    margin-top: -30px;
    border-radius: 0 0 40px 40px;
    margin-bottom: 80px;

}

.services-cta .hero-tag {

    display: inline-block;
    margin-bottom: 22px;

}

.services-cta h2 {

    color: var(--white);
    font-size: 2.6rem;
    margin-bottom: 24px;

}

.services-cta p {

    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, .85);
    font-size: 1.1rem;
    line-height: 1.8;

}

.services-cta .btn {

    padding: 16px 42px;
    font-size: 1rem;

}

/* ==========================================
   FLEET PAGE
========================================== */

.fleet-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;

}

.fleet-card {

    padding: 0;
    overflow: hidden;
    border-radius: 20px;
    transition: var(--transition);

}

.fleet-card:hover {

    transform: translateY(-8px);

}

.fleet-card img {

    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;

}

.fleet-content {

    padding: 30px;

}

.fleet-content h3 {

    margin-bottom: 15px;
    color: var(--dark);

}

.fleet-content p {

    margin: 0;
    line-height: 1.7;

}

.fleet-image {

    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 20px;

}

.fleet-image img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

}

/* ==========================================
   CONTACT PAGE
========================================== */

.contact-card {

    padding: 40px;

}

.contact-card h3 {

    margin-bottom: 20px;

}

.contact-card p {

    margin-bottom: 12px;

}

.contact-grid {

    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;

}

.contact-form {

    background: #fff;
    padding: 45px;
    border-radius: 20px;

    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);

}

.contact-form form {

    display: grid;
    gap: 18px;

}

.contact-form input,
.contact-form select,
.contact-form textarea {

    width: 100%;
    padding: 16px;

    border: 1px solid #D1D5DB;

    border-radius: 10px;

    font-family: inherit;

    font-size: 1rem;

    transition: var(--transition);

}

.contact-form textarea {

    resize: vertical;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {

    outline: none;

    border-color: var(--accent);

    box-shadow: 0 0 0 4px rgba(201, 162, 39, .15);

}

.contact-info {

    background: #fff;

    padding: 45px;

    border-radius: 20px;

    border-top: 6px solid var(--accent);

    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);

}

.contact-info h2 {

    margin-bottom: 30px;

}

.contact-info p {

    margin-bottom: 30px;

    line-height: 1.8;

}

.contact-info .btn {

    width: 100%;
}

#contact-page {

    padding: 50px 0 70px;

    background: linear-gradient(180deg,
            var(--primary) 0,
            var(--primary) 320px,
            var(--light) 320px);

}

#contact-page .section-header h1 {

    color: var(--white);
    font-size: 2.3rem;
    margin-bottom: 12px;
}

#contact-page .section-header p {

    color: #CBD5E1;
    max-width: 650px;
    margin: 0 auto;
    font-size: 1rem;
    margin: 0 auto;

}

#contact-page .section-header {

    min-height: 180px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    margin-bottom: 40px;

}

.contact-item a {

    color: var(--gray);

    text-decoration: none;

    transition: var(--transition);

}

.contact-item a:hover {

    color: var(--accent);

}

.contact-form,
.contact-info {

    transition: var(--transition);

}

.contact-form:hover,
.contact-info:hover {

    transform: translateY(-6px);

}

.contact-item {

    padding: 20px 0;

    border-bottom: 1px solid var(--border);

}

.contact-item:last-of-type {

    border-bottom: none;

    margin-bottom: 30px;

}

.contact-item h3 {

    margin-bottom: 8px;

    color: var(--primary);

}

.contact-item p {

    margin: 0;

    color: var(--gray);

}

#quote-form {

    scroll-margin-top: 120px;

}


/* ==========================
   CTA SECTIONS
========================== */

#contact-cta {

    padding: 100px 0;

}

.contact-cta {

    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: #fff;
    padding: 80px;
    border-radius: 24px;
    text-align: center;

}

.contact-cta h2 {

    color: #fff;
    margin: 20px 0;

}

.contact-cta p {

    max-width: 700px;
    margin: 0 auto 40px;
    color: #CBD5E1;
    line-height: 1.8;

}

.contact-cta .hero-buttons {

    justify-content: center;

}


/* ==========================
   FOOTER
========================== */

footer {

    background: var(--primary);
    color: var(--white);
    padding: 70px 0 30px;
    margin-top: 0;
    border-radius: 40px 40px 0 0;

}

.footer-grid {

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;

}

.footer-grid h3 {

    color: var(--white);
    margin-bottom: 20px;

}

.footer-about p,
.footer-contact p,
.footer-links a {

    color: #CBD5E1;

}

.footer-links li {

    margin-bottom: 12px;

}

.footer-links a {

    transition: var(--transition);

}

.footer-links a:hover {

    color: var(--accent);

}

.footer-bottom {

    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;

}

.footer-bottom p {

    color: #94A3B8;

}

.footer-logo {

    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    color: var(--white);

}

.footer-logo span {

    color: var(--accent);

}

/* ==========================
   BACK TO TOP BUTTON
========================== */

#backToTop {

    position: fixed;

    bottom: 30px;

    right: 30px;

    width: 55px;

    height: 55px;

    border: none;

    border-radius: 50%;

    background: var(--accent);

    color: var(--white);

    font-size: 1.4rem;

    cursor: pointer;

    display: flex;

    justify-content: center;

    align-items: center;

    box-shadow: var(--shadow-md);

    transition: var(--transition);

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    z-index: 999;

}

#backToTop.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

#backToTop:hover {

    background: var(--primary);

    transform: translateY(-4px);

}

/* ==========================
   MOBILE RESPONSIVE
========================== */

@media (max-width: 768px) {
    /* Mobile Navigation */

    .desktop-cta {

        display: none;

    }

    .mobile-cta {

        display: block;

        width: 100%;

        margin-top: 40px;

    }

    .mobile-cta .btn {

        display: block;

        width: 100%;

        text-align: center;

    }

    .nav-wrapper {

        display: flex;
        justify-content: space-between;
        align-items: center;

    }

    .nav-links {

        position: absolute;

        top: 90px;

        left: 0;

        width: 100%;

        background: var(--white);

        flex-direction: column;

        gap: 24px;

        padding: 30px;

        box-shadow: var(--shadow-sm);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-20px);

        transition: var(--transition);

        border-radius: 0 0 20px 20px;

        text-align: center;

        padding-top: 35px;

        align-items: center;

    }

    .nav-links.active {

        display: flex;

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }

    .nav-wrapper>.btn {

        display: none;

    }

    .menu-toggle {

        display: flex;

        margin-left: auto;

    }

    .logo {

        font-size: 1.35rem;

        white-space: nowrap;

    }

    .btn {

        padding: 14px 26px;

    }

    .hero-content {

        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;

    }

    .hero-image {

        order: -1;
        height: 280px;

    }

    .hero-text h1 {

        font-size: 2rem;
        line-height: 1.15;
        max-width: 100%;

    }

    .hero-text p {

        margin: 20px auto 30px;
        max-width: 100%;

    }

    .hero-buttons {

        justify-content: center;
        flex-wrap: wrap;

    }

    .hero-features {

        justify-content: center;
        gap: 15px;

    }

    /* Global Typography */

    h1 {

        font-size: 2.3rem;

        line-height: 1.2;

    }

    h2 {

        font-size: 2rem;

    }

    .about-preview {

        padding: 0 10px;

    }

    .about-preview p {

        max-width: 100%;

    }

    .about-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .about-image {

        justify-content: center;

    }

    .about-image img {

        width: 100%;

        max-width: 340px;

        border-radius: 20px;

    }

    .about-text h1 {

        font-size: 1.9rem;

        line-height: 1.2;

        margin-bottom: 30px;

    }

    .about-text {

        text-align: center;

    }

    .about-text p {

        text-align: left;

    }

    .about-features {

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .feature-card {

        padding: 30px 25px;

    }

    .services-preview-grid {

        grid-template-columns: 1fr;

    }

    .service-preview {

        padding: 35px 25px;

    }

    .services-cta {

        padding: 70px 0;
        border-radius: 20px 20px 0 0;

    }

    .services-cta h2 {

        font-size: 1.8rem;
        line-height: 1.3;

    }

    .services-cta p {

        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;

    }

    .services-grid {

        grid-template-columns: 1fr;
        gap: 20px;

    }

    .services-wrapper {

        padding: 30px 20px;
        margin-top: 25px;
        border-radius: 20px;

    }

    .service-card {

        padding: 28px 22px;

    }

    .service-card h3 {

        font-size: 1.35rem;
        margin-bottom: 12px;

    }

    .service-card p {

        font-size: .98rem;
        line-height: 1.7;

    }

    #services-page .section-header {

        margin-bottom: 20px;

    }

    #services-page {

        padding-top: 40px;
        padding-bottom: 50px;

    }

    .fleet-preview-grid {

        grid-template-columns: 1fr;

    }

    .fleet-preview-card img {

        height: 240px;

    }

    .why-grid {

        grid-template-columns: 1fr;

    }

    .why-card {

        padding: 35px 25px;

    }

    .contact-cta {

        padding: 45px 25px;

    }

    .contact-cta .hero-buttons {

        flex-direction: column;
        align-items: center;

    }

    .contact-cta .btn {

        width: 100%;
        max-width: 280px;

    }

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }

    .contact-form,
    .contact-info {

        padding: 30px 25px;

    }

    .section-title {

        font-size: 2rem;

    }

    .footer-grid {

        grid-template-columns: 1fr;

        text-align: center;

        gap: 40px;

    }

    .footer-about,
    .footer-links,
    .footer-contact {

        width: 100%;

    }

    .footer-contact p {

        word-break: break-word;

    }

    .footer-links ul {

        padding: 0;

        list-style: none;

    }

    .hero-buttons {

        gap: 15px;

    }

    section {

        padding: 70px 0;

    }

    .section-header {

        margin-bottom: 40px;

    }

    .section-header h2 {

        font-size: 2rem;

    }

    .section-header p {

        max-width: 100%;

    }

    .hero-tag {

        margin-bottom: 18px;

    }

    #backToTop {

        width: 48px;

        height: 48px;

        bottom: 20px;

        right: 20px;

        font-size: 1.2rem;

    }
}