/********** Shree Radhe Logistics Website CSS **********/
:root {
    --primary: #06164f;
    --secondary: #d61145;
    --accent: #ffb300;
    --light: #f7f9ff;
    --dark: #07133c;
    --muted: #5d6680;
    --gradient: linear-gradient(135deg, #ffffff 0%, #f7f9ff 58%, #fff2e4 100%);
    --brand-gradient: linear-gradient(135deg, #ffffff 0%, #f8faff 46%, #fff1e0 100%);
    --cool-gradient: linear-gradient(135deg, #06164f 0%, #132b83 100%);
}

body {
    color: var(--muted);
    background: #ffffff;
    font-family: "Roboto", sans-serif;
    padding-top: 58px;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
h2,
h3,
.fw-bold {
    color: var(--dark);
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    color: var(--dark);
    font-weight: 600 !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background: var(--primary) !important;
}

.btn {
    font-weight: 600;
    transition: .35s;
    border-radius: 7px;
}

.btn-primary {
    background: var(--secondary);
    border: 1px solid var(--secondary);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(214, 17, 69, .16);
}

.navbar-light .btn-primary {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #b90e3a;
    border-color: #b90e3a;
    box-shadow: 0 14px 28px rgba(214, 17, 69, .22);
}

.btn-secondary {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-login {
    color: #777777;
    background: #ffffff;
    border: 1px solid #9a9a9a;
    min-width: 118px;
    border-radius: 999px;
}

.btn-login:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.rounded-pill {
    border-radius: 8px !important;
}

.btn-outline-primary {
    color: var(--primary);
    background: #ffffff;
    border-color: rgba(6, 22, 79, .18);
}

.btn-outline-primary:hover {
    color: #ffffff;
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.offer-bar {
    min-height: 48px;
    padding: 10px 0;
    color: var(--primary);
    background: linear-gradient(90deg, #dbe6ff 0%, #edf2ff 50%, #dbe6ff 100%);
    font-size: 16px;
}

.offer-bar i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--secondary);
    border-radius: 50%;
}

.offer-bar a {
    min-width: 185px;
    padding: 8px 22px;
    color: var(--primary);
    background: #ffffff;
    border-radius: 999px;
    text-align: center;
    font-weight: 700;
}

.offer-bar a:hover {
    color: var(--secondary);
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 6px;
    margin-right: 6px;
    padding: 8px 12px 10px;
    color: rgba(6, 22, 79, .88) !important;
    outline: none;
    transition: .35s;
    font-weight: 600;
    font-size: 15px;
    border-radius: 0;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 8px 12px 10px;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
    background: transparent;
}

.navbar-light .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 2px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--secondary), #f04b7a);
    opacity: 0;
    transform: scaleX(.35);
    transition: opacity .25s ease, transform .25s ease;
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.navbar-light .navbar-brand h1 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 900 !important;
}

.navbar-light .navbar-brand h1 .fs-5 {
    font-size: .85rem !important;
}

.brand-logo {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 42px;
    object-fit: contain;
    transform: scale(2.35);
    transform-origin: left center;
}

.navbar-brand {
    width: 315px;
    height: 42px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #ffffff;
    background: var(--primary);
    margin-right: 10px;
    box-shadow: 0 12px 28px rgba(6, 22, 79, .14);
}

@media (max-width: 991.98px) {
    .navbar-light,
    .sticky-top.navbar-light {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #ffffff;
        box-shadow: 0 8px 24px rgba(6, 22, 79, .08);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #e5edf5;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .header-actions {
        align-items: stretch !important;
        flex-direction: column;
        gap: 10px;
    }

    .header-actions .btn {
        width: 100%;
    }

    .hero-header .col-lg-6:first-child,
    .hero-header .col-lg-6:last-child {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-logo-visual {
        transform: none;
    }

    .hero-image-rotator {
        margin: 0 auto;
        transform: none;
        height: clamp(260px, 58vw, 380px);
    }

    .portfolio-row,
    .portfolio-row-reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .portfolio-row-reverse .portfolio-text {
        order: -1;
    }

    .shiprocket-visual {
        min-height: 320px;
    }

    .delivery-panel {
        grid-template-columns: 1fr;
    }

    .delivery-panel-image img {
        min-height: 320px;
        max-height: 420px;
    }

    .delivery-feature {
        grid-template-columns: 64px 1fr;
    }

    .delivery-feature-icon {
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
    }

    .trucking-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 36px;
    }

    .trucking-copy h2 {
        max-width: 100%;
    }

    .trucking-visuals {
        min-height: auto;
        gap: 22px;
    }

    .truck-photo-small,
    .truck-photo-tall {
        height: 330px;
        margin-top: 0;
    }

    .cargo-help-grid {
        grid-template-columns: 1fr;
    }

    .cargo-help-visual,
    .cargo-help-visual img {
        min-height: 360px;
    }

    .about-intro-grid,
    .about-story-grid,
    .about-team-grid,
    .founder-card,
    .about-growth-card {
        grid-template-columns: 1fr;
    }

    .about-story-visual {
        order: -1;
    }

    .about-values-grid,
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-form-card {
        text-align: left;
    }

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

    .final-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .growth-support-card {
        grid-template-columns: 1fr;
    }

    .final-cta-actions {
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
        min-height: 58px;
        background: #ffffff;
        box-shadow: 0 6px 18px rgba(6, 22, 79, .08);
    }

    .navbar-light .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
    }

    .navbar-light .navbar-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .navbar-light .navbar-collapse > .btn {
        margin-left: auto !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-nav .nav-link {
        color: rgba(6, 22, 79, .88) !important;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: rgba(255, 255, 255, .96);
        backdrop-filter: blur(14px);
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--dark);
    }

    .navbar-light .navbar-nav .nav-link::before,
    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        display: none;
    }
}

.hero-header {
    position: relative;
    overflow: hidden;
    padding-top: 1.4rem !important;
    padding-bottom: 2rem !important;
    background:
        url(../img/bg-dot.png),
        url(../img/bg-dot.png),
        url(../img/bg-round.png),
        url(../img/bg-tree.png),
        var(--brand-gradient);
    background-position:
        12px 18px,
        bottom 190px right 18px,
        left 57% top -2px,
        left 45% bottom -1px,
        center center;
    background-repeat: no-repeat;
    background-size:
        auto,
        auto,
        auto,
        auto,
        cover;
}

.hero-header .my-5 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
}

.hero-header .py-5 {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
}

