/* =========================================================
   AMSW LOGISTICS
   PREMIUM FRONTEND STYLES
========================================================= */

:root {
    --navy: #071a33;
    --navy-2: #0b2343;
    --blue: #1267d9;
    --blue-light: #2785f5;
    --blue-soft: #eaf3ff;
    --black: #05080d;
    --dark: #0b111b;
    --gray-900: #18202c;
    --gray-700: #4d5969;
    --gray-500: #778293;
    --gray-300: #d9e0e8;
    --gray-100: #f4f7fa;
    --white: #ffffff;

    --container: 1240px;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 8px 25px rgba(6, 24, 50, 0.07);
    --shadow-md: 0 20px 60px rgba(6, 24, 50, 0.12);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.22);

    --transition: 0.3s cubic-bezier(.2,.7,.2,1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

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

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {
    font-family: "Manrope", sans-serif;
    line-height: 1.08;
}

h1 {
    font-size: clamp(3.2rem, 6vw, 6rem);
    letter-spacing: -0.055em;
}

h2 {
    font-size: clamp(2.3rem, 4vw, 4rem);
    letter-spacing: -0.045em;
}

h3 {
    font-size: 1.3rem;
}

p {
    color: var(--gray-700);
}

em {
    color: var(--blue-light);
    font-style: normal;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(5, 15, 29, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(4, 13, 25, 0.98);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.topbar {
    height: 34px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    font-size: 11px;
    letter-spacing: .04em;
}

.topbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar a {
    color: #fff;
    font-weight: 700;
}

.navbar {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    flex-shrink: 0;
}

.logo-mark {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    padding: 7px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue-light), var(--blue));
    transform: skewX(-10deg);
    box-shadow: 0 8px 25px rgba(39,133,245,.25);
}

.logo-mark span {
    display: block;
    width: 6px;
    background: #fff;
    border-radius: 3px;
}

.logo-mark span:nth-child(1) {
    height: 50%;
}

.logo-mark span:nth-child(2) {
    height: 75%;
}

.logo-mark span:nth-child(3) {
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    letter-spacing: .05em;
}

.logo-text small {
    font-size: 7px;
    letter-spacing: .38em;
    margin-top: 5px;
    opacity: .65;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links > a,
.nav-dropdown > a {
    position: relative;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-links > a:hover,
.nav-links > a.active,
.nav-dropdown > a:hover {
    color: #fff;
}

.nav-links > a::after,
.nav-dropdown > a::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    left: 0;
    bottom: -9px;
    background: var(--blue-light);
    transition: var(--transition);
}

.nav-links > a:hover::after,
.nav-links > a.active::after,
.nav-dropdown > a:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    gap: 5px;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 25px);
    left: -20px;
    width: 230px;
    padding: 12px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 11px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--blue);
    background: var(--blue-soft);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
}

.header-phone > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    color: var(--blue-light);
}

.header-phone small,
.header-phone strong {
    display: block;
}

.header-phone small {
    color: rgba(255,255,255,.45);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.header-phone strong {
    font-size: 12px;
}

.btn {
    min-height: 48px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 800;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn span {
    transition: transform var(--transition);
}

.btn:hover span {
    transform: translateX(4px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue-light), var(--blue));
    box-shadow: 0 10px 30px rgba(18,103,217,.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(18,103,217,.4);
}

.btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.04);
}

.btn-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.45);
    transform: translateY(-3px);
}

.btn-large {
    min-height: 58px;
    padding-inline: 28px;
}

.mobile-toggle {
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    display: block;
    transition: var(--transition);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 860px;
    padding-top: 150px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 80% 30%, rgba(24,108,218,.25), transparent 35%),
        linear-gradient(115deg, #040b14 0%, #071a33 55%, #06162b 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: .2;
    background:
        linear-gradient(90deg, rgba(7,26,51,.95) 0%, rgba(7,26,51,.72) 48%, rgba(7,26,51,.35) 100%),
        linear-gradient(135deg, transparent 40%, rgba(39,133,245,.2) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .14;
    background-image:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 70px;
}

.hero-content {
    padding-top: 40px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.7);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    margin-bottom: 25px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4da1ff;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(77,161,255,.1);
    animation: pulse 2s infinite;
}

