/* ============================================================
   Sheregesh.help — единый файл стилей
   ============================================================ */

:root {
    --background: 210 100% 98%;
    --foreground: 215 25% 15%;
    --card: 0 0% 100%;
    --card-foreground: 215 25% 15%;
    --primary: 210 85% 45%;
    --primary-foreground: 0 0% 100%;
    --secondary: 210 25% 92%;
    --secondary-foreground: 215 25% 15%;
    --muted: 210 25% 92%;
    --muted-foreground: 215 15% 45%;
    --accent: 25 95% 55%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 100%;
    --border: 210 25% 85%;
    --input: 210 25% 85%;
    --ring: 210 85% 45%;
    --radius: .75rem;
    --shadow-soft: 0 4px 20px -2px hsl(210 85% 45% / .15);
    --shadow-card: 0 10px 40px -10px hsl(210 85% 45% / .2);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    border-color: hsl(var(--border));
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: 16px;
}

.section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: hsl(var(--background));
}

.section--muted {
    background-color: hsl(var(--muted) / .3);
}

.section-head {
    text-align: center;
    margin-bottom: 64px;
}

.section-head--sm {
    margin-bottom: 48px;
}

.section-title {
    font-size: 2.25rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    max-width: 672px;
    margin-inline: auto;
}

/* ---------- Grids ---------- */
.grid-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.grid-fleet {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.grid-testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1280px;
    margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: #fff;
    backdrop-filter: blur(4px);
    border-bottom: 1px solid hsl(var(--border));
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.brand {
    display: flex;
    align-items: center;
    transition: opacity .2s;
}

.brand:hover {
    opacity: .9;
}

.brand img {
    height: 40px;
}

.brand-logo {
    display: block;
    height: 40px;
    width: auto;
    transition: opacity .2s;
}

.brand:hover .brand-logo {
    opacity: .85;
}

.nav {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: hsl(var(--foreground));
    transition: color .2s;
}

.nav-link:hover {
    color: hsl(var(--primary));
}

.nav-link.is-active {
    color: hsl(var(--primary));
    font-weight: 600;
}

.header-cta {
    display: none;
}

.mobile-toggle {
    display: inline-flex;
    background: none;
    border: none;
    color: hsl(var(--foreground));
    font-size: 24px;
    line-height: 1;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-bottom: 1px solid hsl(var(--border));
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1);
    z-index: 50;
    display: none;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu__inner {
    padding-block: 12px;
}

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu__links a {
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
    color: hsl(var(--foreground));
    transition: color .2s;
}

.mobile-menu__links a:hover {
    color: hsl(var(--primary));
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    transition: background-color .2s, color .2s, border-color .2s, box-shadow .2s;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
    background-color: hsl(var(--primary) / .9);
}

.btn-secondary {
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    border-color: hsl(var(--border));
}

.btn-secondary:hover {
    background-color: hsl(var(--secondary) / .8);
}

.btn-lg {
    height: 44px;
    padding-inline: 32px;
}

.btn-block {
    width: 100%;
}

.btn i {
    font-size: 16px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(21, 47, 89, .7), rgba(21, 47, 89, .85)), url('/assets/hero-mountains-zOpNzXMq.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-block: 32px;
    width: 100%;
}

.hero-inner {
    max-width: 896px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: hsl(var(--accent));
}

.hero-badge span {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(var(--primary-foreground));
    line-height: 1.2;
}

.hero-text {
    font-size: 1rem;
    color: hsl(var(--primary-foreground) / .9);
    max-width: 672px;
    margin-inline: auto;
}

/* ---------- Booking form ---------- */
.booking-card {
    max-width: 672px;
    margin-inline: auto;
    background-color: hsl(var(--background) / .95);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.form-field {
    position: relative;
}

.form-field__icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(var(--muted-foreground));
    pointer-events: none;
}

.form-control {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    padding: 8px 12px 8px 40px;
    border-radius: 6px;
    border: 1px solid hsl(var(--input));
    background-color: hsl(var(--background));
    font-size: 14px;
    color: hsl(var(--foreground));
    transition: box-shadow .2s, border-color .2s, background-color .2s;
}

.form-control:hover {
    background-color: hsl(var(--accent) / .05);
}

.form-control:focus {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 3px hsl(var(--ring) / .2);
}

.form-control--readonly {
    cursor: pointer;
}

select.form-control {
    appearance: auto;
}

/* ---------- Hero stats ---------- */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 672px;
    margin-inline: auto;
    padding-top: 16px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--accent));
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: hsl(var(--primary-foreground) / .8);
}

