/* ═══════════════════════════════════════════
   AIRRIDE — site.css — Full Redesign
═══════════════════════════════════════════ */

/* ── Global: typography, layout, RTL ── */
body {
    font-family: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

html.lang-en body {
    direction: ltr;
    text-align: left;
}

/* Inner content container (used by features-inner, booking-inner) */
.container {
    max-width: none !important;
    margin-left: auto;
    margin-right: auto;
}

/* ── Hero Section: full viewport width, edge to edge, no gap below ── */
.hero-section {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 0;
    min-height: 70vh;
    background-image: url('../images/airride-hero.jpg');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Semi-transparent dark overlay for text legibility */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-section::after {
    display: none;
}

/* Smooth transition curve: no white gap, full viewport width, overlaps hero */
.hero-content-curve {
    height: 100px;
    background: #F0F4FF;
    margin-top: -60px;
    margin-bottom: 0;
    margin-left: calc(-50vw + 50%);
    border-radius: 50% 50% 0 0;
    width: 100vw;
    max-width: none;
    box-sizing: border-box;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 60px 40px 80px;
    max-width: 860px;
    width: 100%;
}

/* Logo — no background, just smart filter for visibility */
.hero-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
    max-width: 160px;
}

.hero-logo img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255,255,255,.7)) drop-shadow(0 3px 14px rgba(0,0,0,.6));
}

/* Language toggle — solid white pill, clearly visible */
.hero-lang-toggle {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 4;
}

.hero-lang-toggle .lang-toggle {
    background: white;
    color: #1d4ed8;
    border: none;
    font-size: .82rem;
    font-weight: 800;
    padding: 8px 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,.25);
    letter-spacing: 0.5px;
}

.hero-lang-toggle .lang-toggle:hover {
    background: #eff6ff;
    color: #1e40af;
    box-shadow: 0 5px 18px rgba(0,0,0,.3);
    transform: translateY(-1px);
}

@keyframes heroReveal {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-family: 'Heebo', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    white-space: normal;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow:
        0 2px 4px rgba(0,0,0,.6),
        0 6px 32px rgba(0,0,0,.4);
    animation: heroReveal 0.6s ease-out forwards;
}

.hero-subtitle {
    font-family: 'Heebo', sans-serif;
    font-size: clamp(.95rem, 1.4vw, 1.1rem);
    margin-bottom: 32px;
    font-weight: 500;
    color: rgba(255,255,255,.95);
    letter-spacing: 0.4px;
    text-shadow: 0 1px 8px rgba(0,0,0,.6);
    display: block;
    opacity: 0;
    animation: heroReveal 0.6s ease-out 0.15s forwards;
}

/* CTA — הזמן עכשיו / Reserve Your Transfer */
.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #6C63FF 0%, #48CAE4 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Heebo', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(108,99,255,0.35);
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0,0,0,.2);
}

.hero-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(108,99,255,0.5), 0 8px 24px rgba(72,202,228,0.35);
}

.hero-cta-button:active { transform: scale(1.02); }

/* ── Main content wrapper: full width, no constraint ── */
.main-content-section {
    position: relative;
    width: 100% !important;
    max-width: none !important;
    padding: 0;
    margin: 0;
    overflow: hidden;
    box-sizing: border-box;
}

/* Features section: force full viewport width (break out of any container) */
.features-outer {
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    position: relative;
    left: 0;
    background: #F0F4FF;
    box-sizing: border-box;
}

/* Inner container: readable width, centered */
.features-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 40px;
    width: 100%;
    box-sizing: border-box;
}

/* Booking section: force full viewport width (break out of any container) */
.booking-outer {
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    position: relative;
    left: 0;
    background: #E8EDFF;
    background-image:
        radial-gradient(circle, rgba(0,0,0,0.02) 1px, transparent 1px),
        #E8EDFF;
    background-size: 24px 24px, 100% 100%;
}

/* Inner container: readable width, centered */
.booking-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 40px;
    width: 100%;
    box-sizing: border-box;
}

/* נקודות לבנות קטנות שנעות מלמטה למעלה – תנועה ועומק */
@keyframes bgDotsScroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-32px); }
}