.hero h1 {
    max-width: 720px;
    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
    color: #4e9cff;
}

.hero-text {
    max-width: 630px;
    color: rgba(255,255,255,.65);
    font-size: 17px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.hero-trust {
    display: flex;
    align-items: center;
    margin-top: 45px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
}

.trust-icon {
    width: 25px;
    height: 25px;
    border: 1px solid rgba(78,156,255,.45);
    background: rgba(39,133,245,.1);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #62a8ff;
    font-size: 11px;
}

.trust-item strong,
.trust-item small {
    display: block;
}

.trust-item strong {
    font-size: 11px;
}

.trust-item small {
    color: rgba(255,255,255,.4);
    font-size: 9px;
    margin-top: 2px;
}

.trust-line {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,.12);
    margin-inline: 20px;
}


/* Quote card */

.hero-quote-card {
    background: rgba(255,255,255,.98);
    color: var(--gray-900);
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 35px 100px rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.5);
}

.quote-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.mini-label {
    display: block;
    color: var(--blue);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .16em;
    margin-bottom: 7px;
}

.quote-card-top h2 {
    font-size: 25px;
    letter-spacing: -.03em;
}

.quote-badge {
    padding: 7px 10px;
    border-radius: 20px;
    color: #146b3a;
    background: #eaf8f0;
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
}

.quote-badge span {
    color: #2cb86c;
    margin-right: 3px;
}

.quote-subtitle {
    font-size: 12px;
    line-height: 1.6;
    margin: 9px 0 22px;
    color: var(--gray-500);
}

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

.field {
    margin-bottom: 14px;
}

.field label {
    display: block;
    color: var(--gray-700);
    font-size: 10px;
    font-weight: 800;
    margin-bottom: 6px;
}

.input-wrap {
    position: relative;
}

.input-wrap > span {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue);
    font-size: 13px;
    pointer-events: none;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #dce2e9;
    outline: none;
    background: #fafbfd;
    color: var(--gray-900);
    border-radius: 8px;
    transition: var(--transition);
}

input,
select {
    height: 46px;
    padding: 0 13px 0 38px;
    font-size: 12px;
}

select {
    appearance: none;
    cursor: pointer;
}

.input-wrap:not(:has(> span)) input,
.input-wrap:not(:has(> span)) select {
    padding-left: 13px;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue-light);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(39,133,245,.09);
}

textarea {
    padding: 13px;
    resize: vertical;
    min-height: 120px;
}

.quote-submit {
    width: 100%;
    min-height: 50px;
    margin-top: 4px;
}

.secure-note {
    text-align: center;
    margin-top: 12px;
    color: #8a94a2;
    font-size: 9px;
}

.secure-note span {
    color: #2db66c;
    margin-right: 4px;
}

.hero-bottom-fade {
    position: absolute;
    height: 160px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(5,12,21,.8));
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    background: #fff;
    position: relative;
    z-index: 3;
    box-shadow: 0 -15px 40px rgba(0,0,0,.05);
}

.stats-grid {
    min-height: 130px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
}

.stat {
    text-align: center;
}

.stat strong {
    color: var(--navy);
    font-family: "Manrope", sans-serif;
    font-size: 31px;
    letter-spacing: -.05em;
}

.stat > span {
    color: var(--blue);
    font-weight: 800;
}

.stat p {
    font-size: 10px;
    margin-top: 1px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray-500);
}

.stat-divider {
    height: 35px;
    width: 1px;
    background: #e4e8ed;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 120px 0;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.8;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .18em;
    margin-bottom: 18px;
}

.section-label > span {
    width: 25px;
    height: 2px;
    background: var(--blue);
}

.section-label.center {
    justify-content: center;
}

