:root {
    --surface: #ffffff;
    --surface-soft: #f7f8fb;
    --text: #162033;
    --muted: #697586;
    --line: rgba(22, 32, 51, 0.1);
    --primary: #f4511e;
    --primary-dark: #d84315;
    --secondary: #0d4b8f;
    --soft: #fff1eb;
    --bg-top: #f8fafc;
    --bg-bottom: #eef4f7;
    --shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
    --section-space: 80px;
    --transition: all 0.25s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    /* background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%); */
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

p {
    margin: 0;
    color: var(--muted);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin: 0;
    color: var(--text);
    font-weight: 700;
    line-height: 1.15;
}

.section_space {
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
}

.section_text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
}

.common_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.8rem 1.6rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.common_btn--primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.common_btn--primary:hover,
.common_btn--primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #ffffff;
}

.common_btn--block {
    width: 100%;
}

.site-header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.navbar-brand {
    text-decoration: none;
}

.navbar-brand img {
    width: 200px;
}

.navbar .nav-link {
    color: var(--muted);
    font-weight: 500;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--primary-dark);
    background-color: var(--soft);
}

.menu-toggle {
    padding: 0.35rem 0.5rem;
    border-radius: 12px;
    background: #ffffff;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2820, 33, 61, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    position: relative;
}

.hero-scene {
    position: relative;
    min-height: 680px;
    background-image: url('../images/hero-truck.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 24, 40, 0.28) 0%, rgba(16, 24, 40, 0.12) 42%, rgba(255, 255, 255, 0.08) 100%);
}

.hero-row {
    min-height: 680px;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 520px;
}

.hero-kicker {
    display: inline-block;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(244, 81, 30, 1);
    border-radius: 999px;
    background: rgba(244, 81, 30, 0.9);
    backdrop-filter: blur(6px);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.hero-title {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: clamp(2.1rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    color: #ffffff;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.hero-text {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    line-height: 1.7;
}

.booking-card {
    position: relative;
    z-index: 1;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid var(--primary);
    border-radius: 6px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.booking-card-head {
    padding: 0.95rem 1.2rem;
    background: var(--primary);
    color: #ffffff;
}

.booking-card-title {
    font-size: 1.08rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}

.booking-card-body {
    padding: 1.3rem 1.25rem 1.4rem;
}

.booking-card .form-control,
.booking-card .form-select {
    min-height: 46px;
    border-color: #d8dee6;
    border-radius: 0.3rem;
    font-size: 0.95rem;
}

.booking-card .form-control::placeholder {
    color: #8a94a6;
}

.booking-card .form-control:focus,
.booking-card .form-select:focus {
    border-color: rgba(13, 75, 143, 0.35);
    box-shadow: 0 0 0 0.2rem rgba(13, 75, 143, 0.12);
}

.booking-card .form-check-label {
    font-weight: 500;
}

.phone-group .phone-code {
    max-width: 90px;
    flex: 0 0 90px;
}

.load-form {
    display: none;
}

.load-form.is-active {
    display: block;
}

.js-validate.is-invalid,
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
    background-image: none;
}

.invalid-feedback {
    display: none;
    font-size: 0.82rem;
}

.js-validate.is-invalid + .invalid-feedback,
.phone-group .is-invalid ~ .invalid-feedback {
    display: block;
}

.stats-section {
    background: #ffffff;
}

.stats_card {
    display: flex;
    align-items: stretch;
    min-height: 92px;
    background: #ffffff;
    border: 1px solid #cfd5de;
    overflow: hidden;
    border-radius: 6px;
}

.stats_icon_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    min-width: 104px;
    background: var(--secondary);
    color: #ffffff;
}

.stats_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.35rem;
    line-height: 1;
}

.stats_content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    text-align: center;
}

.stats_value {
    font-size: 2.05rem;
    font-weight: 500;
    line-height: 1;
    color: var(--primary);
}

.stats_label {
    margin-top: 6px;
    font-size: 0.9rem;
    line-height: 1.2;
    color: var(--text);
}

.about-news-section {
    background: #ffffff;
}

.about-news-card {
    position: relative;
}

.section-heading-wrap {
    margin-bottom: 24px;
}

.section-heading-wrap--between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.about-news-title {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 600;
    color: var(--secondary);
}

.about-news-title span {
    color: var(--primary);
}

.about-copy + .about-copy {
    margin-top: 14px;
}