.hero-header::before {
    position: absolute;
    content: "";
    inset: 0;
    background:
        radial-gradient(circle at 78% 24%, rgba(214, 17, 69, .08), transparent 24%),
        radial-gradient(circle at 18% 20%, rgba(6, 22, 79, .06), transparent 28%),
        linear-gradient(105deg, rgba(255, 255, 255, .74) 0%, rgba(255, 255, 255, .36) 48%, rgba(255, 255, 255, .7) 100%);
}

.hero-header .container {
    position: relative;
    z-index: 1;
    max-width: 1420px;
}

.hero-header .row {
    justify-content: center;
}

.hero-header .col-lg-6:first-child {
    padding-left: clamp(18px, 3vw, 52px);
}

.hero-header .col-lg-6:last-child {
    padding-right: clamp(18px, 3vw, 48px);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.12;
    color: var(--primary);
    text-shadow: none;
}

.hero-title .accent-text {
    color: var(--secondary);
}

.hero-copy {
    font-size: 1.08rem;
    max-width: 590px;
    color: var(--muted);
}

.hero-visual {
    border-radius: 14px;
    box-shadow: 0 24px 54px rgba(6, 22, 79, .12);
    border: 8px solid rgba(255, 255, 255, .9);
}

.hero-logo-visual {
    max-height: 425px;
    object-fit: contain;
    filter: drop-shadow(0 24px 42px rgba(6, 22, 79, .16));
    transform: translateX(18px);
}

.hero-image-rotator {
    position: relative;
    width: min(100%, 680px);
    height: clamp(300px, 31vw, 440px);
    margin-left: auto;
    transform: translateX(18px);
}

.hero-rotator-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: translateX(22px) scale(.985);
    filter: drop-shadow(0 24px 42px rgba(6, 22, 79, .16));
    animation: heroImageCycle 16s infinite;
}

.hero-rotator-image:nth-child(1) {
    animation-delay: 0s;
}

.hero-rotator-image:nth-child(2) {
    animation-delay: 4s;
}

.hero-rotator-image:nth-child(3) {
    animation-delay: 8s;
}

.hero-rotator-image:nth-child(4) {
    animation-delay: 12s;
}

@keyframes heroImageCycle {
    0% {
        opacity: 0;
        transform: translateX(22px) scale(.985);
    }

    6%,
    23% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    31%,
    100% {
        opacity: 0;
        transform: translateX(-18px) scale(.985);
    }
}

.metric-card,
.logistics-card,
.service-item,
.contact-card {
    background: #ffffff;
    border: 1px solid #e9edf8;
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(6, 22, 79, .07);
}

.metric-card {
    padding: 20px;
    min-height: 120px;
}

.metric-card span {
    display: block;
    color: var(--primary);
    font-size: 2rem;
    font-weight: 800;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 48px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--secondary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 54px;
    background: var(--primary);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -28px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 28px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 3px;
    left: 0;
    background: rgba(214, 17, 69, .18);
}

.section-title h6::after {
    top: 6px;
    left: 3px;
    background: rgba(6, 22, 79, .24);
}

.soft-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(214, 17, 69, .04), transparent 26%),
        radial-gradient(circle at 86% 20%, rgba(255, 179, 0, .08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.service-item {
    position: relative;
    min-height: 335px;
    padding: 32px 26px;
    transition: .35s;
}

.service-item:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 17, 69, .16);
    box-shadow: 0 22px 46px rgba(6, 22, 79, .1);
}

.service-icon,
.feature-icon {
    margin: 0 auto 20px auto;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--cool-gradient);
    border-radius: 24px;
    box-shadow: 0 14px 30px rgba(6, 22, 79, .16);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-cloud span,
.supplier-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    color: var(--dark);
    background: #ffffff;
    border: 1px solid #e9edf8;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(20, 33, 61, .05);
}

.benefits-section {
    background:
        radial-gradient(circle at 2% 100%, rgba(214, 17, 69, .06), transparent 18%),
        radial-gradient(circle at 96% 100%, rgba(6, 22, 79, .06), transparent 18%),
        #ffffff;
}

.benefits-title {
    max-width: 760px;
    margin: 0 auto 62px auto;
}

.benefits-title span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.benefits-title h2 {
    color: var(--primary);
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
    margin: 0;
}

.benefits-title h2 strong {
    color: var(--secondary);
    font-weight: 800;
}

.benefit-item {
    height: 100%;
    text-align: center;
    padding: 0 12px;
}

.benefit-icon {
    position: relative;
    width: 132px;
    height: 132px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 34px;
    color: var(--secondary);
    background:
        radial-gradient(circle, #ffffff 0 56%, transparent 57%),
        linear-gradient(135deg, #fff4f7 0%, #f5f7ff 100%);
    border-radius: 50%;
    box-shadow: 0 18px 38px rgba(6, 22, 79, .1);
    font-size: 2.2rem;
}

.benefit-icon::before {
    position: absolute;
    content: "";
    inset: 18px;
    border: 1px dashed rgba(214, 17, 69, .72);
    border-radius: 50%;
}

.benefit-icon i {
    position: relative;
    z-index: 1;
}

.benefit-item h4 {
    max-width: 310px;
    min-height: 62px;
    margin: 0 auto 14px;
    color: #070b1a;
    font-size: clamp(1.15rem, 1.45vw, 1.45rem);
    line-height: 1.15;
    font-weight: 800;
}

.benefit-item p {
    max-width: 355px;
    margin: 0 auto;
    color: var(--dark);
    font-size: .98rem;
    line-height: 1.62;
}

.trucking-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(214, 17, 69, .045), transparent 25%),
        radial-gradient(circle at 92% 18%, rgba(6, 22, 79, .055), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.trucking-section::after {
    position: absolute;
    content: "";
    right: 7%;
    bottom: 38px;
    width: 330px;
    height: 120px;
    opacity: .38;
    background-image: radial-gradient(rgba(214, 17, 69, .32) 1.6px, transparent 1.6px);
    background-size: 16px 16px;
    z-index: 0;
}

.trucking-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
    gap: clamp(44px, 6vw, 96px);
    align-items: center;
    min-height: 620px;
}

.trucking-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--secondary);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.trucking-copy h2 {
    max-width: 620px;
    color: var(--primary);
    font-size: clamp(2rem, 3.2vw, 3.1rem);
    line-height: 1.16;
    font-weight: 800;
    margin-bottom: 18px;
}

