:root {
    --primary-red: #e53935;
    --dark-maroon: #3a1717;
    --dark-ink: #111827;
    --text-gray: #6b7280;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --line: #eceff3;
    --accent-orange: #f59e0b;
    --shadow-soft: 0 14px 34px rgba(17, 24, 39, 0.08);
    --shadow-card: 0 18px 42px rgba(17, 24, 39, 0.1);
    --font-heading: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

body {
    background: var(--white);
    color: var(--dark-ink);
    font-family: var(--font-body);
    line-height: 1.6;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
h4 {
    color: var(--dark-ink);
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.08;
}

p {
    color: var(--text-gray);
    margin-bottom: 0;
}

.site-frame {
    background: var(--white);
    box-shadow: none;
    margin: 0;
    max-width: none;
    min-height: 100vh;
    overflow: hidden;
    width: 100%;
}

.container {
    max-width: 1180px;
}

.section {
    padding: 86px 0;
}

.section-kicker {
    color: var(--primary-red);
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    align-items: end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 34px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 720px;
}

.section-title--center {
    display: block;
    margin-inline: auto;
    max-width: 760px;
    text-align: center;
}

.btn {
    align-items: center;
    border-radius: var(--radius);
    display: inline-flex;
    font-family: var(--font-heading);
    font-weight: 900;
    gap: 9px;
    justify-content: center;
    min-height: 44px;
    padding: 0.76rem 1.15rem;
}

.btn-lg {
    min-height: 52px;
    padding-inline: 1.35rem;
}

.btn-primary {
    --bs-btn-bg: var(--primary-red);
    --bs-btn-border-color: var(--primary-red);
    --bs-btn-hover-bg: #c92f2b;
    --bs-btn-hover-border-color: #c92f2b;
    --bs-btn-active-bg: #b52925;
    --bs-btn-active-border-color: #b52925;
    box-shadow: 0 16px 28px rgba(229, 57, 53, 0.22);
}

.btn-outline-dark {
    --bs-btn-color: var(--dark-maroon);
    --bs-btn-border-color: #e6dede;
    --bs-btn-hover-bg: var(--dark-maroon);
    --bs-btn-hover-border-color: var(--dark-maroon);
}

.btn-maroon {
    background: var(--dark-maroon);
    color: var(--white);
}

.btn-maroon:hover {
    background: #241010;
    color: var(--white);
    transform: translateY(-1px);
}

.site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: var(--shadow-soft);
}

.navbar {
    min-height: 90px;
    padding: 0;
}

.navbar-brand img {
    height: auto;
    max-width: 220px;
}

.navbar-nav {
    gap: 18px;
}

.nav-link {
    color: #27202a;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 4px !important;
    position: relative;
}

.nav-link::after {
    background: var(--dark-maroon);
    bottom: 2px;
    content: "";
    height: 2px;
    left: 4px;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
    width: calc(100% - 8px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--dark-maroon);
}

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

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.hero-section {
    background: linear-gradient(180deg, var(--white) 0%, #fffafa 100%);
    overflow: hidden;
    padding: 78px 0 42px;
}

.hero-copy h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 5.6vw, 4.3rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    max-width: 650px;
}

.hero-copy h1 span {
    color: var(--primary-red);
}

.hero-copy p {
    font-size: 1rem;
    margin-top: 22px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-stats {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, auto);
    margin-top: 30px;
}

.hero-stats strong {
    color: var(--dark-maroon);
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.hero-stats span {
    color: var(--text-gray);
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 4px;
}

.hero-media {
    position: relative;
}

.hero-media::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 82%);
    bottom: -1px;
    content: "";
    height: 120px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
}

.hero-media img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    height: 430px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.booking-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    margin: 44px auto 0;
    max-width: 1120px;
    overflow: hidden;
}

.booking-tabs {
    display: flex;
    flex-wrap: wrap;
}

.booking-tab {
    background: transparent;
    border: 0;
    color: var(--text-gray);
    flex: 1 1 180px;
    font-family: var(--font-heading);
    font-weight: 700;
    min-height: 54px;
    padding: 0 24px;
    text-align: center;
    white-space: nowrap;
}

.booking-tab.active {
    background: var(--dark-maroon);
    color: var(--white);
}

.booking-panel .alert {
    margin: 16px 18px 0;
}

