/* Landing page — reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

#main-content {
    width: 100%;
    overflow-x: hidden;
}

/* ── Banner: bg 100% width, content in .container ── */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(10, 15, 25, 0.93) 0%,
        rgba(10, 15, 25, 0.82) 50%,
        rgba(10, 15, 25, 0.65) 100%
    );
    z-index: 1;
}

.banner .container {
    position: relative;
    z-index: 2;
}

.banner-inner {
    padding: 80px 0;
    color: #ffffff;
}

.banner-eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 20px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f5a623;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.4);
    border-radius: 50px;
}

.banner-eyebrow i,
.section-eyebrow i {
    font-size: 14px;
}

.banner-title,
.section-title {
    margin: 0 0 20px;
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    line-height: 1.15;
}

.banner-title {
    font-size: clamp(32px, 5vw, 52px);
    color: #ffffff;
}

.section-title {
    font-size: clamp(28px, 4.5vw, 44px);
    color: #0f172a;
}

.section-title--light {
    color: #ffffff;
}

.section-title--narrow {
    max-width: 520px;
}

.banner-title-highlight,
.section-title-highlight {
    display: block;
    color: #f5a623;
}

.banner-text {
    margin: 0 0 28px;
    max-width: 520px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.banner-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.banner-btn-primary {
    background: linear-gradient(135deg, #f5a623, #e58e26);
    color: #121212;
    border: none;
}

.banner-btn-primary:hover {
    color: #121212;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}

.banner-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.banner-btn-outline:hover {
    color: #ffffff;
    border-color: #f5a623;
    background: rgba(245, 166, 35, 0.1);
}

.banner-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.banner-stats li {
    display: flex;
    flex-direction: column;
}

.banner-stats strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #f5a623;
}

.banner-stats span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.65);
}

/* Right image */
.banner-media {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    padding-bottom: 24px;
}

.banner-media-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.banner-media-badge {
    position: absolute;
    bottom: 0;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #ffffff;
    color: #121212;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.banner-media-badge i {
    font-size: 28px;
    color: #22c55e;
}

.banner-media-badge strong {
    display: block;
    font-size: 14px;
}

.banner-media-badge span {
    font-size: 12px;
    color: #64748b;
}

/* Mobile */
@media (max-width: 991px) {
    .banner-inner {
        padding: 60px 0;
        text-align: center;
    }

    .banner-text {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .banner-media {
        margin-top: 40px;
    }

    .banner-media-badge {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 575px) {
    .banner-buttons {
        flex-direction: column;
    }

    .banner-btn {
        width: 100%;
        text-align: center;
    }
}

/* ── Trusted Clients (partner design) ────────────── */
.clients-section {
    position: relative;
    width: 100%;
    padding: 88px 0;
    background: #f6f8fb;
    overflow: hidden;
}

.clients-section-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 42%, rgba(59, 130, 246, 0.07) 0%, transparent 42%),
        radial-gradient(circle at 85% 50%, transparent 30%, rgba(59, 130, 246, 0.04) 31%, transparent 32%),
        radial-gradient(circle at 85% 50%, transparent 48%, rgba(59, 130, 246, 0.03) 49%, transparent 50%),
        radial-gradient(circle at 85% 50%, transparent 64%, rgba(59, 130, 246, 0.025) 65%, transparent 66%);
}

.clients-section-decor::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 28%;
    height: 100%;
    background-image: radial-gradient(rgba(59, 130, 246, 0.18) 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: 0.35;
}

.clients-section .container {
    position: relative;
    z-index: 1;
}

/* Section eyebrow (same as banner top title) */
.section-head-center {
    text-align: center;
}

.section-head-center .section-eyebrow {
    margin-bottom: 20px;
}

.section-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.section-divider span {
    display: block;
    width: 48px;
    height: 3px;
    background: #3b82f6;
    border-radius: 2px;
}

.section-divider-dot,
.section-divider i {
    display: block;
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    flex-shrink: 0;
}

.section-divider--gold span,
.section-divider--gold .section-divider-dot {
    background: #f5a623;
}

.clients-partner-text {
    margin: 0 0 32px;
    max-width: 520px;
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

/* Feature icons row */
.clients-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 520px;
}

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

.clients-feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.08);
}

.clients-feature-icon i {
    font-size: 28px;
    color: #3b82f6;
}

.clients-feature span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}

/* Right visual */
.clients-partner-visual {
    position: relative;
    text-align: center;
    padding: 12px 0 0;
}

.clients-partner-visual-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
}

/* Client list below */
.clients-list-wrap {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid #e2e8f0;
}