.section-label.center > span:last-child {
    display: block;
}

.section-label.center > span:first-child {
    display: block;
}

.light-label {
    color: #6eb0ff;
}

.light-label > span {
    background: #4c9cff;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: var(--gray-100);
}

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 100px;
}

.about-visual {
    position: relative;
}

.image-card {
    position: relative;
    max-width: 500px;
}

.image-placeholder {
    height: 500px;
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at 60% 30%, rgba(52,143,245,.45), transparent 25%),
        linear-gradient(135deg, #071a33, #123e70);
    position: relative;
}

.image-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .2;
    background-image:
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,.2) 50%, transparent 52%);
    background-size: 40px 40px;
}

.truck-illustration {
    position: absolute;
    width: 390px;
    height: 170px;
    left: 50%;
    top: 52%;
    transform: translate(-50%,-50%);
}

.truck-bed {
    position: absolute;
    width: 285px;
    height: 45px;
    background: #111b29;
    border-radius: 8px 5px 2px 2px;
    left: 25px;
    top: 38px;
    transform: skewX(-15deg);
    box-shadow: 0 20px 35px rgba(0,0,0,.35);
}

.truck-cab {
    position: absolute;
    width: 95px;
    height: 80px;
    right: 5px;
    top: 40px;
    border-radius: 8px 20px 5px 5px;
    background: linear-gradient(145deg, #fff, #aeb9c8);
}

.truck-cab::before {
    content: "";
    position: absolute;
    width: 55px;
    height: 25px;
    right: 12px;
    top: 10px;
    background: #173b65;
    border-radius: 5px;
}

.truck-car {
    position: absolute;
    width: 115px;
    height: 35px;
    left: 85px;
    top: 8px;
    border-radius: 25px 35px 8px 8px;
    background: #e9edf3;
    transform: skewX(-10deg);
}

.truck-car::before {
    content: "";
    position: absolute;
    width: 55px;
    height: 20px;
    top: -15px;
    left: 28px;
    border-radius: 20px 30px 0 0;
    background: #cdd7e3;
}

.wheel {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #070a0e;
    border: 7px solid #293747;
    bottom: 5px;
}

.wheel-1 {
    left: 70px;
}

.wheel-2 {
    left: 150px;
}

.wheel-3 {
    right: 67px;
}

.wheel-4 {
    right: 18px;
}

.experience-card {
    position: absolute;
    right: -30px;
    bottom: 35px;
    padding: 18px 22px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 13px;
}

.experience-number {
    font-family: "Manrope";
    color: var(--blue);
    font-size: 24px;
    font-weight: 900;
}

.experience-label {
    color: var(--gray-700);
    font-size: 10px;
    line-height: 1.3;
    font-weight: 700;
}

.about-content h2 {
    max-width: 600px;
}

.about-content .lead {
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
}

.about-content > p:not(.lead) {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    gap: 10px;
    color: var(--blue);
    font-weight: 800;
    font-size: 12px;
    margin-top: 25px;
}

.text-link span {
    transition: var(--transition);
}

.text-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: #fff;
}

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

.service-card {
    min-height: 310px;
    padding: 30px;
    border: 1px solid #e7ebf0;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    background: #fff;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(39,133,245,.3);
    box-shadow: var(--shadow-md);
}

.service-card.featured {
    color: #fff;
    background: linear-gradient(145deg, #0b2343, #071a33);
    border-color: transparent;
}

.service-number {
    position: absolute;
    top: 25px;
    right: 28px;
    font-family: "Manrope";
    font-size: 12px;
    font-weight: 800;
    color: #aab4c2;
}

.featured .service-number {
    color: rgba(255,255,255,.35);
}

.service-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--blue-soft);
    font-size: 24px;
    margin-bottom: 28px;
}

.featured .service-icon {
    background: rgba(39,133,245,.16);
}

.service-card h3 {
    margin-bottom: 13px;
}

.service-card p {
    font-size: 13px;
    line-height: 1.75;
}