.bg-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle at center, rgba(255,255,255,0.3) 1px, transparent 2px);
    background-size: 32px 32px;
    background-position: 0 0;
    animation: bgDotsScroll 25s linear infinite;
}

/* Faint plane silhouette watermark in side areas */
.main-content-section::before,
.main-content-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 35%;
    max-width: 420px;
    height: 100%;
    min-height: 1000px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
    background-repeat: no-repeat;
    background-size: 70% auto;
    background-position: center center;
}

.main-content-section::before {
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100'%3E%3Cpath fill='%231e3a5f' d='M10 50 L80 42 L140 35 L190 50 L140 65 L80 58 L10 50 Z M75 48 L85 52 L75 52 Z'/%3E%3C/svg%3E");
}

.main-content-section::after {
    right: 0;
    left: auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100'%3E%3Cpath fill='%231e3a5f' d='M190 50 L120 42 L60 35 L10 50 L60 65 L120 58 L190 50 Z M125 48 L115 52 L125 52 Z'/%3E%3C/svg%3E");
}

/* ── Page content wrap: full width, no max-width ── */
.page-content-wrap {
    position: relative;
    overflow: hidden;
    width: 100% !important;
    max-width: none !important;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.page-content-wrap::before,
.page-content-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 28%;
    max-width: 380px;
    height: 100%;
    min-height: 900px;
    pointer-events: none;
    z-index: 0;
}

/* Left: soft blue wave / blob */
.page-content-wrap::before {
    left: 0;
    background:
        radial-gradient(ellipse 90% 70% at 20% 20%, rgba(37,99,235,0.08) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 0% 60%, rgba(59,130,246,0.06) 0%, transparent 50%);
}

/* Right: light grey geometric + soft blue */
.page-content-wrap::after {
    right: 0;
    left: auto;
    background:
        radial-gradient(ellipse 85% 65% at 80% 30%, rgba(148,163,184,0.07) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 70%, rgba(37,99,235,0.05) 0%, transparent 50%),
        repeating-linear-gradient(
            105deg,
            transparent,
            transparent 40px,
            rgba(148,163,184,0.03) 40px,
            rgba(148,163,184,0.03) 41px
        );
}