.clients-list-head {
    text-align: center;
    margin-bottom: 36px;
}

.clients-list-head h3 {
    margin: 0 0 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
}

.clients-list-head p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
}

.clients-sector-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e8edf3;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
    height: 100%;
}

.clients-sector-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.clients-sector-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.clients-sector-tag {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: rgba(59, 130, 246, 0.88);
    border-radius: 999px;
}

.clients-sector-body {
    padding: 24px;
}

.clients-sector-body h4 {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.clients-name-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.clients-name-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.clients-name-list li:last-child {
    border-bottom: none;
}

.clients-empty {
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
}

@media (max-width: 991px) {
    .clients-section {
        padding: 64px 0;
    }

    .section-title--narrow,
    .clients-partner-text {
        max-width: none;
    }

    .clients-features {
        max-width: none;
    }

    .clients-list-wrap {
        margin-top: 48px;
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .clients-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .clients-feature {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

    .clients-feature-icon {
        margin: 0;
        flex-shrink: 0;
        width: 56px;
        height: 56px;
    }

    .clients-feature-icon i {
        font-size: 22px;
    }
}

/* ── Client Reviews Slider ────────────────────────── */
.reviews-section {
    position: relative;
    width: 100%;
    padding: 88px 0;
}

.reviews-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.reviews-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 15, 25, 0.92) 0%,
        rgba(15, 23, 42, 0.88) 50%,
        rgba(10, 15, 25, 0.92) 100%
    );
    z-index: 1;
}

.reviews-section .container {
    position: relative;
    z-index: 2;
}

.reviews-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.reviews-subtitle {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
}

.reviews-slider {
    position: relative;
}

.reviews-viewport {
    overflow: hidden;
    margin: 0 -10px;
}

.reviews-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.reviews-slide {
    flex: 0 0 50%;
    padding: 0 10px;
    min-width: 0;
}

.review-card {
    height: 100%;
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.review-profile {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-profile span {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.04em;
}

.review-name {
    margin: 0 0 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
}

.review-role {
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

.review-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #475569;
    font-style: italic;
    min-height: 5.25em;
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.reviews-btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.reviews-btn:hover {
    background: rgba(245, 166, 35, 0.2);
    border-color: #f5a623;
    color: #f5a623;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.reviews-dot.is-active {
    background: #f5a623;
    transform: scale(1.2);
}

@media (max-width: 767px) {
    .reviews-section {
        padding: 64px 0;
    }

    .reviews-slide {
        flex: 0 0 100%;
    }

    .review-text {
        min-height: 0;
    }
}

/* ── About Us ─────────────────────────────────────── */
.about-section {
    position: relative;
    width: 100%;
    padding: 88px 0;
    background: #ffffff;
}

.about-section .container {
    position: relative;
}

.about-intro > [class*="col-"] {
    min-width: 0;
}

/* Image collage */
.about-visual {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    min-height: 420px;
    padding-bottom: 28px;
}

.about-visual-main,
.about-visual-float {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.about-visual-main {
    width: 82%;
    margin-left: auto;
}

.about-visual-main img,
.about-visual-float img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.about-visual-float {
    position: absolute;
    left: 0;
    bottom: 48px;
    width: 55%;
    border: 4px solid #ffffff;
}

.about-visual-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f5a623, #e58e26);
    color: #121212;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(245, 166, 35, 0.35);
}

.about-visual-badge strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
}

.about-visual-badge span {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.85;
}

.about-lead {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    font-weight: 500;
}

.about-text {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

.about-text strong {
    color: #0f172a;
}

.about-checklist {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}

.about-checklist i {
    color: #22c55e;
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}

.about-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: #121212;
    background: linear-gradient(135deg, #f5a623, #e58e26);
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-btn:hover {
    color: #121212;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}

/* Stats strip */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 72px 0 64px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.about-stat {
    padding: 32px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stat:last-child {
    border-right: none;
}

.about-stat strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #f5a623;
    line-height: 1.1;
    margin-bottom: 6px;
}

.about-stat span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 991px) {
    .about-section {
        padding: 64px 0;
    }

    .about-intro-copy {
        text-align: center;
    }

    .about-intro-copy .section-divider {
        justify-content: center;
    }

    .about-checklist {
        text-align: left;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-visual {
        margin-bottom: 16px;
    }

    .about-stats {
        margin: 48px 0 40px;
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stat:nth-child(2) {
        border-right: none;
    }

    .about-stat:nth-child(1),
    .about-stat:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 575px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about-stat:last-child {
        border-bottom: none;
    }
}

/* ── Why Organizations Choose Us ──────────────────── */
.choose-section {
    position: relative;
    width: 100%;
    padding: 88px 0;
}

.choose-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.choose-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(10, 15, 25, 0.94) 0%,
        rgba(15, 23, 42, 0.9) 45%,
        rgba(10, 15, 25, 0.94) 100%
    );
    z-index: 1;
}

.choose-section .container {
    position: relative;
    z-index: 2;
}

.choose-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}

.choose-head .section-divider {
    justify-content: center;
    margin-bottom: 16px;
}

.choose-subtitle {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.choose-values > [class*="col-"] {
    min-width: 0;
}

.choose-value-card {
    position: relative;
    height: 100%;
    min-height: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    cursor: default;
    opacity: 0;
    transform: translateY(48px) scale(0.96);
    transition:
        opacity 0.65s ease var(--animate-delay, 0s),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) var(--animate-delay, 0s),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.choose-value-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.choose-value-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(245, 166, 35, 0.55);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(245, 166, 35, 0.2);
}

.choose-value-card.is-visible:hover {
    transform: translateY(-8px) scale(1.02);
}

.choose-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.choose-value-card:hover .choose-card-bg {
    transform: scale(1.12);
}

.choose-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.35) 0%,
        rgba(15, 23, 42, 0.75) 55%,
        rgba(15, 23, 42, 0.95) 100%
    );
    transition: background 0.4s ease;
}