.about-btn {
    margin-top: 26px;
}

.news-slider-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.news-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(244, 81, 30, 0.2);
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary);
    transition: var(--transition);
}

.news-nav-btn:hover,
.news-nav-btn:focus {
    background: var(--soft);
    border-color: rgba(244, 81, 30, 0.35);
}

.news-nav-btn i {
    font-size: 1.1rem;
}

.news-swiper {
    padding-right: 4px;
}

.news-item-title {
    font-size: 1.85rem;
    font-weight: 500;
    line-height: 1.25;
    color: #2b2f38;
}

.news-item-text {
    margin-top: 18px;
    max-width: 92%;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
}

.footer-logo img {
    width: 200px;
}




.why-choose-section {
    background: #ffffff;
}

.why-choose-subtitle {
    margin-top: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #1f2937;
}

.comparison-table-wrap {
    overflow: hidden;
    border: 1px solid #d9dee8;
    border-radius: 18px;
    background: #f6f7fb;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.comparison-table {
    --bs-table-bg: transparent;
    --bs-table-border-color: #d9dee8;
    margin-bottom: 0;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-color: #d9dee8;
    vertical-align: middle;
}

.comparison-table thead th {
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    background: #f3f5fa;
    color: #111827;
}

.comparison-head-feature {
    width: 56%;
    text-align: left;
}

.comparison-head-brand {
    color: var(--secondary) !important;
}

.comparison-head-other {
    color: #111827 !important;
}

.comparison-table tbody td:first-child {
    font-size: 0.98rem;
    font-weight: 600;
    color: #111827;
    background: rgba(243, 245, 250, 0.8);
}

.comparison-table tbody td:not(:first-child) {
    width: 22%;
    text-align: center;
    background: rgba(255, 255, 255, 0.88);
}

.comparison-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    font-size: 0.85rem;
}

.comparison-mark--yes {
    background: #2f9e44;
    color: #ffffff;
}

.comparison-mark--no {
    background: #111111;
    color: #ffffff;
}



.site-footer {
    margin-top: 0;
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.footer-main {
    background: #ffffff;
}

.footer-brand-box,
.footer-widget {
    height: 100%;
}

.footer-brand-mark {
    width: 54px;
    height: 54px;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-brand-text strong {
    font-size: 1.2rem;
    color: var(--text);
}

.footer-brand-text small {
    margin-top: 4px;
    font-size: 0.82rem;
    color: var(--muted);
}

.footer-about {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--muted);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #d9dee8;
    border-radius: 10px;
    background: #ffffff;
    color: var(--secondary);
}

.footer-social-link:hover,
.footer-social-link:focus {
    border-color: rgba(244, 81, 30, 0.35);
    background: var(--soft);
    color: var(--primary);
}

.footer-widget-title {
    margin-bottom: 18px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
}

.footer-links li + li,
.footer-contact li + li {
    margin-top: 12px;
}

.footer-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.97rem;
}

.footer-links a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.72rem;
    color: var(--primary);
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--primary-dark);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
    font-size: 0.97rem;
}

.footer-contact i {
    margin-top: 4px;
    color: var(--primary);
}

.footer-contact a:hover,
.footer-contact a:focus {
    color: var(--primary-dark);
}

.footer-copyright {
    background: var(--secondary);
}

.footer-copyright-text {
    color: #ffffff;
    font-size: 0.92rem;
}

.footer-copyright-text a {
    color: #ffffff;
    text-decoration: underline;
}


.about-hero {
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(244, 81, 30, 0.12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(13, 75, 143, 0.12), transparent 38%);
    pointer-events: none;
}

.about-page-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(13, 75, 143, 0.08);
    color: var(--secondary);
    font-size: 0.92rem;
    font-weight: 600;
}

.about-page-title {
    margin-top: 1rem;
    font-size: clamp(2.3rem, 4vw, 4.1rem);
    line-height: 1.05;
    max-width: 12ch;
}

.about-page-text {
    max-width: 56ch;
    margin-top: 1.25rem;
}

.about-page-btn-secondary {
    border-color: rgba(13, 75, 143, 0.18);
    background: #ffffff;
    color: var(--secondary);
}

.about-page-btn-secondary:hover,
.about-page-btn-secondary:focus {
    border-color: rgba(13, 75, 143, 0.35);
    background: rgba(13, 75, 143, 0.06);
    color: var(--secondary);
}

.about-hero-panel {
    position: relative;
}