.featured p {
    color: rgba(255,255,255,.6);
}

.service-card > a {
    position: absolute;
    left: 30px;
    bottom: 28px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}

.featured > a {
    color: #68aaff;
}

.service-card > a span {
    margin-left: 6px;
    transition: var(--transition);
}

.service-card:hover > a span {
    margin-left: 10px;
}

.card-glow {
    width: 170px;
    height: 170px;
    position: absolute;
    right: -80px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(39,133,245,.2);
    filter: blur(25px);
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -350px;
    top: -350px;
    background: rgba(39,133,245,.15);
    border-radius: 50%;
    filter: blur(40px);
}

.section-heading.light p {
    color: rgba(255,255,255,.55);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-line {
    position: absolute;
    left: 12%;
    right: 12%;
    top: 415px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(77,161,255,.4),
        transparent
    );
}

.process-step {
    position: relative;
    z-index: 2;
}

.step-number {
    font-family: "Manrope";
    font-size: 11px;
    color: #4f9bff;
    font-weight: 900;
    margin-bottom: 13px;
}

.step-icon {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(77,161,255,.3);
    border-radius: 18px;
    background: rgba(39,133,245,.08);
    font-size: 27px;
    margin-bottom: 23px;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    transform: translateY(-6px);
    background: rgba(39,133,245,.16);
    border-color: rgba(77,161,255,.7);
    box-shadow: 0 15px 35px rgba(39,133,245,.15);
}

.process-step h3 {
    margin-bottom: 12px;
}

.process-step p {
    color: rgba(255,255,255,.5);
    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   WHY US
========================================================= */

.why-section {
    background: var(--gray-100);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
}

.why-content h2 {
    max-width: 650px;
}

.why-content .lead {
    margin-top: 25px;
    font-size: 15px;
    line-height: 1.8;
}

.benefit-list {
    margin-top: 35px;
    display: grid;
    gap: 18px;
}

.benefit {
    display: flex;
    gap: 14px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-soft);
    color: var(--blue);
    font-weight: 900;
}

.benefit h4 {
    font-family: "Inter";
    font-size: 13px;
    margin-bottom: 3px;
}

.benefit p {
    font-size: 11px;
}

.route-card {
    padding: 18px;
    border-radius: 22px;
    background: #071a33;
    box-shadow: var(--shadow-lg);
}

.route-header,
.route-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.route-header {
    padding: 8px 8px 16px;
    color: rgba(255,255,255,.45);
    font-size: 9px;
    letter-spacing: .13em;
    font-weight: 800;
}

.route-live {
    color: #4dd687;
    display: flex;
    align-items: center;
    gap: 5px;
}

.route-live i {
    width: 6px;
    height: 6px;
    background: #4dd687;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.route-map {
    height: 330px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background:
        linear-gradient(rgba(39,133,245,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(39,133,245,.06) 1px, transparent 1px);
    background-size: 35px 35px;
    border: 1px solid rgba(255,255,255,.05);
}

.map-grid {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(39,133,245,.12), transparent 60%);
}

.route-line {
    position: absolute;
    width: 70%;
    height: 2px;
    left: 15%;
    top: 52%;
    background: linear-gradient(90deg, #358cff, #70b4ff);
    transform: rotate(-15deg);
    box-shadow: 0 0 20px rgba(39,133,245,.6);
}

.location-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
}

.location-point span {
    width: 14px;
    height: 14px;
    background: #fff;
    border: 4px solid var(--blue-light);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(39,133,245,.12);
}

.point-a {
    left: 12%;
    top: 60%;
}

.point-b {
    right: 12%;
    top: 30%;
}

.moving-car {
    position: absolute;
    left: 47%;
    top: 45%;
    font-size: 25px;
    filter: drop-shadow(0 8px 10px rgba(0,0,0,.4));
    animation: drive 4s ease-in-out infinite;
}

.route-footer {
    padding: 18px 8px 5px;
}

.route-footer small,
.route-footer strong {
    display: block;
}