.page-content-wrap .container {
    position: relative;
    z-index: 1;
    max-width: none !important;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Card reveal: floatIn (Intersection Observer) ── */
@keyframes floatIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.card {
    opacity: 0;
    transform: translateY(30px);
}

.card.visible {
    animation: floatIn 0.6s ease-out forwards;
}

.features-section .card.visible:nth-child(1) { animation-delay: 0s; }
.features-section .card.visible:nth-child(2) { animation-delay: 0.15s; }
.features-section .card.visible:nth-child(3) { animation-delay: 0.30s; }

.trip-selection .card.visible:nth-child(1) { animation-delay: 0s; }
.trip-selection .card.visible:nth-child(2) { animation-delay: 0.15s; }
.trip-selection .card.visible:nth-child(3) { animation-delay: 0.30s; }

/* ── Feature Strip (white cards) ── */
.features-section {
    display: flex;
    gap: 24px;
    margin: 0 0 56px;
}

.feature-card {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 32px;
    border-radius: 16px;
    background: #ffffff;
    border: 1.5px solid #E8EDF5;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    color: #1e293b;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: right;
    cursor: default;
    min-width: 0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #EEF2FF, #E0F7FA);
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(191, 219, 254, 0.95);
}

.feature-icon i {
    font-size: 26px;
    color: #0ea5e9;
    transition: color .25s;
}

.feature-title {
    font-family: 'Heebo', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
    line-height: 1.35;
}

.feature-description {
    font-size: .9rem;
    color: #64748b;
    line-height: 1.5;
}

/* ── Booking section: white card with shadow (sized by .booking-inner) ── */
.main-booking-card {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 48px 24px 56px;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.booking-body {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px 40px;
    margin: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
}

.booking-card-header {
    margin-bottom: 40px;
    padding-bottom: 8px;
    text-align: center;
}

.main-booking-card .booking-card-title {
    color: #0f172a;
}

.main-booking-card .booking-card-subtitle {
    color: #64748b;
}

.main-booking-card .booking-card-title::after {
    background: linear-gradient(90deg, #6C63FF, #48CAE4);
}

.main-booking-card .trip-btn {
    min-height: 160px;
    background: #EEF2FF;
    border: 2px solid #C7D2FE;
    border-radius: 16px;
    color: #1e293b;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.12);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
}

/* כרטיס "לשדה התעופה" – גוון אינדיגו */
.main-booking-card .trip-btn-to {
    background: #E0E7FF;
    border-color: #6366F1;
}
.main-booking-card .trip-btn-to:hover {
    background: #C7D2FE;
    border-color: #4F46E5;
}
.main-booking-card .trip-btn-to .trip-btn-icon-wrap { background: #C7D2FE; }
.main-booking-card .trip-btn-to .trip-btn-svg { color: #4F46E5; }
.main-booking-card .trip-btn-to .trip-btn-sub { color: #6366F1; }

/* כרטיס "משדה התעופה" – גוון טורקיז/שמיים */
.main-booking-card .trip-btn-from {
    background: #E0F2FE;
    border-color: #0EA5E9;
}
.main-booking-card .trip-btn-from:hover {
    background: #BAE6FD;
    border-color: #0284C7;
}
.main-booking-card .trip-btn-from .trip-btn-icon-wrap { background: #BAE6FD; }
.main-booking-card .trip-btn-from .trip-btn-svg { color: #0284C7; }
.main-booking-card .trip-btn-from .trip-btn-sub { color: #0EA5E9; }

.main-booking-card .trip-btn:hover {
    transform: translateY(-4px);
}
.main-booking-card .trip-btn-to:hover,
.main-booking-card .trip-btn-from:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

/* מצב נבחר – צבע וצל כללי (הרקע לפי סוג הכרטיס) */
.main-booking-card .trip-btn.active {
    border: none;
    color: white;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.main-booking-card .trip-btn-to.active {
    background: #6366F1;
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}
.main-booking-card .trip-btn-from.active {
    background: #0EA5E9;
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.4);
}
/* כרטיס "הלוך וחזור" נבחר – גרדיאנט משני גווני הכרטיסיות */
.main-booking-card .trip-btn-round.active {
    background: linear-gradient(145deg, #6366F1, #0EA5E9);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.35);
}

/* Optional ring on selected */
.main-booking-card .trip-btn.active::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
}
.main-booking-card .trip-btn-to.active::before { background: #6366F1; }
.main-booking-card .trip-btn-from.active::before { background: #0EA5E9; }
.main-booking-card .trip-btn-round.active::before {
    background: linear-gradient(145deg, #6366F1, #0EA5E9);
}

/* Checkmark when selected: white bg, brand blue, top-right in RTL */
.main-booking-card .trip-btn.active::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    color: #6366f1;
    font-size: 12px;
    font-weight: 800;
    line-height: 24px;
    text-align: center;
}

html[dir="rtl"] .main-booking-card .trip-btn.active::after {
    right: auto;
    left: 12px;
}

.main-booking-card .trip-btn-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1E1B4B;
}

.main-booking-card .trip-btn-sub {
    font-size: 0.85rem;
    color: #6366F1;
}

.main-booking-card .trip-btn.active .trip-btn-text,
.main-booking-card .trip-btn.active .trip-btn-sub {
    color: white;
}

.main-booking-card .trip-btn-icon-wrap {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: #DDE5FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.main-booking-card .trip-btn-svg {
    color: #4F46E5;
}

.main-booking-card .trip-btn.active .trip-btn-svg {
    color: white;
}

.main-booking-card .trip-btn.active .trip-btn-icon-wrap {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
}

.header-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e0f2fe, #cffafe);
    color: #0369a1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(14,165,233,0.2);
}

.booking-card-title {
    font-family: 'Heebo', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
    padding-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.3;
    text-align: center;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.booking-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4, #0284c7);
    border-radius: 4px;
}

.booking-card-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    line-height: 1.55;
    text-align: center;
}

/* ── Trip Selection ── */
.trip-selection {
    display: flex;
    gap: 24px;
    margin: 0 0 48px;
}

.trip-btn {
    flex: 1;
    min-width: 0;
    min-height: 200px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 40px 28px;
    color: white;
    cursor: pointer;
    font-family: 'Heebo', sans-serif;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: all 0.25s ease;
    overflow: visible;
    position: relative;
}

.trip-btn:focus { outline: none; }

.trip-btn:hover {
    background: rgba(99,102,241,0.3);
    border-color: #6366f1;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 60px rgba(99,102,241,0.4);
}

.trip-btn.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: transparent;
    box-shadow: 0 16px 48px rgba(99,102,241,0.5);
    transform: scale(1.05);
}

/* Icon area — circle (על רקע זכוכית) */
.trip-btn-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    flex-shrink: 0;
    transition: background .25s, border-color .25s;
}

.trip-btn:hover .trip-btn-icon-wrap {
    background: rgba(255,255,255,0.15);
}

.trip-btn.active .trip-btn-icon-wrap {
    background: rgba(255,255,255,0.2);
}

.trip-btn-svg {
    width: 36px;
    height: 36px;
    color: rgba(255,255,255,0.95);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), color .3s;
    stroke-width: 1.8;
}

.trip-btn:hover .trip-btn-svg,
.trip-btn.active .trip-btn-svg {
    transform: scale(1.05);
    color: #ffffff;
}

/* Text info */
.trip-btn-info {
    padding: 14px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

/* Badge (ברוכים הבאים / חיסכון 5% וכו') */
.trip-btn-msg {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: white;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 6px;
    line-height: 1.3;
}

.trip-btn-text {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1.35;
    text-align: center;
}

.trip-btn-sub {
    display: block;
    font-size: .78rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    text-align: center;
    margin-top: 2px;
    line-height: 1.3;
}

/* Select / arrow CTA — visible on hover */
.trip-btn-select {
    display: block;
    margin-top: auto;
    padding: 12px 16px 0;
    font-size: .85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-align: center;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .3s ease, transform .3s ease, color .25s;
}

.trip-btn:hover .trip-btn-select,
.trip-btn.active .trip-btn-select {
    opacity: 1;
    transform: translateY(0);
    color: #ffffff;
}

/* ── Booking form: wizard steps, inputs, labels, continue button ── */
@keyframes stepPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(108,99,255,0.45); }
    50% { box-shadow: 0 0 0 12px rgba(108,99,255,0); }
}

.main-booking-card .wizard-step-indicator .step-circle {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
    font-weight: 800;
    border-width: 2.5px;
}

.main-booking-card .wizard-step-indicator .step-label {
    font-size: 0.85rem;
    font-weight: 700;
}

.main-booking-card .wizard-step-indicator.active .step-circle {
    background: linear-gradient(135deg, #6C63FF 0%, #48CAE4 100%);
    border-color: #6C63FF;
    color: white;
    animation: stepPulse 2s ease-in-out infinite;
}

.main-booking-card .wizard-step-indicator.active .step-label {
    color: #6C63FF;
    font-weight: 800;
}

.main-booking-card .wizard-steps::before,
.main-booking-card .wizard-step-indicator::before {
    top: 26px;
}

.main-booking-card input[type="text"],
.main-booking-card input[type="email"],
.main-booking-card input[type="tel"],
.main-booking-card select {
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    padding: 14px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.main-booking-card input[type="text"]:focus,
.main-booking-card input[type="email"]:focus,
.main-booking-card input[type="tel"]:focus,
.main-booking-card select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
}

.main-booking-card input::placeholder {
    color: #94a3b8;
    text-align: right;
}

/* RTL: יישור טקסט ושדות בכרטיס ההזמנה */
html[dir="rtl"] .main-booking-card input[type="text"],
html[dir="rtl"] .main-booking-card input[type="email"],
html[dir="rtl"] .main-booking-card input[type="tel"],
html[dir="rtl"] .main-booking-card select {
    text-align: right;
}

/* תצוגת מוצא/כתובת (לשדה התעופה) – נראית כמו שדה, יישור RTL */
.address-display-rtl,
#pickupAddressDisplay {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    color: #1e293b;
    font-size: 0.94rem;
    min-height: 48px;
    box-sizing: border-box;
}
html[dir="rtl"] .address-display-rtl,
html[dir="rtl"] #pickupAddressDisplay {
    flex-direction: row-reverse;
    text-align: right;
}
.address-display-rtl i,
#pickupAddressDisplay i {
    color: #6C63FF;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* RTL: אייקון לוח שנה בצד ימין */
html[dir="rtl"] .date-time-input {
    background-position: right 14px center;
    padding-right: 42px;
    padding-left: 16px;
}

.main-booking-card .field-label {
    font-size: 0.85rem;
    color: #64748B;
    font-weight: 600;
    text-align: right;
    justify-content: flex-end;
}
html[dir="rtl"] .main-booking-card .field-label {
    flex-direction: row-reverse;
}

.main-booking-card .field-label i {
    color: #6C63FF;
}

/* כותרת שלב (פרטי הנסיעה וכו') – RTL: טקסט ימין, אייקון משמאל */
.main-booking-card .step-heading {
    text-align: right;
}
/* כותרת סיכום ומחיר – ממורכזת */
.main-booking-card .step-heading-summary {
    text-align: center;
    justify-content: center;
}
html[dir="rtl"] .main-booking-card .step-heading {
    flex-direction: row-reverse;
}

/* מרווחים נוחים בכרטיס פרטי הנסיעה */
.main-booking-card .wizard-step {
    padding-top: 4px;
}
.main-booking-card .booking-body .form-group {
    margin-bottom: 22px;
}

/* רוחב שדות נוח: מספר נוסעים, מזוודות, מושבי בטיחות */
.main-booking-card #passengers {
    max-width: 140px;
    width: 100%;
}
.main-booking-card .extras-section {
    justify-content: flex-start;
}
.main-booking-card .extra-item {
    flex: 0 0 auto;
    max-width: 260px;
}

.main-booking-card .btn-row .btn:not(.btn-secondary) {
    flex: 1 1 auto;
    min-width: 0;
    background: linear-gradient(135deg, #6C63FF 0%, #48CAE4 100%);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    padding: 16px 24px;
    border: none;
    color: white;
    box-shadow: 0 4px 20px rgba(108,99,255,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.main-booking-card .btn-row .btn:not(.btn-secondary):hover {
    box-shadow: 0 8px 28px rgba(108,99,255,0.45);
    transform: translateY(-2px);
}

/* Main CTA (סיים הזמנה) at bottom of booking form */
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(99,102,241,0.4), 0 0 0 0 rgba(56,189,248,0.3); }
    50% { box-shadow: 0 6px 28px rgba(99,102,241,0.5), 0 0 0 8px rgba(56,189,248,0); }
}

#submitBookingBtn {
    width: 100%;
    background: linear-gradient(135deg, #6366F1, #38BDF8) !important;
    border: none;
    border-radius: 14px;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    transition: filter 0.2s ease, transform 0.2s ease;
    animation: ctaPulse 2s ease-in-out infinite;
}

#submitBookingBtn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* ── Features Bar (standalone section) ── */
.features-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px 40px;
    padding: 20px 32px;
    margin: 32px 0 0;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    border-radius: 20px;
}

.features-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.features-bar-item i {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* ── Trust Bar (standalone section) ── */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px 32px;
    padding: 20px 32px;
    margin: 16px 0 0;
    background: linear-gradient(135deg, #f0f9ff, #ecfeff);
    border: 1.5px solid #bae6fd;
    color: rgba(255,255,255,0.7);
    border-radius: 20px;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-bar-stars-icon {
    color: #f59e0b;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.trust-bar-stars-text {
    font-size: .95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.trust-bar-divider {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.2);
}

.trust-bar-payments-label {
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.trust-bar-payment-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-bar-payment-icons i {
    font-size: 1.6rem;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity .2s;
}

.trust-bar-payment-icons i:hover {
    opacity: 1;
}

.trust-bar-link {
    background: none;
    border: none;
    padding: 0;
    font-size: .9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    text-decoration: underline;
    font-family: inherit;
}
.trust-bar-link:hover { color: #fff; }

/* ── Floating WhatsApp ── */
@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, .5); }
    50% { box-shadow: 0 4px 28px rgba(37, 211, 102, .7), 0 0 0 8px rgba(37, 211, 102, .15); }
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
    z-index: 9999;
    transition: transform .25s ease, box-shadow .25s ease;
    animation: whatsapp-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, .6);
    color: #fff;
    animation: none;
}

.whatsapp-float i {
    font-size: 1.75rem;
}

html[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 24px;
}

/* ── נגישות (חוק שוויון זכויות – ישראל) ── */
.skip-to-main {
    position: absolute;
    top: -100px;
    left: 12px;
    padding: 12px 20px;
    background: #1e293b;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    z-index: 10000;
    transition: top .2s ease;
}
.skip-to-main:focus {
    top: 12px;
    outline: 3px solid #6366f1;
    outline-offset: 2px;
}
html[dir="rtl"] .skip-to-main { left: auto; right: 12px; }

.a11y-fab {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(99,102,241,0.4);
    cursor: pointer;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, box-shadow .2s ease;
}
.a11y-fab:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(99,102,241,0.5); }
.a11y-fab i { font-size: 1.5rem; }
html[dir="rtl"] .a11y-fab { left: auto; right: 24px; }

.a11y-modal-content .a11y-intro { margin-bottom: 16px; color: var(--text-muted); font-size: 0.95rem; }
.a11y-controls { margin: 20px 0 24px; }
.a11y-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; margin-bottom: 14px; }
.a11y-label { font-weight: 600; color: var(--text); min-width: 120px; }
.a11y-btn { padding: 8px 14px; border-radius: 10px; border: 1.5px solid var(--border); background: var(--surface); color: var(--text); font-weight: 600; cursor: pointer; transition: all .2s; }
.a11y-btn:hover { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }
.a11y-btn.a11y-toggle.on { border-color: var(--primary); background: var(--primary); color: #fff; }
.a11y-btn.a11y-toggle.on[data-he] { font-weight: 700; }

/* מצבי נגישות על body */
body.a11y-smaller-text { font-size: 0.95rem; }
body.a11y-large-text { font-size: 1.1rem; }
body.a11y-large-text .booking-card-title { font-size: 1.15em; }
body.a11y-larger-text { font-size: 1.2rem; }
body.a11y-larger-text .booking-card-title { font-size: 1.25em; }
body.a11y-high-contrast,
body.a11y-high-contrast .main-content-section { background: #0a0a0f; }
body.a11y-high-contrast .feature-card,
body.a11y-high-contrast .trip-btn { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.12); }
body.a11y-highlight-links a:not(.skip-to-main):not(.a11y-fab) { text-decoration: underline; outline: 2px solid #6366f1; outline-offset: 2px; }
body.a11y-reduce-motion *,
body.a11y-reduce-motion *::before,
body.a11y-reduce-motion *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
body.a11y-reduce-motion .bg-dots { animation: none; }

/* ── מדיניות פרטיות (חוק הגנת הפרטיות) ── */
.privacy-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9997;
    background: linear-gradient(180deg, rgba(15,23,42,0.98), #0f172a);
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 20px 24px 24px;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
}

.privacy-consent-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
}

.privacy-consent-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    width: 100%;
}