.about-hero-card {
    border: 1px solid rgba(22, 32, 51, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.about-hero-card--primary {
    padding: 2rem;
    background: linear-gradient(135deg, #0d4b8f 0%, #163762 100%);
    color: #ffffff;
}

.about-hero-card--primary h2,
.about-hero-card--primary p {
    color: #ffffff;
}

.about-hero-card--mini {
    padding: 1.4rem;
}

.about-hero-card--mini h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.about-hero-card--mini p,
.about-hero-card--primary p {
    margin-top: 0.75rem;
    line-height: 1.7;
}

.about-hero-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 1.35rem;
}

.about-hero-card--mini .about-hero-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    background: var(--soft);
    color: var(--primary);
}

.about-story-visual {
    position: relative;
    padding: 1.5rem;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
    border: 1px solid rgba(22, 32, 51, 0.08);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.about-story-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.about-story-badge span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--primary);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
}

.about-story-badge p {
    color: var(--text);
    font-weight: 600;
}

.about-story-tile {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.9rem;
    min-height: 145px;
    padding: 1.3rem;
    border-radius: 22px;
    border: 1px solid rgba(22, 32, 51, 0.08);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.about-story-tile i {
    font-size: 1.85rem;
    color: var(--secondary);
}

.about-story-tile strong {
    font-size: 1rem;
    color: var(--text);
}

.about-story-tile--solid {
    background: linear-gradient(135deg, #fff1eb 0%, #ffe2d6 100%);
}

.about-story-tile--accent {
    background: linear-gradient(135deg, #eaf3ff 0%, #dbeafe 100%);
}

.about-story-copy + .about-story-copy {
    margin-top: 1rem;
}

.about-point {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(22, 32, 51, 0.08);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.about-point-icon,
.about-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--soft);
    color: var(--primary);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.about-point h3,
.about-value-card h3 {
    font-size: 1.12rem;
    margin-bottom: 0.45rem;
}

.about-point p,
.about-value-card p {
    font-size: 0.96rem;
    line-height: 1.7;
}

.about-values {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.92) 18%, rgba(255, 255, 255, 1) 100%);
}

.about-value-card {
    padding: 1.5rem;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(22, 32, 51, 0.08);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}

.about-value-icon {
    margin-bottom: 1rem;
}

.about-purpose-wrap {
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, #0f172a 0%, #153b69 100%);
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.15);
}

.about-purpose-wrap .about-news-title,
.about-purpose-wrap .section_text,
.about-purpose-quote p,
.about-purpose-quote i {
    color: #ffffff;
}

.about-purpose-wrap .about-news-title span {
    color: #ffd3c2;
}

.about-purpose-quote {
    height: 100%;
    padding: 1.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
}

.about-purpose-quote i {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 2rem;
}

.about-purpose-quote p {
    font-size: 1.1rem;
    line-height: 1.6;
}



.inner-page {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.76) 20%, rgba(255, 255, 255, 1) 100%);
}

.inner-page-hero {
    max-width: 760px;
    margin: 0 auto;
}

.inner-page-text {
    margin-top: 1rem;
}

.inner-page-card {
    padding: 2rem;
    border: 1px solid rgba(22, 32, 51, 0.08);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.07);
}

.inner-page-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.9rem;
}


.services-hero {
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(244, 81, 30, 0.12), transparent 30%),
        radial-gradient(circle at bottom left, rgba(13, 75, 143, 0.12), transparent 34%);
    pointer-events: none;
}

.services-page-title {
    margin-top: 1rem;
    font-size: clamp(2.25rem, 4vw, 4rem);
    line-height: 1.05;
    max-width: 12ch;
}

.services-hero-text {
    max-width: 58ch;
    margin-top: 1.25rem;
}

.services-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(22, 32, 51, 0.08);
    color: var(--secondary);
    font-size: 0.92rem;
    font-weight: 600;
}

.services-menu-card {
    overflow: hidden;
    border: 1px solid rgba(22, 32, 51, 0.1);
    border-radius: 20px;
    background: #0d4b8f;
    box-shadow: 0 20px 38px rgba(15, 23, 42, 0.12);
}

.services-menu-block {
    height: 100%;
    padding: 1.4rem;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: #0d4b8f;
    color: #ffffff;
}