.trucking-intro {
    max-width: 760px;
    color: var(--dark);
    font-size: 1.08rem;
    line-height: 1.65;
    margin-bottom: 28px;
}

.trucking-points {
    display: grid;
    gap: 24px;
    margin-bottom: 36px;
}

.trucking-point {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 22px;
    align-items: start;
}

.trucking-point-icon {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--secondary);
    border-radius: 50%;
    font-size: 1.45rem;
    box-shadow: 0 14px 30px rgba(214, 17, 69, .22);
}

.trucking-point:first-child .trucking-point-icon::after {
    position: absolute;
    content: "";
    top: 66px;
    left: 50%;
    width: 1px;
    height: 34px;
    border-left: 1px dashed rgba(214, 17, 69, .75);
}

.trucking-point h4 {
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.trucking-point p {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.trucking-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    color: #ffffff;
    background: var(--secondary);
    border: 1px solid var(--secondary);
    border-radius: 7px;
    box-shadow: 0 8px 18px rgba(214, 17, 69, .16);
    font-weight: 600;
    min-height: 50px;
}

.trucking-cta i {
    font-size: .9rem;
}

.trucking-cta:hover {
    color: #ffffff;
    transform: translateY(-2px);
    background: #b90e3a;
    border-color: #b90e3a;
    box-shadow: 0 14px 28px rgba(214, 17, 69, .22);
}

.trucking-visuals {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 5vw, 70px);
    align-items: center;
    min-height: 500px;
}

.truck-photo {
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 22px 46px rgba(6, 22, 79, .14);
    background: #f7f9ff;
}

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

.truck-photo-small {
    height: 360px;
    margin-top: 88px;
}

.truck-photo-small img {
    object-position: 43% center;
}

.truck-photo-tall {
    height: 480px;
    align-self: start;
}

.truck-photo-tall img {
    object-position: center;
}

.cargo-help-section {
    background:
        radial-gradient(circle at 10% 14%, rgba(6, 22, 79, .055), transparent 25%),
        radial-gradient(circle at 88% 16%, rgba(214, 17, 69, .055), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.cargo-help-grid {
    display: grid;
    grid-template-columns: minmax(420px, 1.05fr) minmax(0, .95fr);
    gap: clamp(38px, 5vw, 72px);
    align-items: center;
}

.cargo-help-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.cargo-help-copy h2 {
    max-width: 620px;
    margin-bottom: 26px;
    color: var(--primary);
    font-size: clamp(1.75rem, 2.45vw, 2.45rem);
    line-height: 1.18;
    font-weight: 800;
}

.cargo-help-copy h2 span {
    color: var(--secondary);
}

.cargo-help-cards {
    display: grid;
    gap: 24px;
}

.cargo-help-card {
    display: grid;
    grid-template-columns: 54px 1fr 20px;
    gap: 20px;
    align-items: center;
    padding: 22px 24px;
    color: var(--dark);
    background: #ffffff;
    border: 1px solid #dde4f4;
    border-radius: 12px;
    box-shadow: 0 14px 32px rgba(6, 22, 79, .1);
}

.cargo-help-card:hover {
    color: var(--dark);
    transform: translateY(-4px);
    border-color: rgba(214, 17, 69, .24);
    box-shadow: 0 20px 44px rgba(6, 22, 79, .14);
}

.cargo-help-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--secondary);
    border-radius: 12px;
    font-size: 1.45rem;
    box-shadow: 0 10px 22px rgba(214, 17, 69, .18);
}

.cargo-help-card h4 {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 1.12rem;
    font-weight: 800;
}

.cargo-help-card p {
    margin: 0;
    color: var(--dark);
    font-size: .98rem;
    line-height: 1.55;
}

.cargo-help-arrow {
    color: var(--secondary);
    font-size: .95rem;
}

.cargo-help-visual {
    overflow: hidden;
    border-radius: 20px;
    min-height: 460px;
    box-shadow: 0 22px 48px rgba(6, 22, 79, .13);
    background: #ffffff;
}

.cargo-help-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: center;
}

.about-intro-section {
    background: #ffffff;
}

.about-intro-grid,
.about-story-grid,
.about-team-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
}

.about-intro-visual,
.about-story-visual,
.about-team-visual {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border-radius: 22px;
    background: #f7f9ff;
    box-shadow: 0 22px 48px rgba(6, 22, 79, .12);
}

.about-intro-visual img,
.about-story-visual img,
.about-team-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.about-intro-visual img {
    object-position: 46% center;
}

.about-intro-visual .about-vehicle-img {
    object-fit: contain;
    object-position: center;
    padding: 20px;
}

.about-stat-badge {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 170px;
    padding: 18px 20px;
    color: #ffffff;
    background: var(--secondary);
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(214, 17, 69, .28);
}

.about-stat-badge strong,
.about-stat-badge span {
    display: block;
}

.about-stat-badge strong {
    font-size: 1.65rem;
    line-height: 1;
}

.about-stat-badge span {
    margin-top: 8px;
    font-size: .86rem;
    line-height: 1.3;
}

.about-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.about-intro-copy h2,
.about-story-copy h2,
.about-growth-copy h2 {
    color: var(--primary);
    font-size: clamp(2rem, 3.2vw, 3.1rem);
    line-height: 1.16;
    margin-bottom: 18px;
    font-weight: 800 !important;
}

.about-intro-copy h2 span {
    color: var(--secondary);
}

.about-intro-copy p,
.about-story-copy p,
.founder-copy p,
.about-team-card p,
.about-growth-copy p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.about-values-section,
.why-choose-section {
    background:
        radial-gradient(circle at 10% 18%, rgba(214, 17, 69, .07), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(255, 179, 0, .1), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.about-value-card {
    position: relative;
    overflow: hidden;
    min-height: 245px;
    padding: clamp(24px, 3vw, 34px);
    background:
        radial-gradient(circle at 100% 0%, rgba(19, 43, 131, .08), transparent 44%),
        #ffffff;
    border: 1px solid #e9edf8;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(6, 22, 79, .08);
    transition: .35s;
}

.about-value-card::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--cool-gradient);
    opacity: 0;
    transition: .35s;
}

.about-value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 17, 69, .22);
    box-shadow: 0 26px 52px rgba(6, 22, 79, .12);
}

.about-value-card:hover::after {
    opacity: 1;
}

.about-value-icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #ffffff;
    background: var(--cool-gradient);
    border-radius: 20px;
    font-size: 1.55rem;
    box-shadow: 0 14px 28px rgba(6, 22, 79, .14);
    transition: .35s;
}