/* ---------- Feature cards ---------- */
.feature-card {
    border-radius: 8px;
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--card));
    color: hsl(var(--card-foreground));
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    transition: box-shadow .2s;
}

.feature-card:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1);
}

.feature-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    padding: 12px;
    background-color: hsl(var(--primary) / .1);
    border-radius: 8px;
}

.feature-icon i {
    font-size: 24px;
    width: 24px;
    text-align: center;
    color: hsl(var(--primary));
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-text {
    color: hsl(var(--muted-foreground));
}

/* ---------- Car cards ---------- */
.car-card {
    border-radius: 8px;
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--card));
    color: hsl(var(--card-foreground));
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
}

.car-card:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1);
}

.car-media {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.car-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.car-card:hover .car-media img {
    transform: scale(1.05);
}

.car-body {
    padding: 16px 24px 24px;
    flex: 1;
}

.car-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.car-capacity {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: hsl(var(--muted-foreground));
}

.car-capacity i {
    font-size: 16px;
}

.car-footer {
    padding: 0 24px 24px;
}

/* ---------- Badges ---------- */
.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 600;
}

.badge--economy {
    background-color: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
}

.badge--comfort {
    background-color: hsl(var(--primary) / .1);
    color: hsl(var(--primary));
}

.badge--group {
    background-color: hsl(var(--accent) / .1);
    color: hsl(var(--accent));
}

/* ---------- Narrow wrappers ---------- */
.narrow {
    max-width: 896px;
    margin-inline: auto;
}

.narrow--sm {
    max-width: 768px;
    margin-inline: auto;
}

/* ---------- Panels / steps ---------- */
.panel {
    background-color: hsl(var(--card));
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1);
}

.panel--spaced {
    margin-bottom: 32px;
}

.panel--primary {
    background-color: hsl(var(--primary) / .05);
    border: 1px solid hsl(var(--primary) / .2);
    box-shadow: none;
}

.panel-lead {
    color: hsl(var(--muted-foreground));
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.panel-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.panel-title i {
    color: hsl(var(--primary));
}

.panel-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

.info-item {
    display: flex;
    gap: 16px;
}

.info-item__icon {
    flex-shrink: 0;
    padding: 12px;
    background-color: hsl(var(--primary) / .1);
    border-radius: 8px;
    height: fit-content;
}

.info-item__icon i {
    font-size: 24px;
    color: hsl(var(--primary));
}

.info-item h4 {
    font-weight: 600;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 14px;
    color: hsl(var(--muted-foreground));
}

.steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.steps li {
    display: flex;
    gap: 16px;
}

.step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-title {
    font-weight: 500;
}

.step-text {
    font-size: 14px;
    color: hsl(var(--muted-foreground));
}

/* ---------- Testimonials ---------- */
.testimonial-card {
    border-radius: 8px;
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--card));
    color: hsl(var(--card-foreground));
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    transition: box-shadow .2s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1);
}

.testimonial-card__body {
    padding: 24px;
}

.testimonial-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: hsl(var(--primary) / .1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: hsl(var(--primary));
}

.testimonial-name {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-city {
    font-size: 14px;
    color: hsl(var(--muted-foreground));
}

.stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    color: #f5b301;
}

.stars i {
    font-size: 16px;
}

.testimonial-text {
    color: hsl(var(--muted-foreground));
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.testimonial-date {
    font-size: 12px;
    color: hsl(var(--muted-foreground) / .6);
}

/* ---------- Accordion ---------- */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 8px;
    padding-inline: 24px;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
}

.accordion-trigger {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding-block: 20px;
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.accordion-trigger .chevron {
    flex-shrink: 0;
    transition: transform .2s;
}

.accordion-item.open .accordion-trigger .chevron {
    transform: rotate(180deg);
}

.accordion-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height .2s ease;
}

.accordion-item.open .accordion-content {
    max-height: 500px;
}

.accordion-content__inner {
    padding-bottom: 16px;
    color: hsl(var(--muted-foreground));
    font-size: 14px;
}

.accordion-content__inner p {
    margin-bottom: 4px;
}

/* ---------- CTA card ---------- */
.cta-card {
    margin-top: 48px;
    text-align: center;
    background-color: hsl(var(--card));
    border-radius: 8px;
    padding: 32px;
    border: 1px solid hsl(var(--border));
}

.cta-card p {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.cta-card .muted {
    color: hsl(var(--muted-foreground));
    margin-bottom: 24px;
}

/* ---------- Prose ---------- */
.prose {
    max-width: 896px;
    margin-inline: auto;
}

.prose h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.prose h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
}