.choose-value-card:hover .choose-card-overlay {
    background: linear-gradient(
        180deg,
        rgba(245, 166, 35, 0.15) 0%,
        rgba(15, 23, 42, 0.8) 50%,
        rgba(15, 23, 42, 0.98) 100%
    );
}

.choose-card-shine {
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
    z-index: 1;
    pointer-events: none;
}

.choose-value-card:hover .choose-card-shine {
    left: 120%;
}

.choose-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: 300px;
    padding: 28px 24px;
}

.choose-value-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 166, 35, 0.2);
    border: 1px solid rgba(245, 166, 35, 0.35);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    transition: transform 0.35s ease, background 0.35s ease;
}

.choose-value-card.is-visible .choose-value-icon {
    animation: choose-icon-float 3s ease-in-out infinite;
    animation-delay: calc(var(--animate-delay, 0s) + 0.3s);
}

@keyframes choose-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.choose-value-card:hover .choose-value-icon {
    transform: scale(1.08);
    background: rgba(245, 166, 35, 0.35);
    animation: none;
}

.choose-value-icon i {
    font-size: 26px;
    color: #f5a623;
}

.choose-value-card h4 {
    margin: 0 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.choose-value-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 991px) {
    .choose-section {
        padding: 64px 0;
    }

    .choose-value-card {
        min-height: 280px;
    }

    .choose-card-content {
        min-height: 280px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .choose-value-card,
    .choose-card-bg,
    .choose-card-shine,
    .choose-value-icon {
        transition: none !important;
        animation: none !important;
    }

    .choose-value-card {
        opacity: 1;
        transform: none;
    }
}

/* ── Our Vehicles (tabbed fleet) ──────────────────── */
.fleet-section {
    width: 100%;
    padding: 88px 0;
    background: #ffffff;
}

.fleet-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.fleet-head .section-divider {
    justify-content: center;
    margin-bottom: 16px;
}

.fleet-subtitle {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

.fleet-tabs-wrap {
    background: #f8fafc;
    border: 1px solid #e8edf3;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
}

.fleet-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
    margin-bottom: 28px;
    border-bottom: none;
    scrollbar-width: thin;
}

.fleet-tabs .nav-item {
    flex-shrink: 0;
}

.fleet-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px !important;
    font-size: 14px;
    font-weight: 700;
    color: #475569 !important;
    background: #ffffff;
    border: 1px solid #e2e8f0 !important;
    border-radius: 999px !important;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.fleet-tab-btn i {
    font-size: 16px;
    color: #94a3b8;
    transition: color 0.25s ease;
}

.fleet-tab-btn:hover {
    color: #0f172a !important;
    border-color: rgba(59, 130, 246, 0.35) !important;
    background: #ffffff;
}

.fleet-tab-btn.active {
    color: #121212 !important;
    background: linear-gradient(135deg, #f5a623, #e58e26) !important;
    border-color: transparent !important;
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
}

.fleet-tab-btn.active i {
    color: #121212;
}

.fleet-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: #334155;
}

.fleet-tab-btn.active .fleet-tab-count {
    background: rgba(0, 0, 0, 0.15);
    color: #121212;
}

.fleet-tab-content {
    padding-top: 4px;
}

.fleet-tab-content .tab-pane {
    animation: fleet-tab-in 0.35s ease;
}

@keyframes fleet-tab-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fleet-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.55s ease var(--animate-delay, 0s),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) var(--animate-delay, 0s),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.fleet-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fleet-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.fleet-card.is-visible:hover {
    transform: translateY(-6px);
}