.about-value-card:hover .about-value-icon {
    background: var(--secondary);
    box-shadow: 0 14px 28px rgba(214, 17, 69, .3);
}

.about-value-card:last-child .about-value-icon {
    background: linear-gradient(135deg, #d61145 0%, #f04e78 100%);
    box-shadow: 0 14px 28px rgba(214, 17, 69, .26);
}

.about-value-card:last-child:hover .about-value-icon {
    background: var(--cool-gradient);
    box-shadow: 0 14px 28px rgba(6, 22, 79, .16);
}

.about-value-card h4,
.about-team-card h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 800 !important;
}

.about-value-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.about-story-section,
.about-team-section {
    background: #ffffff;
}

.about-story-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .85fr);
}

.founder-section {
    background: var(--light);
}

.founder-card {
    display: grid;
    grid-template-columns: minmax(320px, .72fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    padding: clamp(24px, 3vw, 38px);
    background: #ffffff;
    border: 1px solid #e4eaf7;
    border-radius: 18px;
    box-shadow: 0 20px 48px rgba(6, 22, 79, .09);
}

.founder-image {
    overflow: hidden;
    height: 330px;
    border-radius: 16px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-copy h3 {
    color: var(--primary);
    font-size: clamp(1.55rem, 2.25vw, 2.25rem);
    line-height: 1.18;
    margin-bottom: 18px;
    font-weight: 800 !important;
}

.about-section-heading {
    max-width: 820px;
    margin: 0 auto 42px auto;
}

.about-section-heading h2 {
    color: var(--primary);
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.15;
    font-weight: 800 !important;
}

.about-section-heading h2 span {
    color: var(--secondary);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.why-choose-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 30px 24px;
    background: #ffffff;
    border: 1px solid #e9edf8;
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(6, 22, 79, .07);
    transition: .35s;
}

.why-choose-item:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 17, 69, .22);
    box-shadow: 0 24px 50px rgba(6, 22, 79, .11);
}

.why-choose-item i {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--cool-gradient);
    border-radius: 22px;
    font-size: 1.5rem;
    box-shadow: 0 14px 28px rgba(6, 22, 79, .16);
    transition: .35s;
}

.why-choose-item:hover i {
    background: var(--secondary);
    box-shadow: 0 14px 28px rgba(214, 17, 69, .3);
}

.why-choose-item p {
    margin: 0;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.55;
}

.about-team-grid {
    grid-template-columns: minmax(390px, .9fr) minmax(0, 1fr);
}

.about-team-copy {
    display: grid;
    gap: 22px;
}

.about-team-card {
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e8edf8;
    border-left: 5px solid var(--secondary);
    border-radius: 14px;
    box-shadow: 0 16px 36px rgba(6, 22, 79, .08);
}

.about-team-card p {
    margin: 0;
}

.about-growth-section {
    margin-bottom: 56px;
    padding-top: 56px !important;
    padding-bottom: 56px !important;
    background:
        linear-gradient(rgba(6, 22, 79, .88), rgba(6, 22, 79, .88)),
        url("../img/cargo-fulfillment-section.png") center/cover no-repeat;
}

.about-growth-card {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(380px, .7fr);
    gap: clamp(28px, 4vw, 58px);
    align-items: center;
    padding: clamp(26px, 4vw, 48px);
    background:
        radial-gradient(circle at 12% 14%, rgba(214, 17, 69, .13), transparent 26%),
        rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .22);
    backdrop-filter: blur(6px);
}

.about-growth-copy p {
    max-width: 690px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .86);
}

.about-growth-copy h2 {
    color: #ffffff;
}

.about-growth-copy .about-eyebrow {
    color: #ffb8ca;
}

.about-growth-form {
    display: grid;
    gap: 14px;
    padding: 26px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
}

.about-growth-form input,
.about-growth-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 7px;
    outline: none;
    padding: 12px 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, .09);
}

.about-growth-form input::placeholder,
.about-growth-form textarea::placeholder {
    color: rgba(255, 255, 255, .72);
}

.about-growth-form input:focus,
.about-growth-form textarea:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 .2rem rgba(214, 17, 69, .18);
}

.about-growth-form .btn {
    justify-self: center;
    min-width: 150px;
    margin-top: 4px;
}

.process-step {
    position: relative;
    padding: 26px;
    min-height: 230px;
}

.step-number {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--cool-gradient);
    font-weight: 800;
    margin-bottom: 18px;
}

.portfolio-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: rgba(20, 33, 61, .82);
    transition: .35s;
    z-index: 1;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.contact-card {
    padding: 28px;
}

.form-control {
    border-color: #dfe5f2;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .25rem rgba(214, 17, 69, .1);
}

.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 54px 0 64px;
    background:
        url(../img/bg-dot.png),
        radial-gradient(circle at 12% 84%, rgba(6, 22, 79, .055), transparent 28%),
        radial-gradient(circle at 84% 22%, rgba(214, 17, 69, .07), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f8faff 54%, #edf3ff 100%);
    background-position:
        right 8% top 48px,
        center,
        center,
        center;
    background-repeat: no-repeat;
    background-size:
        auto,
        cover,
        cover,
        cover;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
    min-height: 390px;
}

.contact-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.contact-hero-copy h1 {
    color: var(--primary);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.12;
    margin-bottom: 18px;
    font-weight: 800 !important;
}

.contact-hero-copy p {
    max-width: 650px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-hero-visual {
    text-align: center;
}

.contact-hero-visual img {
    width: min(100%, 360px);
    filter: drop-shadow(0 24px 36px rgba(6, 22, 79, .13));
}

.contact-main-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0 40px;
    margin-bottom: 48px;
    background:
        radial-gradient(circle at 86% 20%, rgba(214, 17, 69, .2), transparent 28%),
        linear-gradient(135deg, #06164f 0%, #10266f 64%, #d61145 100%);
}

.contact-main-section::before {
    content: "";
    position: absolute;
    left: -56px;
    top: 18px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 34px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
}

.contact-main-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 150px;
    background: #ffffff;
    clip-path: polygon(0 58%, 100% 18%, 100% 100%, 0 100%);
}

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

.contact-main-section .container::after {
    content: "";
    position: absolute;
    right: -30px;
    top: 118px;
    width: 190px;
    height: 78px;
    opacity: .35;
    background-image: radial-gradient(rgba(255, 255, 255, .7) 2px, transparent 2px);
    background-size: 22px 22px;
}

