:root {
    --c-orange: #f7941d;
    --c-blue: #112036;
    --c-light: #f8f9fa;
    --c-gray: #6b7280;
    --c-white: #ffffff;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: #333;
    line-height: 1.6;
    background-color: var(--c-white);
}

/* Typography & Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.text-orange {
    color: var(--c-orange);
}

.text-blue {
    color: var(--c-blue);
}

.text-white {
    color: var(--c-white);
}

.text-gray {
    color: var(--c-gray);
}

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

.bg-blue {
    background-color: var(--c-blue);
    color: var(--c-white);
}

.bg-orange {
    background-color: var(--c-flotte-bg, #f7941d);
}

.bg-light {
    background-color: var(--c-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.display-flex {
    display: flex;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

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

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

.flex-wrap {
    flex-wrap: wrap;
}

.gap-5 {
    gap: 3rem;
}

.m-0 {
    margin: 0;
}

.w-100 {
    width: 100%;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

.mr-3 {
    margin-right: 1.5rem;
}

.italic {
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-heading);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-orange:hover {
    background-color: #d17c18;
    /* Slightly darker than #f7941d */
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--c-blue);
    border: 2px solid var(--c-blue);
}

.btn-outline:hover {
    background-color: var(--c-blue);
    color: var(--c-white);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background-color: var(--c-white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--c-blue);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--c-blue);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f59e3d;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 100px 0;
    text-align: left;
    background-color: var(--c-white);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.05) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.pill-badge {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 850px;
    background-color: #fdfdfd;
    border: 1px solid #f1f5f9;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 12px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #334155;
    margin-bottom: 45px;
    letter-spacing: 1px;
}

.pill-badge .dot {
    width: 6px;
    height: 6px;
    background-color: var(--c-orange);
    border-radius: 50%;
    margin-right: 12px;
}

.hero-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 750px;
    margin: 0 0 50px 0;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.hero-image-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

/* Stats Section */
.stats {
    padding: 80px 0 240px 0;
    background: linear-gradient(rgba(248, 250, 252, 0.92), rgba(248, 250, 252, 0.92)), url('cam.png');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.stats-grid {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 80px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 42px;
    color: var(--c-blue);
    margin-bottom: 5px;
    line-height: 1;
    font-weight: 800;
}

.stat-label {
    font-size: 14px;
    color: var(--c-gray);
    font-weight: 500;
}

/* Presentation Section */
.presentation {
    padding: 80px 0;
    position: relative;
}

.presentation-card {
    background: var(--c-white);
    color: var(--c-blue);
    max-width: 1000px;
    margin: -160px auto 50px auto;
    padding: 80px 100px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.presentation-card .sub-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.presentation-card .title {
    font-size: 36px;
    margin-bottom: 30px;
}

.presentation-card .desc {
    font-size: 16px;
    color: #444;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-icons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

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

.f-icon i {
    font-size: 40px;
    margin-bottom: 15px;
}

.f-icon span {
    display: block;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--font-heading);
}

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

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    font-size: 15px;
    color: #e2e8f0;
}

.benefit-item i {
    margin-top: 4px;
    font-size: 16px;
    color: #eba542 !important;
}

/* Flotte Section */
.flotte {
    padding: 80px 0;
    background-color: #f7941d;
    /* specific orange/yellow */
}

.flotte .title {
    font-size: 36px;
}

.flotte-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.flotte-item {
    text-align: center;
    color: var(--c-blue);
}

.flotte-item h4 {
    font-weight: 800;
}

.flotte-item span {
    font-size: 14px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--c-blue);
}

.contact-container {
    gap: 40px;
    flex-wrap: wrap;
}

.contact-form-wrapper {
    flex: 1.5;
    min-width: 300px;
}

.contact-form-wrapper .title {
    font-size: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    color: #cbd5e1;
    margin-bottom: 10px;
    font-size: 12px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: none;
    background-color: #1a3253;
    /* form input dark */
    color: var(--c-white);
    font-family: var(--font-body);
}

.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px #eba542;
}

/* Custom select styling for dropdown */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.contact-info-wrapper {
    flex: 1;
    min-width: 300px;
}

/* Footer */
.footer {
    background-color: var(--c-white);
    padding: 80px 0 20px;
    color: var(--c-blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-sub {
    color: var(--c-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 24px;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: #f59e3d;
}

.footer h4 {
    margin-bottom: 25px;
    font-size: 16px;
    color: var(--c-blue);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 15px;
    color: var(--c-gray);
    font-size: 14px;
}

.footer ul li a {
    color: var(--c-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #f59e3d;
}

.footer ul li i {
    color: #f59e3d;
    margin-right: 10px;
    width: 15px;
}

.copyright {
    border-top: 1px solid #eee;
    padding-top: 30px;
    color: var(--c-gray);
    font-size: 14px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #5cdb6e;
    color: var(--c-white);
    border-radius: 50%;
    width: 66px;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    box-shadow: 0 0 35px rgba(92, 219, 110, 0.65);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 45px rgba(92, 219, 110, 0.85);
    color: var(--c-white);
}

/* Marquee / Defilement Infini */
.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 5rem;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    justify-content: space-around;
    min-width: 100%;
    gap: 5rem;
    animation: scroll-marquee 20s linear infinite;
}

.marquee-logo {
    font-size: 28px;
    font-weight: 800;
    color: #94a3b8;
    font-family: var(--font-heading);
    text-transform: uppercase;
    transition: color 0.3s ease;
    cursor: default;
}

.marquee-logo:hover {
    color: var(--c-blue);
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 5rem));
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 44px;
    }

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

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

    .stats-grid {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .features-icons {
        flex-direction: column;
        gap: 30px;
    }

    .flotte-grid {
        gap: 50px;
        flex-direction: column;
        align-items: center !important;
    }

    .flotte-item img {
        max-width: 90vw !important;
        height: auto !important;
    }

    .stats {
        padding: 60px 0 120px 0;
    }

    .presentation-card {
        margin: -80px 20px 30px 20px;
        padding: 40px 30px;
    }

    .footer .d-flex {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        gap: 30px;
    }

    .footer-right,
    .footer-left {
        text-align: center !important;
    }
}