.booking-form {
    align-items: stretch;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(145px, 0.9fr) minmax(205px, 1.15fr) minmax(280px, 1.45fr) minmax(185px, 1fr) minmax(165px, auto);
    padding: 18px;
}

.booking-field-group {
    min-width: 0;
    width: 100%;
}

.booking-field {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    gap: 10px;
    min-width: 0;
    overflow: hidden;
    padding: 0 12px;
    width: 100%;
}

.booking-field i {
    color: var(--text-gray);
    flex: 0 0 auto;
}

.booking-field .form-control {
    background: transparent;
    border: 0;
    box-shadow: none;
    min-height: 42px;
    min-width: 0;
    overflow: hidden;
    padding-inline: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.booking-field:focus-within {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(229, 57, 53, 0.12);
}

.booking-field-group .invalid-feedback {
    font-size: 0.78rem;
    margin: 6px 2px 0;
}

.booking-form .btn {
    min-height: 46px;
    padding-inline: 18px;
    white-space: nowrap;
}

.feature-strip {
    background: var(--white);
    padding: 34px 0 22px;
}

.feature-strip__grid {
    align-items: center;
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.feature-strip__grid div {
    align-items: center;
    color: var(--dark-maroon);
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 700;
    gap: 8px;
    min-height: 76px;
    text-align: center;
}

.feature-strip__grid i {
    color: var(--primary-red);
    font-size: 1.35rem;
}

.services-section,
.tips-section,
.values-section,
.contact-section,
.city-routes-section--light {
    background: var(--light-bg);
}

.service-card,
.tip-card,
.value-card,
.contact-card,
.form-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
    height: 100%;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.tip-card:hover,
.value-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-5px);
}

.service-card__media img,
.tip-card > img {
    aspect-ratio: 16 / 10;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.service-card__body,
.tip-card__body {
    padding: 24px;
}

.service-card h3,
.service-card h2,
.tip-card h3 {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 10px;
}

.service-card p,
.tip-card p {
    font-size: 0.92rem;
}

.service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.service-badges span {
    align-items: center;
    background: #f7f4f4;
    border-radius: 6px;
    color: #4b3333;
    display: inline-flex;
    font-size: 0.74rem;
    font-weight: 800;
    gap: 6px;
    padding: 7px 9px;
}

.service-badges i {
    color: var(--primary-red);
}

.service-card__footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
}

.service-card__footer strong {
    color: var(--dark-ink);
    font-family: var(--font-body);
    font-weight: 700;
}

.service-points {
    list-style: none;
    margin: 18px 0 22px;
    padding: 0;
}

.service-points li {
    align-items: center;
    color: #4b5563;
    display: flex;
    font-size: 0.88rem;
    font-weight: 700;
    gap: 9px;
    margin-top: 8px;
}

.service-points i,
.mini-list i,
.area-grid i {
    color: var(--primary-red);
}


.city-routes-section {
    background: linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
}

.city-routes-section .section-title > p {
    max-width: 430px;
}

.city-route-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.city-route-card {
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 132px;
    padding: 20px;
}

.city-route-card i {
    color: var(--primary-red);
    font-size: 1.3rem;
}

.city-route-card span {
    color: var(--dark-ink);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
}

.city-route-card small {
    color: var(--text-gray);
    font-weight: 800;
}

.city-route-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.about-preview {
    background: var(--white);
}

.about-preview .btn {
    margin-top: 26px;
}

.photo-mosaic {
    display: grid;
    gap: 16px;
    grid-template-columns: 1.1fr 0.9fr;
}

.photo-mosaic img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    height: 210px;
    object-fit: cover;
    width: 100%;
}

.photo-mosaic img:first-child {
    grid-row: span 2;
    height: 436px;
}

.tip-card__meta {
    align-items: center;
    color: var(--text-gray);
    display: flex;
    font-size: 0.78rem;
    justify-content: space-between;
    margin: 18px 0;
}

.tip-card__meta i {
    color: var(--accent-orange);
}

.emergency-cta {
    background: var(--white);
    padding: 0 0 0;
}

.emergency-cta__panel {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(58, 23, 23, 0.72)),
        url("../images/364499.jpg") center/cover;
    color: var(--white);
    display: flex;
    gap: 32px;
    justify-content: space-between;
    min-height: 310px;
    padding: 56px;
}

.emergency-cta h2,
.emergency-cta p {
    color: var(--white);
}

