/* ============================================
   BNG Trucking Inc. — Stylesheet
   Palette: Midnight Blue (#0A1628) + Mint (#5EEAD4)
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Section Headers --- */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0d9488;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: #0A1628;
    margin-bottom: 1rem;
}

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

.section-header {
    margin-bottom: 3.5rem;
}

.section-header--centered {
    text-align: center;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: #4a5568;
    max-width: 600px;
    line-height: 1.7;
}

.section-subtitle--light {
    color: #94a3b8;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.8125rem 1.75rem;
    border-radius: 8px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn--primary {
    background-color: #5EEAD4;
    color: #0A1628;
    border: 2px solid #5EEAD4;
}

.btn--primary:hover {
    background-color: #2dd4bf;
    border-color: #2dd4bf;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(94, 234, 212, 0.35);
}

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

.btn--ghost:hover {
    border-color: #5EEAD4;
    color: #5EEAD4;
    transform: translateY(-2px);
}

.btn--outline {
    background-color: transparent;
    color: #5EEAD4;
    border: 2px solid #5EEAD4;
}

.btn--outline:hover {
    background-color: #5EEAD4;
    color: #0A1628;
    transform: translateY(-2px);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

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

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(94, 234, 212, 0.1);
    transition: background-color 0.3s ease;
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.nav__logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.nav__logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav__link:hover {
    color: #5EEAD4;
    background-color: rgba(94, 234, 212, 0.08);
}

.nav__link--cta {
    background-color: #5EEAD4;
    color: #0A1628;
    font-weight: 600;
    margin-left: 0.5rem;
}

.nav__link--cta:hover {
    background-color: #2dd4bf;
    color: #0A1628;
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 6px;
}

.nav__toggle:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.nav__toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background-color: #0A1628;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(10, 22, 40, 0.75) 50%,
        rgba(10, 22, 40, 0.60) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 1.5rem 6rem;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #5EEAD4;
    background-color: rgba(94, 234, 212, 0.1);
    border: 1px solid rgba(94, 234, 212, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.75rem;
    letter-spacing: 0.04em;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #5EEAD4;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero__headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    max-width: 780px;
    margin-bottom: 1.5rem;
}

.hero__subheadline {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #94a3b8;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
}

.hero__trust-item svg {
    width: 18px;
    height: 18px;
    color: #5EEAD4;
    flex-shrink: 0;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__scroll svg {
    width: 20px;
    height: 20px;
    color: #5EEAD4;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #5EEAD4;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(94, 234, 212, 0.12);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: rgba(94, 234, 212, 0.1);
    color: #0d9488;
    margin-bottom: 1.25rem;
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
}

.service-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1875rem;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 0.625rem;
}

.service-card__desc {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.65;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 6rem 0;
    background-color: #ffffff;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
}

.about__img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about__img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.2);
    border: 4px solid #ffffff;
}

.about__img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about__experience-badge {
    position: absolute;
    top: -1rem;
    right: 2rem;
    background-color: #0A1628;
    color: #ffffff;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.3);
}

.about__experience-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #5EEAD4;
    line-height: 1;
}

.about__experience-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    margin-top: 0.25rem;
    letter-spacing: 0.02em;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about__text {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.75;
}

.about__stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin: 0.5rem 0;
}

.about__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.about__stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0A1628;
}

.about__stat-label {
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 500;
}

.about__stat-divider {
    width: 1px;
    height: 40px;
    background-color: #e2e8f0;
}

/* ============================================
   Why Us Section
   ============================================ */
.why-us {
    padding: 6rem 0;
    background-color: #0A1628;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.why-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.why-card:hover {
    background-color: rgba(94, 234, 212, 0.06);
    border-color: rgba(94, 234, 212, 0.2);
    transform: translateY(-4px);
}

.why-card__number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(94, 234, 212, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.why-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1875rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.625rem;
}

.why-card__desc {
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.65;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #5EEAD4 100%);
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-banner__content {
    flex: 1;
    min-width: 280px;
}

.cta-banner__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.cta-banner__text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact__text {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.75;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact__detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: rgba(94, 234, 212, 0.1);
    color: #0d9488;
    flex-shrink: 0;
}

.contact__detail-icon svg {
    width: 22px;
    height: 22px;
}

.contact__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.contact__detail-value {
    font-size: 0.9375rem;
    color: #0A1628;
    font-weight: 500;
    line-height: 1.5;
}

.contact__detail-value a {
    color: #0A1628;
    transition: color 0.2s ease;
}

.contact__detail-value a:hover {
    color: #0d9488;
}

/* Contact Form */
.contact__form-wrapper {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
}

.contact__form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 1.75rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.375rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1a1a2e;
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

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

.form-input:focus {
    border-color: #5EEAD4;
    box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.15);
    background-color: #ffffff;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    font-size: 0.8125rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 1rem;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 2.5rem 1.5rem;
}

.form-success svg {
    width: 56px;
    height: 56px;
    color: #0d9488;
}

.form-success h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #0A1628;
}

.form-success p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: #0A1628;
    color: #ffffff;
    padding: 4rem 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.footer__logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.footer__logo span {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
}

.footer__tagline {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.65;
    max-width: 280px;
}

.footer__heading {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5EEAD4;
    margin-bottom: 1.25rem;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__list a,
.footer__list span {
    font-size: 0.875rem;
    color: #94a3b8;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__list a:hover {
    color: #5EEAD4;
}

.footer__contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #5EEAD4;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: #64748b;
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu__link {
    font-size: 1.25rem;
    font-weight: 500;
    color: #cbd5e1;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
    width: 100%;
    text-align: center;
}

.mobile-menu__link:hover {
    color: #5EEAD4;
    background-color: rgba(94, 234, 212, 0.08);
}

.mobile-menu__link--cta {
    background-color: #5EEAD4;
    color: #0A1628;
    font-weight: 600;
    margin-top: 0.5rem;
}

.mobile-menu__link--cta:hover {
    background-color: #2dd4bf;
    color: #0A1628;
}

.mobile-menu__contact {
    margin-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu__contact p {
    font-size: 0.875rem;
    color: #94a3b8;
}

.mobile-menu__contact a {
    color: #cbd5e1;
    transition: color 0.2s ease;
}

.mobile-menu__contact a:hover {
    color: #5EEAD4;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .services__grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero__content {
        padding: 7rem 1.5rem 5rem;
    }

    .hero__headline {
        font-size: clamp(1.75rem, 6vw, 2.75rem);
    }

    .hero__trust {
        gap: 1rem;
    }

    .services,
    .about,
    .why-us,
    .contact {
        padding: 4rem 0;
    }

    .services__grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__img-secondary {
        right: 0;
        bottom: -1.5rem;
    }

    .about__experience-badge {
        right: 1rem;
        top: -0.75rem;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner__actions {
        justify-content: center;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero__actions {
        flex-direction: column;
    }

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

    .about__stats {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .about__stat-divider {
        width: 40px;
        height: 1px;
    }

    .contact__form-wrapper {
        padding: 1.5rem;
    }

    .btn--large {
        padding: 0.875rem 1.5rem;
    }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* --- Scroll Reveal (progressive enhancement) --- */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }

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