.fleet-card-media {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.fleet-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-card-media img {
    transform: scale(1.06);
}

.fleet-card-tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: rgba(59, 130, 246, 0.9);
    border-radius: 999px;
}

.fleet-card-body {
    padding: 22px 20px;
}

.fleet-card-title {
    margin: 0 0 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.fleet-card-model {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.fleet-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
}

.fleet-card-meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.fleet-card-meta i {
    color: #f5a623;
    font-size: 14px;
}

.fleet-card-owner {
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

.fleet-card-owner i {
    color: #3b82f6;
    margin-right: 4px;
}

.fleet-empty {
    margin: 0;
    padding: 32px;
    text-align: center;
    color: #94a3b8;
    font-size: 15px;
}

@media (max-width: 991px) {
    .fleet-section {
        padding: 64px 0;
    }

    .fleet-tabs-wrap {
        padding: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fleet-card,
    .fleet-tab-content .tab-pane {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ── Features ─────────────────────────────────────── */
.features-section {
    position: relative;
    width: 100%;
    padding: 88px 0;
}

.features-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.features-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(10, 15, 25, 0.93) 0%,
        rgba(15, 23, 42, 0.9) 50%,
        rgba(10, 15, 25, 0.93) 100%
    );
    z-index: 1;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

.features-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.features-head .section-divider {
    justify-content: center;
    margin-bottom: 16px;
}

.features-subtitle {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.features-card {
    height: 100%;
    padding: 28px 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.65s ease var(--animate-delay, 0s),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) var(--animate-delay, 0s),
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.features-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.features-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(245, 166, 35, 0.45);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
    transform: translateY(-6px);
}

.features-card.is-visible:hover {
    transform: translateY(-6px);
}

.features-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.features-card-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.25), rgba(245, 166, 35, 0.1));
    border: 1px solid rgba(245, 166, 35, 0.35);
    border-radius: 14px;
}

.features-card-icon i {
    font-size: 24px;
    color: #f5a623;
}

.features-card-title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
}

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

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.features-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.features-list li i {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 18px;
    color: #22c55e;
}

.features-list li span {
    font-weight: 500;
}

@media (max-width: 991px) {
    .features-section {
        padding: 64px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .features-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ── Contact Us ───────────────────────────────────── */
.contact-section {
    width: 100%;
    padding: 88px 0;
    background: #f6f8fb;
}

.contact-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.contact-head .section-divider {
    justify-content: center;
    margin-bottom: 16px;
}

.contact-subtitle {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

.contact-main {
    margin-bottom: 48px;
}

.contact-visual {
    position: relative;
    height: 100%;
    min-height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.contact-visual img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
}

.contact-visual-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.contact-visual-badge i {
    font-size: 32px;
    color: #f5a623;
    flex-shrink: 0;
}

.contact-visual-badge strong {
    display: block;
    font-size: 15px;
    color: #0f172a;
}

.contact-visual-badge span {
    font-size: 13px;
    color: #64748b;
}

.contact-form-wrap {
    height: 100%;
    padding: 32px 28px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.contact-alert i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.contact-alert-success i {
    color: #10b981;
}

.contact-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.contact-alert-error i {
    color: #ef4444;
}

.contact-alert-error ul {
    margin: 0;
    padding-left: 18px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.contact-required {
    color: #ef4444;
}

.contact-input {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 15px;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.contact-input::placeholder {
    color: #94a3b8;
}

.contact-textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 4px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    color: #121212;
    background: linear-gradient(135deg, #f5a623, #e58e26);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}

.contact-info-cards {
    margin-top: 8px;
}

.contact-info-card {
    height: 100%;
    padding: 28px 24px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 14px;
}

.contact-info-icon i {
    font-size: 26px;
    color: #3b82f6;
}

.contact-info-card h3 {
    margin: 0 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.contact-info-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
}

.contact-info-card a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card a:hover {
    color: #2563eb;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .contact-section {
        padding: 64px 0;
    }

    .contact-visual {
        min-height: 320px;
        margin-bottom: 8px;
    }

    .contact-visual img {
        min-height: 320px;
    }

    .contact-main {
        margin-bottom: 32px;
    }
}