.contact-main-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(340px, .75fr);
    gap: clamp(34px, 4.5vw, 66px);
    align-items: stretch;
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: clamp(24px, 2.7vw, 32px);
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 18px 34px rgba(6, 22, 79, .18);
    overflow: hidden;
}

.contact-main-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.contact-form-card {
    position: relative;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.contact-card-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-form-card h1 {
    color: var(--primary);
    font-size: clamp(1.72rem, 2.15vw, 2.05rem);
    line-height: 1.12;
    margin-bottom: 6px;
    font-weight: 800 !important;
}

.contact-form-lead {
    margin-bottom: 16px;
    color: var(--dark);
    font-size: 1.05rem;
    line-height: 1.55;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.contact-field {
    display: grid;
    gap: 6px;
}

.contact-field.full {
    grid-column: 1 / -1;
}

.contact-field label {
    color: var(--primary);
    font-size: .95rem;
    font-weight: 700;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 9px 13px;
    color: var(--dark);
    background: #fbfcff;
    border: 1px solid #d6dce8;
    border-radius: 7px;
    outline: none;
    box-shadow: none;
}

.contact-field input {
    min-height: 39px;
}

.contact-field textarea {
    min-height: 96px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #8a92a6;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--secondary);
    background: #ffffff;
    box-shadow: 0 0 0 .2rem rgba(214, 17, 69, .1);
}

.contact-submit {
    margin-top: 14px;
    padding: 10px 30px !important;
    min-width: 160px;
    background: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 14px 28px rgba(214, 17, 69, .18);
}

.contact-submit:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.contact-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 100%;
    padding: 4px 0 0;
}

.contact-image-card {
    position: relative;
    width: 100%;
    min-height: 298px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: visible;
    border-radius: 0;
    background: transparent;
}

.contact-image-card img {
    width: min(100%, 440px);
    max-height: 285px;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(6, 22, 79, .1));
}

.contact-side-details {
    display: grid;
    gap: 22px;
    width: min(100%, 430px);
    margin-top: 20px;
}

.contact-side-item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: auto;
    padding: 0;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.contact-side-item:hover {
    color: var(--secondary);
    transform: none;
    box-shadow: none;
}

.contact-side-item span {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    background: #ffffff;
    border: 2px solid #7a8190;
    border-radius: 10px;
    font-size: .95rem;
}