.privacy-consent-desc {
    flex: 1;
    min-width: 200px;
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

.privacy-link {
    background: none;
    border: none;
    color: #93c5fd;
    text-decoration: underline;
    cursor: pointer;
    font-size: inherit;
    padding: 0;
}

.privacy-link:hover { color: #c7d2fe; }

.privacy-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.privacy-modal-content {
    max-width: 560px;
}

.privacy-modal-content h2 { font-size: 1.35rem; margin-bottom: 16px; }
.privacy-policy-body { margin-bottom: 20px; }
.privacy-policy-body p { margin-bottom: 12px; font-size: 0.95rem; line-height: 1.55; color: var(--text); }
.privacy-policy-body strong { color: var(--text); }

/* ── כרטיסי טופס נסיעה (הלוך/חזור) ── */
.trip-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.trip-form-card {
    width: 100%;
    min-width: 0;
    max-width: none;
    flex-shrink: 1;
    background: rgba(255,255,255,0.97);
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* גוון עדין שונה בין כרטיס הלוך לכרטיס חזור – לא בולט */
.trip-cards-wrapper .card-outbound {
    background: rgba(255,252,248,0.98);
}
.trip-cards-wrapper .card-return {
    background: rgba(248,251,255,0.98);
}

.trip-form-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.3);
}

.trip-form-card .card-header {
    padding: 32px 32px 16px 32px;
    border-bottom: 1px solid #E2E8F0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.card-outbound .card-icon-wrap {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.card-outbound .card-title { color: #1E293B; }

.card-outbound .card-badge {
    background: #eff6ff;
    color: #3b82f6;
}

.card-return .card-icon-wrap {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.card-return .card-title { color: #1E293B; }

.card-return .card-badge {
    background: #ecfdf5;
    color: #059669;
}

.trip-form-card .card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1E293B;
    letter-spacing: -0.3px;
}

.card-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.trip-form-card .card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.trip-form-card .card-body .form-group {
    margin-bottom: 0;
}

.trip-form-card .card-body .field-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
}

.field-label-icon {
    width: 22px;
    height: 22px;
    background: #f1f5f9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.trip-form-card .card-body input[type="text"],
.trip-form-card .card-body .field-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #CBD5E1;
    border-radius: 12px;
    font-size: 1rem;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.2s;
    outline: none;
    margin-bottom: 16px;
}

.trip-form-card .card-body input[type="text"]:focus,
.trip-form-card .card-body .field-input:focus {
    border-color: #6366F1;
    background: white;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.add-stop-btn,
#addRoundExtraStopButton1,
#addRoundExtraStopButton2 {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1.5px dashed #818CF8;
    border-radius: 10px;
    color: #6366F1;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin: 8px 0 16px 0;
}

.add-stop-btn:hover,
#addRoundExtraStopButton1:hover,
#addRoundExtraStopButton2:hover {
    background: rgba(99,102,241,0.06);
    border-color: #6366F1;
}

/* תחנות נוספות – מניעת בריחת שדה מתוך הכרטיס; השלמת כתובות בכל תחנה */
.trip-form-card .additional-stops {
    min-width: 0;
    overflow: visible;
}
.trip-form-card .stop-item {
    min-width: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.trip-form-card .stop-item .additional-stop-input-wrap {
    flex: 1;
    min-width: 0;
    min-height: 48px;
    overflow: visible;
    display: flex;
    position: relative;
    z-index: 2;
}
.trip-form-card .stop-item .additional-stop-input-wrap gmp-place-autocomplete {
    flex: 1;
    min-width: 0;
    width: 100%;
    min-height: 48px;
    height: 48px;
    max-width: 100%;
    display: block;
}
.trip-form-card .stop-item .additional-stop-input {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}
.trip-form-card .stop-item gmp-place-autocomplete {
    flex: 1;
    min-width: 0;
    max-width: 100%;
}

/* גם לנסיעה רגילה – תחנות נוספות עם wrapper */
.stop-item .additional-stop-input-wrap {
    flex: 1;
    min-width: 0;
    min-height: 48px;
    overflow: visible;
    display: flex;
    position: relative;
    z-index: 2;
}
.stop-item .additional-stop-input-wrap gmp-place-autocomplete {
    flex: 1;
    min-width: 0;
    width: 100%;
    min-height: 48px;
    height: 48px;
    max-width: 100%;
    display: block;
}

/* שדה חובה – כוכבית; לינק ללוח טיסות */
.required-star {
    color: #ef4444;
    font-weight: 700;
}
.flight-board-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.75rem;
    color: #6366F1;
    text-decoration: none;
}
.flight-board-link:hover {
    text-decoration: underline;
    color: #4F46E5;
}

/* אזור בין כרטיסי הלוך/חזור: עיגול + כפתורי העתק/החלף */
.cards-between-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.cards-between-actions .cards-divider {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}
.round-trip-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 140px;
}