.emergency-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.025em;
}

.emergency-cta p {
    color: rgba(255, 255, 255, 0.76);
    max-width: 580px;
}

.emergency-cta__actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 12px;
}

.page-hero {
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.86), rgba(58, 23, 23, 0.58)),
        url("../images/364479.jpg") center/cover;
    min-height: 360px;
    padding: 92px 0;
}

.page-hero--about {
    background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.86), rgba(58, 23, 23, 0.58)), url("../images/364491.jpg");
}

.page-hero--services {
    background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.86), rgba(58, 23, 23, 0.58)), url("../images/364487.jpg");
}

.page-hero--contact {
    background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.86), rgba(58, 23, 23, 0.58)), url("../images/364499.jpg");
}

.page-hero .section-kicker,
.emergency-cta .section-kicker {
    color: #ffb4b4;
}

.page-hero h1,
.page-hero p {
    color: var(--white);
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    max-width: 820px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    margin-top: 18px;
    max-width: 700px;
}

.image-panel {
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.image-panel img {
    height: 470px;
    object-fit: cover;
    width: 100%;
}

.mini-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.mini-list span {
    align-items: center;
    color: #394150;
    display: flex;
    font-weight: 800;
    gap: 10px;
}

.value-card {
    padding: 28px;
}

.value-card i {
    align-items: center;
    background: #fff0f0;
    border-radius: var(--radius);
    color: var(--primary-red);
    display: inline-flex;
    font-size: 1.3rem;
    height: 52px;
    justify-content: center;
    margin-bottom: 20px;
    width: 52px;
}

.value-card h3 {
    font-size: 1.1rem;
}

.process-section {
    background: var(--white);
}

.process-list {
    display: grid;
    gap: 16px;
}

.process-list div {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
    padding: 24px;
}

.process-list span {
    color: var(--primary-red);
    font-weight: 900;
}

.process-list h3 {
    font-size: 1.12rem;
    margin: 8px 0;
}

.area-section {
    background: var(--dark-ink);
}

.area-section h2,
.area-section p {
    color: var(--white);
}

.area-section p {
    color: rgba(255, 255, 255, 0.7);
}

.area-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
}

.area-grid span {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--white);
    display: flex;
    font-weight: 800;
    gap: 9px;
    padding: 14px 16px;
}

.contact-card {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    padding: 24px;
}

.contact-card i {
    color: var(--primary-red);
    font-size: 1.45rem;
}

.contact-card span {
    color: var(--text-gray);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
    color: var(--dark-ink);
    font-size: 1.05rem;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.form-panel {
    padding: 34px;
}

.form-panel__header {
    margin-bottom: 26px;
}

.form-panel__header h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
}


.form-control,
.form-select {
    border-color: #d8e0e8;
    border-radius: var(--radius);
    font-family: var(--font-body);
    min-height: 50px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(229, 57, 53, 0.15);
}

.booking-form .btn.is-loading {
    opacity: 0.78;
    pointer-events: none;
}

textarea.form-control {
    min-height: 140px;
}

.site-footer {
    background: var(--white);
    padding: 56px 0 30px;
}

.footer-logo img {
    margin-bottom: 18px;
}