.route-footer small {
    color: rgba(255,255,255,.35);
    font-size: 8px;
    letter-spacing: .1em;
}

.route-footer strong {
    color: #fff;
    font-size: 12px;
    margin-top: 3px;
}

.route-arrow {
    color: #4d9cff;
    font-size: 22px;
}


/* =========================================================
   COVERAGE
========================================================= */

.coverage-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 85% 50%, rgba(31,119,238,.35), transparent 30%),
        linear-gradient(135deg, #071a33, #040d18);
}

.coverage-pattern {
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image:
        linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
    background-size: 60px 60px;
}

.coverage-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 50px;
}

.coverage-content h2 {
    max-width: 620px;
}

.coverage-content p {
    max-width: 560px;
    color: rgba(255,255,255,.55);
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.9;
}

.states-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 25px 0;
}

.states-row span {
    padding: 8px 11px;
    border-radius: 5px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    font-size: 9px;
    font-weight: 700;
}

.btn-white {
    color: var(--navy);
    background: #fff;
}

.btn-white:hover {
    background: #eef5ff;
    transform: translateY(-3px);
}

.usa-map {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
}

.usa-svg {
    width: 100%;
    position: relative;
    z-index: 2;
}

.map-dot {
    fill: #51a0ff;
    filter: drop-shadow(0 0 8px #2785f5);
    animation: mapBlink 2s infinite alternate;
}

.map-dot:nth-child(3n) {
    animation-delay: .5s;
}

.map-caption {
    position: absolute;
    right: 5%;
    bottom: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
}

.map-caption strong {
    display: block;
    color: #fff;
    font-family: "Manrope";
    font-size: 18px;
}

.map-caption span {
    display: block;
    color: rgba(255,255,255,.45);
    font-size: 9px;
}


/* =========================================================
   VEHICLES
========================================================= */

.vehicle-section {
    background: #fff;
}

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

.vehicle-card {
    text-align: center;
    padding: 28px 15px;
    border: 1px solid #e6ebf1;
    border-radius: 16px;
    transition: var(--transition);
}

.vehicle-card:hover {
    transform: translateY(-7px);
    border-color: rgba(39,133,245,.25);
    box-shadow: var(--shadow-sm);
}

.vehicle-art {
    height: 80px;
    display: grid;
    place-items: center;
    font-size: 48px;
    filter: grayscale(.3);
    transition: var(--transition);
}

.vehicle-card:hover .vehicle-art {
    filter: grayscale(0);
    transform: scale(1.08);
}

.vehicle-card h3 {
    font-size: 14px;
    margin-top: 13px;
}

.vehicle-card p {
    font-size: 10px;
    margin-top: 4px;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {
    background: var(--gray-100);
}

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

.testimonial-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #e7ebf0;
    border-radius: 18px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.featured-review {
    border-color: rgba(39,133,245,.35);
    box-shadow: 0 15px 45px rgba(39,133,245,.08);
}

.stars {
    color: #f5a623;
    letter-spacing: 2px;
    font-size: 12px;
}

.testimonial-card > p {
    color: var(--gray-700);
    font-size: 13px;
    line-height: 1.8;
    margin: 20px 0 30px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--navy);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
}

.reviewer strong,
.reviewer small {
    display: block;
}

.reviewer strong {
    font-size: 11px;
}

.reviewer small {
    font-size: 9px;
    color: var(--gray-500);
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 100px;
    align-items: start;
}

.faq-intro p {
    margin: 20px 0 30px;
    max-width: 400px;
    font-size: 14px;
}

.faq-list {
    border-top: 1px solid #e2e7ed;
}

.faq-item {
    border-bottom: 1px solid #e2e7ed;
}

.faq-question {
    width: 100%;
    min-height: 75px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: var(--gray-900);
    background: transparent;
    text-align: left;
    font-weight: 800;
    font-size: 13px;
}

.faq-plus {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border: 1px solid #dce3ea;
    border-radius: 50%;
    color: var(--blue);
    transition: var(--transition);
}

.faq-item.active .faq-plus {
    color: #fff;
    background: var(--blue);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 50px 23px 0;
    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    position: relative;
    padding: 105px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 100%, rgba(39,133,245,.35), transparent 40%),
        var(--navy);
    color: #fff;
    text-align: center;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    left: 50%;
    top: -300px;
    transform: translateX(-50%);
    background: rgba(39,133,245,.25);
    filter: blur(80px);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-label {
    color: #62a8ff;
    font-size: 9px;
    letter-spacing: .2em;
    font-weight: 900;
    margin-bottom: 18px;
}

.cta-content h2 {
    max-width: 800px;
    margin-inline: auto;
}

.cta-content h2 span {
    color: #5ca7ff;
}

.cta-content p {
    max-width: 580px;
    margin: 20px auto 30px;
    color: rgba(255,255,255,.55);
    font-size: 14px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-outline-light {
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,.1);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: var(--gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.contact-info > p {
    max-width: 450px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
}

.contact-items {
    display: grid;
    gap: 12px;
    margin-top: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e7ebf0;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
    border-color: rgba(39,133,245,.3);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: var(--blue-soft);
    border-radius: 10px;
}

.contact-item small,
.contact-item strong {
    display: block;
}

.contact-item small {
    color: var(--gray-500);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;
}

.contact-item strong {
    font-size: 12px;
    margin-top: 2px;
}

.contact-form-card {
    padding: 35px;
    background: #fff;
    border: 1px solid #e4e9ef;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-heading > span {
    color: var(--blue);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
}

.form-heading h3 {
    margin: 5px 0 25px;
    font-size: 25px;
}

.contact-form-card .field input,
.contact-form-card .field textarea {
    padding-left: 13px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    color: rgba(255,255,255,.55);
    background: #040b14;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 50px;
    padding-top: 80px;
    padding-bottom: 65px;
}

.footer-brand p {
    max-width: 330px;
    font-size: 11px;
    line-height: 1.8;
    margin-top: 20px;
}

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

.socials a {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    font-size: 10px;
    transition: var(--transition);
}

.socials a:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h4 {
    color: #fff;
    font-size: 12px;
    margin-bottom: 8px;
}

.footer-column a,
.footer-column span {
    font-size: 10px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-contact a:first-of-type {
    color: #fff;
    font-weight: 700;
}

.footer-quote {
    color: #5ca7ff !important;
    font-weight: 800;
    margin-top: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
}

.footer-bottom-inner {
    min-height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 9px;
}

.footer-bottom-inner div {
    display: flex;
    gap: 20px;
}

.footer-bottom a:hover {
    color: #fff;
}


/* =========================================================
   FLOATING CALL
========================================================= */

.floating-call {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    z-index: 900;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #2785f5, #1267d9);
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(18,103,217,.4);
}

.floating-phone {
    position: relative;
    z-index: 2;
    font-size: 20px;
}

.call-pulse {
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(39,133,245,.5);
    border-radius: 50%;
    animation: ringPulse 2s infinite;
}

.floating-tooltip {
    position: absolute;
    right: 70px;
    width: max-content;
    padding: 8px 12px;
    color: #fff;
    background: var(--navy);
    border-radius: 6px;
    font-size: 9px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: var(--transition);
}

.floating-call:hover .floating-tooltip {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   MODAL
========================================================= */

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(3,9,17,.7);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    width: min(100%, 430px);
    padding: 40px;
    position: relative;
    text-align: center;
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px) scale(.97);
    transition: var(--transition);
}

.modal.show .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 32px;
    height: 32px;
    color: var(--gray-500);
    background: var(--gray-100);
    border-radius: 50%;
    font-size: 20px;
}

.success-icon {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    color: #fff;
    background: #21ad64;
    border-radius: 50%;
    font-size: 28px;
}

.modal-box h3 {
    font-size: 25px;
}

.modal-box p {
    margin: 12px 0 25px;
    font-size: 13px;
}


/* =========================================================
   ANIMATIONS
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-2 {
    transition-delay: .15s;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(77,161,255,.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(77,161,255,0);
    }
}

@keyframes ringPulse {
    0% {
        transform: scale(.9);
        opacity: 1;
    }

    70% {
        transform: scale(1.15);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes drive {
    0%, 100% {
        transform: translateX(-10px) rotate(-1deg);
    }

    50% {
        transform: translateX(10px) rotate(1deg);
    }
}

@keyframes mapBlink {
    from {
        opacity: .35;
        transform: scale(.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1150px) {

    .nav-links {
        gap: 16px;
    }

    .header-phone {
        display: none;
    }

    .hero-container {
        gap: 40px;
    }

    .hero h1 {
        font-size: clamp(3rem, 6vw, 5rem);
    }

    .about-grid,
    .why-grid,
    .contact-grid {
        gap: 60px;
    }
}


@media (max-width: 980px) {

    .topbar {
        display: none;
    }

    .navbar {
        min-height: 75px;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        left: 20px;
        right: 20px;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: rgba(4,13,25,.98);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 15px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-15px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links > a,
    .nav-dropdown > a {
        padding: 12px;
    }

    .nav-links > a::after,
    .nav-dropdown > a::after {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        display: none;
        position: static;
        width: 100%;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        background: rgba(255,255,255,.04);
        box-shadow: none;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        color: rgba(255,255,255,.6);
    }

    .mobile-toggle {
        display: flex;
    }

    .header-quote {
        display: none;
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 40px;
    }

    .hero-quote-card {
        max-width: 650px;
    }

    .about-grid,
    .why-grid,
    .coverage-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        max-width: 500px;
        margin-inline: auto;
    }

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

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .process-line {
        display: none;
    }

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

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

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


@media (max-width: 650px) {

    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .section {
        padding: 80px 0;
    }

    .hero {
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 14vw, 4rem);
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trust-line {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        padding: 25px 0;
        gap: 25px;
    }

    .stat-divider {
        display: none;
    }

    .stat strong {
        font-size: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-quote-card {
        padding: 20px;
    }

    .quote-card-top {
        flex-direction: column;
    }

    .about-grid,
    .why-grid,
    .coverage-grid,
    .contact-grid,
    .faq-grid {
        gap: 45px;
    }

    .image-placeholder {
        height: 350px;
    }

    .truck-illustration {
        transform: translate(-50%,-50%) scale(.72);
    }

    .experience-card {
        right: 10px;
        bottom: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vehicle-card:last-child {
        grid-column: 1 / -1;
    }

    .usa-map {
        min-height: 280px;
    }

    .route-map {
        height: 260px;
    }

    .contact-form-card {
        padding: 23px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-top: 60px;
    }

    .footer-bottom-inner {
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .floating-call {
        width: 52px;
        height: 52px;
        right: 17px;
        bottom: 17px;
    }

    .floating-tooltip {
        display: none;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}


@media (max-width: 390px) {

    .logo-text strong {
        font-size: 16px;
    }

    .logo-mark {
        width: 35px;
        height: 35px;
    }

    .vehicle-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-card:last-child {
        grid-column: auto;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        padding: 8px;
    }
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   MULTI-PAGE ADDITIONS (AMSW DYNAMIC VERSION)
   Same design language as the original one-page layout
========================================================= */

/* ---------- INNER PAGE HERO ---------- */
.page-hero {
    position: relative;
    padding: 170px 0 90px;
    background: var(--navy);
    overflow: hidden;
    isolation: isolate;
}

.page-hero .hero-bg,
.page-hero .hero-grid {
    position: absolute;
    inset: 0;
}

.page-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 860px;
}

.page-hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin: 18px 0 16px;
}