.cards-divider {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #6366F1, #38BDF8);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(99,102,241,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
}

html[dir="rtl"] .cards-divider { left: auto; right: auto; }

.counter-row {
    display: flex;
    align-items: center;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
}

.counter-btn {
    width: 40px;
    height: 44px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: #3b82f6;
    cursor: pointer;
}

.counter-btn:hover { background: #eff6ff; }

.counter-val {
    flex: 1;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
}

.cta-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border: none;
    border-radius: 18px;
    color: white;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(14,165,233,0.45);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(14,165,233,0.55);
}

.round-trip-forms {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
}

/* כותרת "נסיעת הלוך ושוב" ממורכזת בשורה */
.round-trip-header-row .booking-title-centered {
    flex: 1;
    justify-content: center;
    text-align: center;
}

/* נסיעת הלוך־חזור: כותרת "נוסעים ומטען" במרכז, שדה מספר נוסעים קומפקטי */
.round-trip-shared .step-heading-round-shared {
    text-align: center;
    justify-content: center;
}
.round-trip-shared .form-group-passengers select#roundPassengers {
    max-width: 100px;
    width: 100%;
    padding: 10px 14px;
    font-size: 1rem;
    box-sizing: border-box;
}

/* ── תאריכון: רוחב שדות נוח (תאריך, שעה, דקות) ── */
#datetimePickerModal #datePicker {
    max-width: 260px;
    width: 100%;
}
#datetimePickerModal .datetime-time-row {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    justify-content: flex-start;
}
#datetimePickerModal .datetime-time-field {
    flex: 0 0 auto;
}
#datetimePickerModal #hourPicker,
#datetimePickerModal #minutePicker {
    width: 88px;
    min-width: 88px;
    box-sizing: border-box;
}