.contact-side-item strong {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.contact-follow-inline {
    width: min(100%, 430px);
    margin-top: 28px;
    padding: 0;
    text-align: left;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.contact-follow-inline h5 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 1.45rem;
    font-weight: 600 !important;
}

.contact-socials {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

.contact-socials a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(6, 22, 79, .12);
}

.contact-socials a:nth-child(1) {
    background: #1877f2;
}

.contact-socials a:nth-child(2) {
    background: linear-gradient(135deg, #f9ce34, #ee2a7b 48%, #6228d7);
}

.contact-socials a:nth-child(3) {
    background: #000000;
}

.contact-socials a:nth-child(4) {
    background: #ff0000;
}

.contact-socials a:nth-child(5) {
    background: #0a66c2;
}

.contact-socials a:hover {
    color: #ffffff;
    background: var(--secondary);
    transform: translateY(-2px);
}

.trust-strip {
    background: var(--primary);
    color: #ffffff;
}

.trust-strip .trust-pill {
    min-height: 70px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
}

.solution-card {
    min-height: 330px;
    padding: 30px;
}

.solution-card .price-line {
    color: var(--secondary);
    font-weight: 800;
}

.portfolio-section {
    background: #ffffff;
}

.portfolio-heading {
    max-width: 820px;
    margin: 0 auto 70px auto;
    text-align: center;
}

.portfolio-heading h2 {
    color: var(--primary);
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.12;
    margin-bottom: 0;
    letter-spacing: 0;
    font-weight: 900 !important;
}

.portfolio-heading h2 span {
    color: var(--secondary);
}

.portfolio-story {
    display: flex;
    flex-direction: column;
    gap: 92px;
}

.portfolio-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(48px, 7vw, 110px);
}

.portfolio-row-reverse {
    grid-template-columns: 1fr 1fr;
}

.portfolio-text h3 {
    color: var(--primary);
    font-size: clamp(1.65rem, 2.5vw, 2.45rem);
    line-height: 1.18;
    margin-bottom: 20px;
    font-weight: 800 !important;
}

.portfolio-text p {
    max-width: 640px;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.68;
}

.shiprocket-visual {
    position: relative;
    min-height: 360px;
    overflow: visible;
}

.grid-bg {
    position: absolute;
    inset: 34px 20px 20px 20px;
    border: 1px solid #e7ebf3;
    background-image:
        linear-gradient(#e7ebf3 1px, transparent 1px),
        linear-gradient(90deg, #e7ebf3 1px, transparent 1px);
    background-size: 74px 54px;
    opacity: .75;
}

.floating-logo {
    position: absolute;
    top: 70px;
    left: 80px;
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(6, 22, 79, .1);
    font-weight: 800;
    font-size: .75rem;
}

.floating-logo.second {
    top: 235px;
    left: 50px;
}

.floating-logo.third {
    top: 70px;
    right: 85px;
    left: auto;
    color: var(--secondary);
}

.courier-panel {
    position: absolute;
    right: 56px;
    top: 135px;
    width: 245px;
    padding: 20px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 22px 50px rgba(6, 22, 79, .16);
}

.courier-panel small {
    display: block;
    margin: -20px -20px 15px -20px;
    padding: 14px 18px;
    color: #ffffff;
    background: var(--primary);
    border-radius: 18px 18px 0 0;
    font-weight: 800;
}

.courier-panel div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 0;
    color: var(--primary);
    border-bottom: 1px solid #eef1f7;
    font-size: .9rem;
}

.courier-panel div:last-child {
    border-bottom: 0;
}

.parcel-box {
    position: absolute;
    bottom: 22px;
    left: 220px;
    width: 130px;
    height: 95px;
    border-radius: 8px;
    background: linear-gradient(135deg, #d99542, #f2bd72);
    box-shadow: inset 0 0 0 3px rgba(255,255,255,.18), 0 18px 35px rgba(6, 22, 79, .15);
}

.warehouse-img {
    position: absolute;
    left: 60px;
    top: 32px;
    width: 280px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: linear-gradient(135deg, #fff7ec, #ffffff);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(6, 22, 79, .12);
}

.warehouse-img i {
    font-size: 5rem;
}

.status-card,
.quick-card,
.cargo-card {
    position: absolute;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 20px 48px rgba(6, 22, 79, .13);
}

.status-card {
    right: 54px;
    top: 135px;
    width: 300px;
    padding: 22px;
}

.status-card i {
    color: #31b653;
    font-size: 1.4rem;
    margin-right: 8px;
}

.status-card strong,
.status-card span {
    display: block;
}

.status-card strong {
    color: var(--primary);
}

.status-card span {
    margin-top: 12px;
    color: var(--muted);
}

.quick-card {
    right: 60px;
    top: 72px;
    width: 365px;
    padding: 22px 26px;
    border: 2px solid rgba(214, 17, 69, .35);
    background: linear-gradient(135deg, #ffffff, #fff5f8);
}

.quick-card strong {
    display: flex;
    justify-content: space-between;
    color: var(--primary);
    font-size: 1.2rem;
}

.quick-card span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.quick-card ul {
    display: flex;
    gap: 20px;
    padding: 16px 0 0 0;
    margin: 14px 0 0 0;
    border-top: 1px solid #f3d8e0;
    color: var(--primary);
    list-style-position: inside;
    font-size: .9rem;
}

.rider-icon {
    position: absolute;
    right: 160px;
    bottom: 18px;
    color: var(--secondary);
    font-size: 6rem;
    filter: drop-shadow(0 18px 28px rgba(6, 22, 79, .14));
}

.cargo-card {
    left: 82px;
    top: 92px;
    width: 260px;
    padding: 26px;
    color: var(--primary);
}

.cargo-card.second {
    left: auto;
    right: 80px;
    top: 205px;
}

.cargo-card i {
    color: var(--secondary);
    font-size: 2rem;
    margin-right: 12px;
}

.cargo-card span {
    font-weight: 900;
    color: var(--primary);
}

.feature-row {
    padding: 36px;
}

.delivery-panel-section {
    background: #ffffff;
    padding-top: 32px !important;
    padding-bottom: 32px !important;
}

.delivery-panel {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 32px;
    width: min(calc(100vw - 72px), 1640px);
    margin-left: 50%;
    transform: translateX(-50%);
    padding: clamp(22px, 2.6vw, 34px);
    color: var(--primary);
    background:
        radial-gradient(circle at 9% 8%, rgba(214, 17, 69, .095), transparent 31%),
        radial-gradient(circle at 92% 15%, rgba(6, 22, 79, .11), transparent 35%),
        linear-gradient(135deg, #f2f5ff 0%, #ffffff 52%, #ffedf3 100%);
    border: 1px solid #dde4f4;
    border-radius: 20px;
    box-shadow: 0 18px 46px rgba(6, 22, 79, .12);
}

.delivery-panel-copy h2 {
    color: var(--primary);
    font-size: clamp(1.55rem, 2.35vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: 12px;
}

.delivery-panel-copy h2 span {
    color: var(--secondary);
}

.delivery-panel-copy > p {
    max-width: 700px;
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.55;
    margin-bottom: 20px;
}

.delivery-feature {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
    margin-bottom: 13px;
    background: #ffffff;
    border: 1px solid #e9edf8;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(6, 22, 79, .055);
}

.delivery-feature.active {
    border-color: rgba(214, 17, 69, .26);
    background: linear-gradient(135deg, #ffffff 0%, #fff7fa 100%);
}

.delivery-feature-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--primary);
    border-radius: 12px;
    font-size: 1.3rem;
}

.delivery-feature h4 {
    color: var(--primary);
    margin-bottom: 4px;
    font-size: 1.02rem;
}

.delivery-feature p {
    color: var(--muted);
    margin: 0;
    font-size: .9rem;
}

.delivery-panel-image {
    min-height: 100%;
}

.delivery-panel-image img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    max-height: 470px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(6, 22, 79, .11);
}

.customer-card {
    min-height: 250px;
    padding: 28px;
}

.mini-list {
    padding-left: 0;
    list-style: none;
}

.mini-list li {
    margin-bottom: 10px;
}

.mini-list i {
    color: var(--secondary);
    margin-right: 8px;
}

.channel-logo {
    min-width: 130px;
    justify-content: center;
}

.growth-support-section {
    padding: 56px 0;
    background:
        linear-gradient(rgba(6, 22, 79, .88), rgba(6, 22, 79, .88)),
        url("../img/cargo-fulfillment-section.png") center/cover no-repeat;
}

.growth-support-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .85fr);
    gap: clamp(28px, 4vw, 54px);
    align-items: center;
    padding: clamp(24px, 3.2vw, 40px);
    background:
        radial-gradient(circle at 12% 14%, rgba(214, 17, 69, .13), transparent 26%),
        rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .22);
    backdrop-filter: blur(6px);
}

.growth-support-visual {
    text-align: center;
}

.growth-support-copy {
    margin-bottom: 14px;
    color: #ffffff;
}

.growth-support-copy h2 {
    color: #ffffff;
    font-size: clamp(1.7rem, 2.55vw, 2.35rem);
    line-height: 1.15;
    font-weight: 800 !important;
    margin-bottom: 8px;
}

.growth-support-copy p {
    max-width: 560px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .86);
    font-size: .98rem;
    line-height: 1.5;
}

.growth-support-visual img {
    width: min(100%, 470px);
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .18));
}

.growth-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    color: #ffffff;
    font-weight: 600;
}

.form-field input,
.form-field textarea {
    width: 100%;
    color: #ffffff;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 7px;
    padding: 11px 14px;
    outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, .72);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 .2rem rgba(214, 17, 69, .18);
}

.growth-submit {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 150px;
    margin-top: 4px;
}

.final-cta-section {
    padding: 72px 0;
    background:
        radial-gradient(circle at 14% 20%, rgba(214, 17, 69, .055), transparent 24%),
        radial-gradient(circle at 86% 10%, rgba(6, 22, 79, .06), transparent 26%),
        #ffffff;
}

.final-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
    padding: clamp(30px, 4vw, 48px);
    color: #ffffff;
    background:
        radial-gradient(circle at 8% 14%, rgba(214, 17, 69, .28), transparent 28%),
        linear-gradient(135deg, #06164f 0%, #07133c 68%, #111827 100%);
    border-radius: 20px;
    box-shadow: 0 24px 58px rgba(6, 22, 79, .16);
}

.final-cta-copy span {
    display: inline-block;
    margin-bottom: 10px;
    color: #ffb8ca;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-size: .86rem;
}