.footer-text {
    max-width: 360px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-socials a {
    align-items: center;
    background: var(--light-bg);
    border-radius: 50%;
    color: var(--dark-maroon);
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.site-footer h3 {
    color: var(--dark-ink);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.site-footer a:hover {
    color: var(--primary-red);
}

.footer-contact li {
    align-items: flex-start;
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-red);
    margin-top: 5px;
}

.footer-bottom {
    align-items: center;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 42px;
    padding-top: 22px;
}

.footer-bottom p {
    font-size: 0.88rem;
}

.mobile-quick-actions {
    background: var(--white);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 1050;
}

.mobile-quick-actions a {
    align-items: center;
    color: var(--dark-maroon);
    display: flex;
    font-family: var(--font-heading);
    font-weight: 900;
    gap: 8px;
    justify-content: center;
    min-height: 58px;
}

.mobile-quick-actions a:first-child {
    background: var(--primary-red);
    color: var(--white);
}

@media (max-width: 1199.98px) {
    .site-frame {
        margin: 0;
    }

    .booking-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-form .btn {
        grid-column: span 2;
    }

    .city-route-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 58px;
    }

    .navbar {
        min-height: 76px;
    }

    .navbar-collapse {
        background: var(--white);
        border-top: 1px solid var(--line);
        padding: 14px 0 20px;
    }

    .header-actions {
        align-items: stretch;
        display: flex;
        margin-top: 12px;
    }

    .hero-section {
        padding-top: 56px;
    }

    .hero-media img {
        height: 380px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-mosaic,
    .area-grid,
    .city-route-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .emergency-cta__panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 62px 0;
    }

    .section-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .booking-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .booking-tab {
        padding: 0 12px;
    }

    .booking-form,
    .photo-mosaic,
    .area-grid,
    .city-route-grid {
        grid-template-columns: 1fr;
    }

    .booking-form .btn {
        grid-column: auto;
    }



    .photo-mosaic img,
    .photo-mosaic img:first-child,
    .image-panel img {
        height: 300px;
    }

    .hero-media img {
        height: 320px;
    }

    .emergency-cta__panel,
    .form-panel {
        padding: 28px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        max-width: 188px;
    }

    .hero-actions,
    .emergency-cta__actions {
        width: 100%;
    }

    .hero-actions .btn,
    .emergency-cta__actions .btn {
        width: 100%;
    }

    .booking-tabs {
        grid-template-columns: 1fr;
    }

    .feature-strip__grid {
        grid-template-columns: 1fr;
    }
}

/* Contact page refresh: form removed, direct call/WhatsApp focused UI */
.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.contact-action-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 36px;
}

.contact-action-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
    color: var(--dark-ink);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 210px;
    overflow: hidden;
    padding: 26px;
    position: relative;
}

.contact-action-card::after {
    background: linear-gradient(90deg, var(--primary-red), var(--dark-maroon));
    bottom: 0;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    width: 100%;
}

.contact-action-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.contact-action-card i {
    align-items: center;
    background: #fff0f0;
    border-radius: var(--radius);
    color: var(--primary-red);
    display: inline-flex;
    font-size: 1.35rem;
    height: 54px;
    justify-content: center;
    margin-bottom: 8px;
    width: 54px;
}

.contact-action-card span {
    color: var(--text-gray);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-action-card strong {
    color: var(--dark-ink);
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    overflow-wrap: anywhere;
}

.contact-action-card small {
    color: var(--text-gray);
    font-weight: 700;
    line-height: 1.55;
}

.contact-action-card--primary {
    background: linear-gradient(135deg, var(--dark-maroon), #5c2020);
    border-color: transparent;
    color: var(--white);
}

.contact-action-card--primary i {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.contact-action-card--primary span,
.contact-action-card--primary strong,
.contact-action-card--primary small {
    color: var(--white);
}

.contact-info-panel,
.contact-route-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
    height: 100%;
    padding: 34px;
}

.contact-info-panel h3 {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    margin-bottom: 24px;
}

.contact-location-box {
    align-items: center;
    background: var(--light-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 18px;
}

.contact-location-box > i {
    align-items: center;
    background: var(--primary-red);
    border-radius: var(--radius);
    color: var(--white);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 1.15rem;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.contact-location-box span {
    color: var(--text-gray);
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-location-box strong {
    color: var(--dark-ink);
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.contact-checklist {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
}

.contact-checklist li {
    align-items: center;
    color: #394150;
    display: flex;
    font-weight: 800;
    gap: 10px;
}

.contact-checklist i {
    color: var(--primary-red);
}

.contact-info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-route-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-route-chip {
    align-items: center;
    background: var(--light-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--dark-ink);
    display: flex;
    font-family: var(--font-heading);
    font-weight: 900;
    gap: 10px;
    min-height: 58px;
    padding: 14px 16px;
}

.contact-route-chip i {
    color: var(--primary-red);
}

.contact-note-box {
    align-items: flex-start;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: var(--radius);
    display: flex;
    gap: 12px;
    margin-top: 22px;
    padding: 18px;
}

.contact-note-box i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-note-box p {
    color: #60420d;
    font-weight: 700;
}

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

    .contact-action-card {
        min-height: auto;
    }

    .contact-info-panel,
    .contact-route-panel {
        padding: 26px;
    }
}

@media (max-width: 575.98px) {
    .contact-hero-actions,
    .contact-info-actions {
        flex-direction: column;
    }

    .contact-hero-actions .btn,
    .contact-info-actions .btn {
        width: 100%;
    }

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