.prose p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 16px;
}

.prose ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 16px;
}

.prose ul li {
    margin-bottom: 8px;
}

.prose-final {
    margin-top: 24px;
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: hsl(var(--card));
    border-top: 1px solid hsl(var(--border));
}

.site-footer__inner {
    padding-block: 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.footer-brand h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.brand--footer {
    display: inline-flex;
    margin-bottom: 16px;
}

.brand-logo--footer {
    height: 44px;
}

.footer-brand p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 16px;
}

.footer-brand .muted-sm {
    font-size: 14px;
    color: hsl(var(--muted-foreground));
}

.footer-col h4 {
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: hsl(var(--muted-foreground));
    transition: color .2s;
}

.footer-links a:hover {
    color: hsl(var(--primary));
}

.footer-links i {
    font-size: 16px;
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: hsl(var(--muted-foreground));
}

.footer-contact i {
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact .small {
    font-size: 14px;
}

.footer-route {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: hsl(var(--muted-foreground));
}

.footer-route .arrow {
    font-size: 1.5rem;
    line-height: 1;
}

.footer-route-stats {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid hsl(var(--border));
    margin-top: 32px;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: hsl(var(--muted-foreground));
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer-legal a {
    transition: color .2s;
}

.footer-legal a:hover {
    color: hsl(var(--primary));
}

/* ---------- Scroll top ---------- */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s;
    z-index: 50;
}

.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    transform: scale(1.1);
}

/* ---------- Modal ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-overlay.open {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    max-width: 500px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.modal-body {
    font-size: 15px;
    line-height: 1.5;
}

/* ---------- Inner page: page hero / content ---------- */
.page-hero {
    padding-top: 64px;
    background-color: hsl(var(--background));
}

.page-hero__inner {
    text-align: center;
    max-width: 896px;
    margin-inline: auto;
    padding-block: 48px 24px;
}

.page-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.page-lead {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.content {
    max-width: 896px;
    margin-inline: auto;
    padding-block: 48px 80px;
}

.content__section {
    margin-bottom: 48px;
}

/* Inner-page article content (housing / avia / tours / legal) */
.content h2 {
    color: #1a365d;
    font-size: 1.875rem;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.content h3 {
    color: #2d3748;
    font-size: 1.375rem;
    margin: 25px 0 15px;
}

.content p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 16px;
    line-height: 1.7;
}

.content ul,
.content ol {
    margin: 0 0 16px;
    padding-left: 1.5rem;
    color: hsl(var(--muted-foreground));
}

.content ul li,
.content ol li {
    margin-bottom: 8px;
}

.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.content th,
.content td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.content th {
    background-color: #edf2f7;
    font-weight: 600;
    color: #2d3748;
}

.content tr:last-child td {
    border-bottom: none;
}

.pros-cons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.pros,
.cons {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    border-radius: 10px;
}

.pros {
    background-color: #f0fff4;
    border: 1px solid #9ae6b4;
}

.cons {
    background-color: #fff5f5;
    border: 1px solid #fc8181;
}

.pros h4,
.cons h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pros h4 {
    color: #276749;
}

.cons h4 {
    color: #c53030;
}

.highlight {
    background: linear-gradient(120deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px solid #90caf9;
}

.highlight h4 {
    margin-bottom: 8px;
}

.tip {
    background-color: #fff8e1;
    border-left: 4px solid #ffb300;
    padding: 18px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tip i {
    color: #ffb300;
    font-size: 1.2rem;
    margin-top: 3px;
}

.card {
    margin: 20px 0;
}

.card h3 {
    color: #2d3748;
    font-size: 1.375rem;
    margin: 0 0 15px;
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .brand img {
        height: 48px;
    }

    .brand-logo {
        height: 48px;
    }

    .header-cta {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-text {
        font-size: 1.125rem;
    }

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

    .booking-card {
        padding: 24px;
    }

    .section-title {
        font-size: 3rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .stat-value {
        font-size: 1.875rem;
    }

    .stat-label {
        font-size: 14px;
    }

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

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

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

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

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

    .footer-bottom {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
    }

    .mobile-toggle {
        display: none;
    }

    .hero-title {
        font-size: 3.75rem;
    }

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

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

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

    .hero-stats {
        gap: 24px;
        padding-top: 24px;
    }
}

@media (min-width: 1280px) {
    .grid-fleet {
        grid-template-columns: repeat(4, 1fr);
    }
}