/* הדגשה בכרטיס חזור אחרי העתקת כתובות */
.round-fill-hint {
    background: linear-gradient(135deg, #EFF6FF 0%, #E0F2FE 100%);
    border: 1.5px solid #93C5FD;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1E40AF;
}
.round-fill-hint i {
    margin-left: 8px;
    color: #2563EB;
}

@media (max-width: 768px) {
    .trip-cards-wrapper { grid-template-columns: 1fr; }
    .cards-divider { display: none; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .features-section { flex-wrap: wrap; gap: 16px; }
    .features-section .feature-card { flex: 1 1 calc(50% - 8px); min-width: 240px; }
    .trip-selection { flex-wrap: wrap; gap: 16px; }
    .trip-btn { flex: 1 1 calc(50% - 8px); min-width: 200px; min-height: 180px; }
    .trip-btn-svg { width: 34px; height: 34px; }
    .main-booking-card { padding: 48px 28px 56px; }
}

@media (max-width: 640px) {
    .features-section { flex-direction: column; gap: 12px; }
    .features-section .feature-card { flex: none; min-width: 0; }
    .trip-selection { flex-direction: column; gap: 12px; }
    .trip-btn { flex: none; min-width: 0; flex-direction: row; border-radius: 20px; min-height: 120px; }
    .trip-btn-icon-wrap {
        width: 80px;
        height: 80px;
        margin: 0 16px 0 0;
        flex-shrink: 0;
    }
    html[dir="rtl"] .trip-btn-icon-wrap {
        margin: 0 0 0 16px;
    }
    .trip-btn-svg { width: 32px; height: 32px; }
    .trip-btn-info { padding: 14px 12px; align-items: flex-start; }
    .trip-btn-text { font-size: .92rem; }
    .main-booking-card { padding: 48px 24px 56px; }
    .features-bar { flex-direction: column; gap: 12px; padding: 16px 20px 20px; }
    .trust-bar { flex-direction: column; gap: 16px; padding: 20px 0 28px; }
    .trust-bar-divider { width: 40px; height: 1px; }
    .whatsapp-float { width: 52px; height: 52px; right: 20px; bottom: 20px; }
    .whatsapp-float i { font-size: 1.6rem; }
    html[dir="rtl"] .whatsapp-float { left: 20px; }
    .booking-card-title { font-size: 1.6rem; line-height: 1.35; }
    .booking-card-subtitle { font-size: .94rem; }
    .hero-section { min-height: 55vh; }
    .hero-title { font-size: clamp(1.6rem, 5.5vw, 2.5rem); }
    .hero-logo { top: 12px; right: 12px; max-width: 110px; }
    .hero-lang-toggle { top: 12px; left: 12px; }
    .hero-lang-toggle .lang-toggle { padding: 7px 14px; font-size: 12px; }
    .hero-content { padding: 50px 16px 70px; max-width: 100%; }
    .hero-subtitle { font-size: .9rem; }
    .hero-cta-button { padding: 16px 40px; font-size: 1rem; }
}

@media (max-width: 400px) {
    .hero-section { min-height: 50vh; }
    .hero-logo { max-width: 90px; }
    .hero-title { font-size: clamp(1.4rem, 7vw, 1.9rem); }
}