.services-menu-block--accent {
    background: linear-gradient(135deg, #3e9ee0 0%, #2f86ca 100%);
}

.services-menu-block--soft {
    background: linear-gradient(135deg, #17579c 0%, #0d4b8f 100%);
}

.services-menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1.15rem;
}

.services-menu-block h2 {
    margin-top: 1rem;
    font-size: 1.35rem;
    color: #ffffff;
}

.services-menu-block p {
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.7;
}

.service-detail-card {
    padding: 1.8rem;
    border: 1px solid rgba(22, 32, 51, 0.08);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.07);
}

.service-detail-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(244, 81, 30, 0.12);
    color: var(--primary-dark);
    font-size: 0.84rem;
    font-weight: 600;
}

.service-detail-badge--blue {
    background: rgba(13, 75, 143, 0.1);
    color: var(--secondary);
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 68px;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: #f7f9fc;
    border: 1px solid rgba(22, 32, 51, 0.06);
}

.service-list-item i {
    font-size: 1.25rem;
    color: var(--primary);
}

.service-list-item span {
    color: var(--text);
    font-weight: 500;
    line-height: 1.45;
}

.service-type-card {
    height: 100%;
    padding: 1.8rem;
    border-radius: 28px;
    border: 1px solid rgba(22, 32, 51, 0.08);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.07);
}

.service-type-card--full {
    background: linear-gradient(180deg, #ffffff 0%, #fff4ef 100%);
}

.service-type-card--part {
    background: linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
}

.service-type-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #ffffff;
    color: var(--secondary);
    font-size: 1.4rem;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.service-type-card h3 {
    margin-top: 1.2rem;
    font-size: 1.55rem;
}

.service-type-card h3 span {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.service-type-card p {
    margin-top: 1rem;
    line-height: 1.75;
}

.service-type-points {
    margin-top: 1.2rem;
}

.service-type-points li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--text);
    font-weight: 500;
}

.service-type-points li + li {
    margin-top: 0.8rem;
}

.service-type-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary);
}


.services-action-btn {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-shadow: none;
}

.services-action-btn:hover,
.services-action-btn:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.booking-card--page {
    max-width: 100%;
}

.load-create-page {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 18%, rgba(255, 255, 255, 1) 100%);
}

.load-copy-block {
    display: none;
}

.load-copy-block.is-active {
    display: block;
}

.truck-post-page {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 18%, rgba(255, 255, 255, 1) 100%);
}

.js-truck-group-feedback {
    display: none;
    margin-top: 0.45rem;
    font-size: 0.82rem;
    color: #dc3545;
}

.truck-submit-btn {
    min-width: 132px;
}




.truck-form-card.booking-card {
    max-width: 100%;
}

.truck-form-card-head {
    background: var(--primary);
    color: #ffffff;
}

.truck-form-card-body {
    padding: 1.3rem 1.25rem 1.4rem;
}


.contact-page {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.84) 18%, rgba(255, 255, 255, 1) 100%);
}

.contact-form-wrap.booking-card {
    max-width: 100%;
    border-radius: 0;
    border-right: 0;
    box-shadow: none;
}

.contact-form-shell {
    padding: 1.8rem;
    background: #ffffff;
}

.contact-section-title,
.contact-info-title {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-section-title {
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(244, 81, 30, 0.35);
    color: var(--secondary);
}

.contact-info-panel {
    height: 100%;
    padding: 1.8rem;
    background: linear-gradient(180deg, #ff8a1a 0%, #f5780f 100%);
    color: #ffffff;
    border-radius: 6px;
}

.contact-info-title {
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
    background: #f3f4f6;
}

.contact-message-field {
    min-height: 160px;
    resize: vertical;
}

.contact-submit-btn {
    min-width: 168px;
}

.contact-info-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
}

.contact-info-box ul, .contact-highlight-card ul {
    margin-bottom: 0;
}

.contact-info-box-icon,
.contact-highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: #0b2942;
    color: #ffffff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-box h3,
.contact-highlight-card h2 {
    font-size: 1.15rem;
    margin-bottom: 0.45rem;
}

.contact-info-box p,
.contact-highlight-card p {
    color: var(--muted);
    line-height: 1.75;
}

.contact-highlights {
    background: #ffffff;
}

.contact-highlight-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.2rem;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(22, 32, 51, 0.08);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
}

.contact-highlight-icon {
    position: relative;
    background: linear-gradient(180deg, #ff7d12 0%, #f26d09 100%);
    box-shadow: 10px -8px 0 rgba(244, 81, 30, 0.2);
}