.page-hero h1 span {
    display: block;
    background: linear-gradient(120deg, var(--blue-light), #7cc0ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    color: rgba(255, 255, 255, .72);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 640px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .45);
}

.breadcrumb a {
    color: rgba(255, 255, 255, .68);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--blue-light);
}

.breadcrumb strong {
    color: var(--white);
    font-weight: 600;
}

/* ---------- SECTION CTA ---------- */
.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* ---------- VALUES / MISSION CARDS ---------- */
.values-section {
    background: var(--gray-100);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    margin-top: 52px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(18, 103, 217, .35);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    background: var(--blue-soft);
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--gray-700);
    line-height: 1.75;
    font-size: .95rem;
}

/* ---------- SERVICE DETAIL ---------- */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 56px;
    align-items: start;
}

.service-detail-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    background: var(--blue-soft);
    margin-bottom: 22px;
}

.service-detail-content h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--gray-700);
    line-height: 1.85;
    margin-bottom: 16px;
}

.service-detail-content .lead {
    font-size: 1.1rem;
    color: var(--gray-900);
    font-weight: 500;
}

.service-detail-content .benefit-list {
    margin-top: 36px;
}

.service-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-quote {
    margin: 0;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    transition: var(--transition);
}

.sidebar-links a:hover {
    background: var(--blue-soft);
    color: var(--blue);
}