.final-cta-copy h2 {
    max-width: 720px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    line-height: 1.18;
    font-weight: 800 !important;
}

.final-cta-copy p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 1rem;
    line-height: 1.6;
}

.final-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.final-cta-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, .38);
    color: #ffffff;
}

.final-cta-actions .btn-outline-light:hover {
    color: var(--primary);
    background: #ffffff;
    border-color: #ffffff;
}

.footer {
    background:
        radial-gradient(circle at 12% 14%, rgba(214, 17, 69, .16), transparent 26%),
        linear-gradient(135deg, #06164f 0%, #07133c 68%, #0d1020 100%);
}

.footer-logo {
    display: block;
    width: auto;
    max-width: 300px;
    max-height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .25));
    transform: scale(2.25);
    transform-origin: left center;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    background: #ffffff;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .88);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #ffffff;
    letter-spacing: .5px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.footer .copyright a,
.footer .footer-menu a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .18);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .service-item {
        min-height: auto;
    }

    .navbar-light .navbar-brand h1 {
        font-size: 1.25rem;
    }

    .trucking-section {
        padding-top: 34px !important;
        padding-bottom: 34px !important;
    }

    .trucking-copy h2 {
        font-size: 2rem;
    }

    .trucking-point {
        grid-template-columns: 56px 1fr;
        gap: 16px;
    }

    .trucking-point-icon {
        width: 52px;
        height: 52px;
        font-size: 1.15rem;
    }

    .trucking-point:first-child .trucking-point-icon::after {
        height: 42px;
        top: 54px;
    }

    .trucking-visuals {
        grid-template-columns: 1fr;
    }

    .truck-photo-small,
    .truck-photo-tall {
        height: 260px;
        border-radius: 24px;
    }

    .trucking-cta {
        min-height: 48px;
        padding: 12px 20px;
        font-size: .88rem;
    }

    .cargo-help-copy h2 {
        font-size: 2rem;
    }

    .cargo-help-card {
        grid-template-columns: 44px 1fr 14px;
        gap: 14px;
        padding: 18px 16px;
    }

    .cargo-help-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .cargo-help-visual,
    .cargo-help-visual img {
        min-height: 280px;
    }

    .about-intro-visual,
    .about-story-visual,
    .about-team-visual,
    .about-intro-visual img,
    .about-story-visual img,
    .about-team-visual img {
        min-height: 280px;
        border-radius: 16px;
    }

    .about-stat-badge {
        right: 14px;
        bottom: 14px;
        width: 142px;
        padding: 14px 16px;
    }

    .about-stat-badge strong {
        font-size: 1.3rem;
    }

    .about-values-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card,
    .about-team-card {
        padding: 22px;
    }

    .founder-card,
    .about-growth-card {
        padding: 22px 16px;
        border-radius: 16px;
    }

    .founder-image {
        height: 260px;
    }

    .why-choose-item {
        padding: 22px 18px;
    }

    .why-choose-item i {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .about-growth-form .btn {
        width: 100%;
    }

    .contact-main-section {
        padding: 62px 0 48px;
        margin-bottom: 30px;
    }

    .contact-form-card {
        padding: 0;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-submit {
        width: 100%;
    }

    .contact-image-card img {
        width: min(100%, 300px);
    }

    .contact-image-card {
        min-height: 230px;
    }

    .contact-side-item {
        padding: 14px 16px;
        text-align: left;
    }

    .final-cta-section {
        padding: 48px 0;
    }

    .growth-support-section {
        padding: 48px 0;
    }

    .growth-support-card {
        border-radius: 18px;
        padding: 22px 16px;
    }

    .growth-form {
        grid-template-columns: 1fr;
    }

    .final-cta-card {
        border-radius: 16px;
    }

    .final-cta-actions {
        flex-direction: column;
    }

    .final-cta-actions .btn {
        width: 100%;
    }
}
/********** About Page Hero **********/
.about-hero {
    position: relative;
    overflow: hidden;
    background:
        url(../img/bg-dot.png),
        url(../img/bg-dot.png),
        url(../img/bg-round.png),
        url(../img/bg-tree.png),
        linear-gradient(135deg, #ffffff 0%, #f5f8ff 48%, #e9efff 100%);
    background-position:
        12px 18px,
        bottom 190px right 18px,
        left 57% top -2px,
        left 45% bottom -1px,
        center center;
    background-repeat: no-repeat;
    background-size:
        auto,
        auto,
        auto,
        auto,
        cover;
}

.about-hero::before {
    position: absolute;
    content: "";
    inset: 0;
    background:
        radial-gradient(circle at 78% 22%, rgba(19, 43, 131, .12), transparent 30%),
        radial-gradient(circle at 14% 24%, rgba(19, 43, 131, .08), transparent 30%),
        linear-gradient(105deg, rgba(255, 255, 255, .72) 0%, rgba(255, 255, 255, .3) 48%, rgba(255, 255, 255, .68) 100%);
}

.about-hero-rings {
    position: absolute;
    left: -180px;
    top: -200px;
    width: 430px;
    height: 430px;
    border: 30px solid rgba(6, 22, 79, .08);
    border-radius: 50%;
}

.about-hero-rings::before {
    content: "";
    position: absolute;
    inset: 60px;
    border: 30px solid rgba(6, 22, 79, .06);
    border-radius: 50%;
}

.about-hero-glow {
    position: absolute;
    left: -150px;
    bottom: -230px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(19, 43, 131, .16), transparent 65%);
}

.about-hero-dots {
    position: absolute;
    right: 36px;
    top: 56px;
    width: 260px;
    height: 198px;
    background-image: radial-gradient(rgba(6, 22, 79, .26) 2.4px, transparent 3px);
    background-size: 26px 26px;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.about-hero-copy {
    padding: 56px 0;
}

.about-hero-title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.12;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark) !important;
}

.about-hero-title span,
.about-hero-title em {
    display: block;
}

.about-hero-title em {
    font-style: normal;
    color: rgba(6, 22, 79, .3);
}

@supports (-webkit-text-stroke: 2px #06164f) {
    .about-hero-title em {
        color: transparent;
        -webkit-text-stroke: 2px rgba(6, 22, 79, .85);
    }
}

.about-hero-tagline {
    max-width: 590px;
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.about-hero-visual {
    position: relative;
    align-self: end;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: clamp(370px, 38vw, 500px);
}

.about-hero-circle {
    position: absolute;
    left: 50%;
    bottom: -72px;
    transform: translateX(-50%);
    width: min(430px, 72%);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 26%, rgba(6, 22, 79, .12), rgba(6, 22, 79, .04) 72%);
}

