/* ========================================
   STATS SECTION
   ======================================== */
.stats {
    padding: 6rem 1.5rem;
    background: black;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.5s;
}

.dark .stats {
    background: #050505;
}

.stats__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

@media (min-width: 768px) {
    .stats__grid {
        gap: 5rem;
    }
}

@media (min-width: 1024px) {
    .stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.stat-item__value {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
}

@media (min-width: 768px) {
    .stat-item__value {
        font-size: 3rem;
    }
}

.stat-item__value .suffix {
    color: var(--primary-orange);
    margin-right: 0.25rem;
}

.stat-item__divider {
    width: 2.5rem;
    height: 4px;
    background: rgba(124, 179, 66, 0.3);
    margin: 1rem 0;
}

.stat-item__label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   PROJECTS SECTION
   ======================================== */
.projects {
    overflow: hidden;
}

.projects__trigger {
    height: 100vh;
    display: flex;
    align-items: center;
    background: black;
    transition: background-color 0.5s;
}

.dark .projects__trigger {
    background: #050505;
}

.projects__track {
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
    align-items: center;
    padding: 0 10vw;
}

.project-slide {
    flex-shrink: 0;
}

.projects__header {
    width: 400px;
    padding: 0 2.5rem;
}

@media (min-width: 768px) {
    .projects__header {
        width: 500px;
    }
}

.projects__header-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: right;
}

@media (min-width: 768px) {
    .projects__header-title {
        font-size: 4.5rem;
    }
}

.projects__header-desc {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 24rem;
    text-align: right;
}

.project-card {
    width: 80vw;
    height: 70vh;
    padding: 1rem 2rem;
    position: relative;
}

@media (max-width: 480px) {
    .projects__header {
        width: 320px;
        padding: 0 1.5rem;
    }

    .projects__header-title {
        font-size: 2.25rem !important;
    }

    .project-card {
        width: 85vw;
        height: 60vh;
        padding: 0.5rem 1rem;
    }

    .project-card__overlay {
        padding: 1.5rem;
    }

    .project-card__title {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .project-card {
        width: 60vw;
    }
}

.project-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card__inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5);
    transition: all 0.7s;
}

.project-card:hover .project-card__inner img {
    filter: grayscale(0);
}

.project-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, black, rgba(0, 0, 0, 0.2), transparent);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: right;
}

.project-card__tag {
    background: var(--primary-orange);
    width: fit-content;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    color: white;
    font-size: 0.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-left: auto;
    margin-right: 0;
}

.project-card__title {
    font-size: 1.875rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .project-card__title {
        font-size: 3rem;
    }
}

.project-card__desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
}

.project-card__action {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s;
}

.project-card:hover .project-card__action {
    opacity: 1;
    transform: translateY(0);
}

.project-card__action button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 900;
    font-size: 1.125rem;
}

.project-card__action button svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.project-card__action button:hover svg {
    transform: translateX(-8px);
}

.projects__end-circle {
    flex-shrink: 0;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects__end-btn {
    width: 10rem;
    height: 10rem;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: 900;
    transition: all 0.3s;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.dark .projects__end-btn {
    background: var(--primary-orange);
}

.projects__end-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

.dark .projects__end-btn:hover {
    background: white;
    color: black;
}

/* ========================================
   FLEET SECTION
   ======================================== */
.fleet {
    background: var(--bg-primary);
    transition: background-color 0.5s;
    position: relative;
}

.fleet__header {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 1.5rem 4rem;
}

.fleet__header-top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .fleet__header-top {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.fleet__header-subtitle {
    color: rgba(0, 0, 0, 0.5);
    max-width: 24rem;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dark .fleet__header-subtitle {
    color: rgba(255, 255, 255, 0.4);
}

.fleet__header-line {
    width: 3rem;
    height: 2px;
    background: var(--primary-orange);
}

.fleet__panels {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fleet-panel {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.fleet-panel__bg {
    position: absolute;
    top: -5%;
    left: 0;
    width: 100%;
    height: 110%;
    z-index: 0;
    pointer-events: none;
}

.fleet-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3);
    transition: all 0.7s;
}

.fleet-panel:hover .fleet-bg-image {
    filter: grayscale(0);
}

.fleet-panel__overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
}

[dir="rtl"] .fleet-panel__overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
}

.fleet-panel__overlay-dark {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.5s;
}

.fleet-panel:hover .fleet-panel__overlay-dark {
    background: rgba(0, 0, 0, 0.1);
}

.fleet-panel__content {
    position: relative;
    z-index: 20;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.fleet-content {
    max-width: 36rem;
    color: white;
}

.fleet-content--alt {
    margin-right: auto;
    margin-left: 0;
    text-align: left;
}

[dir="rtl"] .fleet-content--alt {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}

.fleet-content__count {
    display: inline-flex;
    align-items: center;
    background: rgba(124, 179, 66, 0.2);
    border: 1px solid rgba(124, 179, 66, 0.3);
    backdrop-filter: blur(12px);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-weight: 900;
    color: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.fleet-content__title {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: white;
}

@media (max-width: 480px) {
    .fleet-content__title {
        font-size: 1.75rem !important;
    }

    .fleet-content__desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .fleet-panel__content {
        padding: 0 1rem;
    }

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

@media (min-width: 768px) {
    .fleet-content__title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .fleet-content__title {
        font-size: 4.5rem;
    }
}

.fleet-content__desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .fleet-content__desc {
        font-size: 1.25rem;
    }
}

.fleet-content__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: fit-content;
}

@media (min-width: 1024px) {
    .fleet-content__features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fleet-content__feature {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .fleet-content__feature {
        font-size: 1rem;
    }
}

.fleet-content__feature svg {
    width: 18px;
    height: 18px;
    color: var(--primary-orange);
    flex-shrink: 0;
}