.sidebar-contact p {
    color: var(--gray-700);
    font-size: .93rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.sidebar-contact .btn {
    width: 100%;
    justify-content: center;
}

/* ---------- QUOTE PAGE ---------- */
.quote-page-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 60px;
    align-items: start;
}

.quote-page-side h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.quote-page-side h2 em {
    display: block;
    font-style: normal;
    color: var(--blue);
}

.quote-page-side .lead {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 34px;
}

.quote-page-card {
    margin: 0;
}

.quote-help-box {
    margin-top: 34px;
    padding: 22px 26px;
    border-radius: var(--radius-md);
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.quote-help-box span {
    color: rgba(255, 255, 255, .7);
    font-size: .95rem;
}

.quote-help-box a {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
}

/* ---------- STATES GRID ---------- */
.states-section {
    background: var(--gray-100);
}

.states-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 46px;
}

.state-chip {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.state-chip:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

/* ---------- LEGAL PAGES ---------- */
.legal-content {
    max-width: 860px;
}

.legal-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    color: var(--gray-900);
    margin: 32px 0 12px;
}

.legal-content p {
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 16px;
}

.legal-updated {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid var(--gray-300);
    font-size: .9rem;
    color: var(--gray-500);
}

/* ---------- THANK YOU / 404 ---------- */
.thankyou-box {
    max-width: 680px;
    text-align: center;
}