.about-hero-visual img {
    position: relative;
    z-index: 1;
    flex: none;
    height: 92%;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: bottom center;
}

@media (max-width: 991.98px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
    }

    .about-hero-copy {
        order: -1;
        padding: 44px 0 6px;
        text-align: center;
    }

    .about-hero-tagline {
        margin: 0 auto;
    }

    .about-hero-visual {
        height: min(58vw, 420px);
    }

    .about-hero-circle {
        width: min(330px, 60vw);
        bottom: -56px;
    }

    .about-hero-dots {
        display: none;
    }
}

/********** Services Page (Truxcargo-style) **********/
.services-hero {
    position: relative;
    overflow: hidden;
    padding: 46px 0 62px;
    background:
        url(../img/bg-dot.png),
        radial-gradient(circle at 10% 82%, rgba(6, 22, 79, .065), transparent 28%),
        radial-gradient(circle at 82% 22%, rgba(214, 17, 69, .075), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f8faff 52%, #edf3ff 100%);
    background-position:
        left 24px top 28px,
        center,
        center,
        center;
    background-repeat: no-repeat;
    background-size:
        auto,
        cover,
        cover,
        cover;
}

.services-hero::before {
    display: none;
}

.services-hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 236px;
    height: 126px;
    right: 5%;
    top: 64px;
    opacity: .38;
    background-image: radial-gradient(rgba(214, 17, 69, .38) 1.7px, transparent 1.7px);
    background-size: 18px 18px;
}

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

.services-hero .row {
    min-height: 485px;
}

.services-hero-copy h1 {
    color: var(--primary);
    font-size: clamp(2rem, 3.35vw, 3.15rem);
    line-height: 1.14;
    font-weight: 800 !important;
    margin-bottom: 18px;
}

.services-hero-copy h1 span {
    color: var(--secondary);
}

.services-hero-copy p {
    max-width: 540px;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.68;
    margin-bottom: 28px;
}

.services-hero-btn {
    padding: 13px 40px !important;
    border-radius: 8px !important;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 18px 36px rgba(214, 17, 69, .26);
}

.services-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 44px rgba(214, 17, 69, .34);
}

.services-hero-visual {
    position: relative;
    z-index: 1;
}

.services-hero-visual::before {
    content: none;
}

.services-hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 570px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 28px 36px rgba(6, 22, 79, .12));
    animation: services-hero-float 6s ease-in-out infinite;
}

@keyframes services-hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@media (max-width: 991.98px) {
    .services-hero {
        padding: 42px 0 58px;
        text-align: center;
    }

    .services-hero .row {
        min-height: auto;
    }

    .services-hero-copy h1 {
        font-size: clamp(1.85rem, 5vw, 2.45rem);
    }

    .services-hero-copy p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .services-hero::after {
        right: 24px;
        top: 40px;
    }

    .services-hero-visual {
        margin-top: 8px;
    }

    .services-hero-img {
        max-width: 440px;
    }
}

@media (max-width: 575.98px) {
    .services-hero {
        padding: 36px 0 48px;
        background-size:
            160px auto,
            cover,
            cover,
            cover;
    }

    .services-hero-img {
        max-width: 100%;
    }

    .services-hero-btn {
        padding: 12px 34px !important;
    }
}

.service-block-section {
    background: #ffffff;
}

.service-block-section.alt-bg {
    background: var(--light);
}

.service-block {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(30px, 5vw, 64px);
    align-items: center;
}

.service-block.reverse .service-visual {
    order: 2;
}

.service-block.reverse .service-copy {
    order: 1;
}

.service-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(310px, 30vw, 430px);
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.service-visual::after {
    content: none;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .45s ease;
}

.service-visual:hover img {
    transform: scale(1.04);
}

.service-visual-contain img {
    object-fit: contain;
    padding: 0;
    background: transparent;
    filter: drop-shadow(0 22px 32px rgba(6, 22, 79, .12));
}

.service-copy h2 {
    color: var(--primary);
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    line-height: 1.18;
    font-weight: 800 !important;
    margin-bottom: 14px;
}

.service-copy h2::first-letter {
    color: var(--secondary);
    font-size: 1.28em;
}

.service-copy > p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.key-features-title {
    color: var(--secondary);
    font-size: .95rem;
    font-weight: 800 !important;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.key-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 13px;
}

.key-features li {
    position: relative;
    padding-left: 30px;
    color: var(--muted);
    line-height: 1.6;
    font-size: .98rem;
}

.key-features li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f058";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary);
}

.key-features strong {
    display: block;
    margin-bottom: 2px;
    color: var(--primary);
    font-weight: 700;
}

.newsletter-band {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    margin-bottom: 42px;
    text-align: center;
    background:
        radial-gradient(circle at 12% 24%, rgba(214, 17, 69, .055), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(6, 22, 79, .065), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f8faff 54%, #edf3ff 100%);
}

.newsletter-card {
    max-width: 1040px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 46px);
    color: #ffffff;
    background:
        radial-gradient(circle at 14% 18%, rgba(214, 17, 69, .28), transparent 30%),
        radial-gradient(circle at 88% 20%, rgba(255, 255, 255, .1), transparent 28%),
        linear-gradient(135deg, #06164f 0%, #10266f 68%, #07133c 100%);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    box-shadow: 0 22px 52px rgba(6, 22, 79, .18);
}

.newsletter-band h2 {
    color: #ffffff;
    font-size: clamp(1.9rem, 2.8vw, 2.45rem);
    font-weight: 800 !important;
    margin-bottom: 8px;
}

.newsletter-band p {
    color: rgba(255, 255, 255, .82);
    margin-bottom: 26px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 560px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    padding: 13px 18px;
    color: #ffffff;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 8px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .68);
}

.newsletter-form input:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 .2rem rgba(214, 17, 69, .22);
}

@media (max-width: 991.98px) {
    .service-block {
        grid-template-columns: 1fr;
    }

    .service-block.reverse .service-visual {
        order: -1;
    }

    .service-block.reverse .service-copy {
        order: 0;
    }

    .service-visual {
        height: 320px;
    }
}

@media (max-width: 575.98px) {
    .newsletter-band {
        padding: 48px 0;
        margin-bottom: 28px;
    }

    .newsletter-card {
        padding: 24px 18px;
        border-radius: 14px;
    }

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