.thankyou-box h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 22px 0 14px;
}

.thankyou-box p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 32px;
}

.thankyou-box .success-icon {
    margin: 0 auto;
}

.thankyou-box .cta-buttons {
    justify-content: center;
}

.error-code {
    font-family: 'Manrope', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -3px;
}

/* ---------- FORM FEEDBACK ---------- */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.form-message {
    display: none;
    margin-top: 14px;
    padding: 13px 16px;
    border-radius: 12px;
    font-size: .9rem;
    line-height: 1.6;
}

.form-message.show {
    display: block;
}

.form-message.error {
    background: #fdecec;
    border: 1px solid #f5c2c2;
    color: #a32323;
}

.form-message.success {
    background: #e9f8ee;
    border: 1px solid #b7e3c5;
    color: #1c7a3d;
}

.field input.invalid,
.field select.invalid,
.field textarea.invalid {
    border-color: #e05252 !important;
}

.btn.loading {
    opacity: .7;
    pointer-events: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {

    .service-detail-grid,
    .quote-page-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {

    .page-hero {
        padding: 140px 0 70px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   MOBILE FIX — ABOUT VISUAL
========================================================= */

/* Solid dark fallback: agar gradient load na ho to bhi
   box white nahi dikhega (tablet view ke liye protection) */
.image-placeholder {
    background-color: #0b2343;
}

/* Mobile par about visual (truck box + USA badge) hide */
@media (max-width: 650px) {
    .about-visual {
        display: none;
    }
}
