/* Reset & base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Prompt", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0f172a;
    background-color: #f4f7fb;
}

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

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

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
}

.navbar {
    background: linear-gradient(90deg, #0ea5e9, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.25);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 1.5rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    overflow: hidden;
    background: #e0f2fe;
    border: 2px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text {
    font-size: 1rem;
    white-space: nowrap;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.navbar-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.9rem;
    opacity: 0.92;
    transition: background-color 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
}

.navbar-links a:hover {
    background-color: rgba(255, 255, 255, 0.16);
    opacity: 1;
    transform: translateY(-1px);
}

.navbar-links i {
    font-size: 0.9rem;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background-color: rgba(15, 23, 42, 0.18);
}

.language-switch a {
    padding: 0.1rem 0.25rem;
    border-radius: 0.75rem;
    opacity: 0.75;
}

.language-switch a.active {
    background-color: #ffffff;
    color: #0f172a;
    opacity: 1;
    font-weight: 600;
}

.navbar-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: none;
    background-color: rgba(15, 23, 42, 0.24);
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.navbar-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background-color: #e5f6ff;
}

/* Layout */
.page-content {
    padding-bottom: 3rem;
}

.hero {
    position: relative;
    min-height: 82vh;
    color: #e5f3ff;
    overflow: hidden;
}

.hero-with-image .hero-shell {
    position: relative;
    z-index: 1;
    padding: 4rem 0 4.5rem;
}

/* Hero slide countdown */
.hero-progress {
    position: absolute;
    right: 1.25rem;
    bottom: 1.15rem;
    left: auto;
    transform: none;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background:
        conic-gradient(#38bdf8 var(--hero-progress, 0%), rgba(255,255,255,0.16) 0);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(15,23,42,0.5);
    cursor: default;
}

.hero-progress-inner {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(2,6,23,0.86);
    color: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    inset: -16px;
    background-position: center;
    background-size: cover;
    filter: none;
    transform: scale(1.02);
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

.hero-bg-image.is-active {
    opacity: 1;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(15,23,42,0.75), rgba(15,23,42,0.96));
    mix-blend-mode: multiply;
}

.hero-inner-full {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-overlay {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.hero-text .eyebrow {
    font-size: clamp(0.75rem, 0.7rem + 0.3vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #7dd3fc;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.hero h1 {
    font-size: clamp(2.4rem, 2rem + 1.4vw, 4.75rem);
    line-height: 1.2;
    margin: 0 0 0.75rem;
    color: #f9fafb;
    text-shadow: 0 10px 25px rgba(15, 23, 42, 0.6);
}

.hero .subtitle {
    margin: 0 0 1.5rem;
    color: #e5f3ff;
    font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.35rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.hero-rotator {
    margin-bottom: 1.5rem;
    position: relative;
    min-height: 1.8rem;
}

.hero-rotator-item {
    position: absolute;
    left: 50%;
    top: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.6);
    backdrop-filter: blur(8px);
    color: #e0f2fe;
    font-size: clamp(0.85rem, 0.75rem + 0.35vw, 1.1rem);
    opacity: 0;
    transform: translate(-50%, 8px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-rotator-item i {
    font-size: 0.45rem;
    color: #38bdf8;
}

.hero-rotator-item.is-active {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* จอใหญ่: ขยายข้อความ Hero ตามความกว้างจอ */
@media (min-width: 1280px) {
    .hero-text-overlay {
        max-width: 800px;
    }
    .hero h1 {
        font-size: 3.25rem;
    }
    .hero .subtitle {
        font-size: 1.15rem;
    }
    .hero-text .eyebrow {
        font-size: 0.95rem;
    }
    .hero-rotator-item {
        font-size: 1rem;
    }
}

@media (min-width: 1600px) {
    .hero-text-overlay {
        max-width: 880px;
    }
    .hero h1 {
        font-size: 4rem;
    }
    .hero .subtitle {
        font-size: 1.25rem;
    }
    .hero-text .eyebrow {
        font-size: 1rem;
    }
    .hero-rotator-item {
        font-size: 1.05rem;
    }
    .hero-actions .btn {
        font-size: 0.98rem;
        padding: 0.6rem 1.25rem;
    }
}

@media (min-width: 1920px) {
    .hero-text-overlay {
        max-width: 960px;
    }
    .hero h1 {
        font-size: 4.5rem;
    }
    .hero .subtitle {
        font-size: 1.35rem;
    }
    .hero-text .eyebrow {
        font-size: 1.05rem;
    }
    .hero-rotator-item {
        font-size: 1.1rem;
    }
    .hero-actions .btn {
        font-size: 1rem;
        padding: 0.65rem 1.4rem;
    }
}

.section {
    padding: 3.25rem 0;
}

.section-alt {
    background-color: #e5f3ff;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header.left,
.section-header-left {
    text-align: left;
}

.section-header h2 {
    margin: 0 0 0.35rem;
    font-size: 1.6rem;
}

.section-header p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
}

/* Cars & drivers page */
.cars-hero {
    padding-top: 2.5rem;
}

.cars-hero .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cars-title {
    font-size: 2rem;
    margin-bottom: 0.2rem;
    display: block;
}

.cars-subtitle {
    max-width: 720px;
    margin: 0.25rem auto 0;
    font-size: 0.95rem;
    color: #475569;
    text-align: center;
}

.cars-list {
    margin-top: 2.5rem;
    display: grid;
    gap: 2.25rem;
}

.cars-profile {
    background-color: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    padding: 1.6rem 1.6rem 1.5rem;
}

.cars-profile-main {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr);
    gap: 1.75rem;
    align-items: flex-start;
}

.cars-gallery-main {
    border-radius: 1.2rem;
    overflow: hidden;
    background: #020617;
    position: relative;
    cursor: pointer;
    aspect-ratio: 16 / 10;
    min-height: 200px;
}

.cars-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cars-gallery-thumbs {
    margin-top: 0.7rem;
    display: flex;
    gap: 0.5rem;
}

.cars-thumb {
    flex: 1 1 0;
    border-radius: 0.9rem;
    overflow: hidden;
    background: #020617;
    position: relative;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, outline 0.18s ease;
}

.cars-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.cars-gallery-main::after {
    content: "\f002";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0.85rem;
    bottom: 0.8rem;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.75);
    color: #e5f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cars-gallery-main:hover img {
    transform: scale(1.06);
}

.cars-gallery-main:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.cars-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 0, rgba(255,255,255,0.16), transparent);
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: none;
}

.cars-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.25);
}

.cars-thumb:hover img {
    transform: scale(1.06);
}

.cars-thumb:hover::after {
    opacity: 1;
}

.cars-thumb.is-active {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

/* Lightbox: ดูรูปรถที่อัปโหลดแบบเต็มจอ */
.cars-image-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.cars-image-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.cars-image-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.88);
    cursor: pointer;
}

.cars-image-modal-inner {
    position: relative;
    z-index: 1;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 96vh;
    padding: 0;
}

/* ห่อเฉพาะขนาดรูปจริง — ปุ่มปิดจึงอยู่มุมขวาบนของรูป ไม่ชิดขอบจอ */
.cars-image-modal-frame {
    position: relative;
    display: inline-block;
    max-width: min(98vw, 1920px);
    max-height: 96vh;
    line-height: 0;
}

.cars-image-modal-img {
    display: block;
    max-width: min(98vw, 1920px);
    max-height: 96vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0.75rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.cars-image-modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: background 0.15s ease, transform 0.15s ease;
}

.cars-image-modal-close:hover {
    background: #f3f4f6;
    transform: scale(1.05);
}

.cars-copy h2 {
    margin: 0 0 0.4rem;
    font-size: 1.35rem;
    color: #111827;
}

.cars-intro {
    margin: 0 0 0.9rem;
    font-size: 0.95rem;
    color: #4b5563;
}

.cars-driver {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 0.9rem;
}

.cars-driver-photo {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    overflow: hidden;
    background: #020617;
}

.cars-driver-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cars-driver-name {
    font-weight: 600;
    font-size: 1rem;
}

.cars-driver-title {
    font-size: 0.9rem;
    color: #64748b;
}

.cars-driver-bio {
    margin: 0.35rem 0 0;
    font-size: 0.88rem;
    color: #4b5563;
}

.cars-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.cars-contact-primary {
    align-self: flex-start;
}

.cars-contact-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.cars-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    color: #ffffff;
}

.cars-chip.whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.cars-chip.line {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.cars-chip.facebook {
    background: #0f172a;
}

@media (max-width: 900px) {
    .cars-profile-main {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Reviews page */
.reviews-hero {
    padding-top: 2.5rem;
}

.reviews-hero .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-title {
    font-size: 2rem;
    margin-bottom: 0.2rem;
    display: block;
}

.reviews-subtitle {
    max-width: 720px;
    margin: 0.25rem auto 0;
    font-size: 0.95rem;
    color: #475569;
    text-align: center;
}

.reviews-marquee {
    margin-top: 2.5rem;
    overflow: visible;
}

.reviews-marquee.is-paused .review-float-inner {
    animation-play-state: paused;
}

.reviews-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
    width: 100%;
}

.review-float-card {
    min-width: 0;
    max-width: none;
    width: 100%;
    min-height: 100%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1200px) {
    .reviews-track {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .reviews-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .reviews-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 400px) {
    .reviews-track {
        grid-template-columns: minmax(0, 1fr);
    }
}

.review-float-inner {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 1.2rem 1.1rem 1rem;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 100%;
    gap: 0.55rem;
    transform: translateY(6px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* พื้นที่กลางยืดให้เต็มความสูงของแถว — ปุ่มชิดล่างเสมอ */
.review-float-main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-height: 3.25rem;
}

.review-float-card:nth-child(2n) .review-float-inner {
    animation: floatUpDown 5.4s ease-in-out infinite alternate;
}

.review-float-card:nth-child(2n+1) .review-float-inner {
    animation: floatUpDown 6.2s ease-in-out infinite alternate-reverse;
}

.review-float-card:hover .review-float-inner {
    transform: translateY(0);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.2);
}

.review-float-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.7rem;
    align-items: center;
}

.review-float-avatar {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    overflow: hidden;
    background: #020617;
}

.review-float-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0, #eff6ff, #1d4ed8);
    color: #ffffff;
}

.review-float-name {
    font-weight: 600;
    font-size: 0.98rem;
}

.review-float-role {
    font-size: 0.82rem;
    color: #94a3b8;
}

.review-float-stars {
    margin-top: 0.15rem;
    font-size: 0.8rem;
    color: #fbbf24;
}

.review-float-title {
    margin: 0.15rem 0 0.25rem;
    font-size: 0.98rem;
    color: #111827;
}

.review-float-snippet {
    margin: 0;
    font-size: 0.88rem;
    color: #4b5563;
    line-height: 1.45;
    flex: 1 1 auto;
    min-height: 0;
}

.review-float-more {
    margin-top: auto;
    align-self: flex-start;
    border: none;
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background-color: #e0f2fe;
    color: #0369a1;
    cursor: pointer;
}

.review-float-more i {
    font-size: 0.75rem;
}

.review-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 80;
}

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

.review-modal {
    width: 100%;
    max-width: 880px;
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.6);
    padding: 1.6rem 1.6rem 1.4rem;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 1.25rem;
    position: relative;
}

.review-modal-close {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: none;
    background: rgba(15,23,42,0.75);
    color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.review-modal-main {
    display: grid;
    gap: 0.8rem;
}

.review-modal-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
}

.review-modal-avatar {
    width: 70px;
    height: 70px;
    border-radius: 999px;
    overflow: hidden;
    background: #020617;
}

.review-modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-modal-name {
    font-weight: 600;
    font-size: 1.05rem;
}

.review-modal-role {
    font-size: 0.88rem;
    color: #94a3b8;
}

.review-modal-stars {
    margin-top: 0.15rem;
    font-size: 0.9rem;
    color: #fbbf24;
}

.review-modal-title {
    margin: 0.4rem 0 0.25rem;
    font-size: 1.1rem;
    color: #111827;
}

.review-modal-text {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
}

.review-modal-photos {
    display: grid;
    gap: 0.6rem;
}

.review-modal-photo {
    border-radius: 0.9rem;
    overflow: hidden;
    background: #020617;
}

.review-modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 800px) {
    .review-modal {
        grid-template-columns: minmax(0, 1fr);
        max-width: 95%;
    }
}

@keyframes floatUpDown {
    0% {
        transform: translateY(6px);
    }
    100% {
        transform: translateY(-6px);
    }
}

/* Quick booking section */
.quick-booking {
    background: radial-gradient(circle at top, #e0f2fe 0, #f9fafb 55%, #eef2ff 100%);
}

.quick-top {
    text-align: center;
}

.quick-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.8rem;
    border-radius: 1.2rem;
    background: radial-gradient(circle at 20% 0, #eff6ff, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.55);
    font-size: 1.4rem;
}

.quick-top h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}

.quick-desc {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.quick-card {
    position: relative;
}

.quick-card-inner {
    background-color: #ffffff;
    border-radius: 1.4rem;
    padding: 1.25rem 1.2rem 1.1rem;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
    display: grid;
    gap: 0.75rem;
    height: 100%;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.quick-card:hover .quick-card-inner {
    transform: translateY(-6px);
    box-shadow: 0 20px 52px rgba(15, 23, 42, 0.18);
}

.quick-footer {
    margin-top: 0.35rem;
    padding-top: 0.6rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.84rem;
}

.quick-footer-label {
    color: #6b7280;
}

.quick-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #ffffff;
    font-size: 0.82rem;
    text-decoration: none;
}

.quick-footer-cta i {
    font-size: 0.75rem;
}

.quick-footer-cta.is-whatsapp {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

.quick-footer-cta.is-whatsapp:hover {
    filter: brightness(1.05);
}

.quick-contact-pill {
    display: none;
}

.quick-contact-main {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pill-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, #eff6ff, #1d4ed8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
}

.pill-text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    font-size: 0.83rem;
}

.pill-label {
    color: #1d4ed8;
    font-weight: 600;
}

.pill-value {
    color: #0f172a;
}

.quick-contact-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.quick-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    color: #ffffff;
}

.quick-chip.whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.quick-chip.line {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.card-grid {
    display: grid;
    gap: 1.5rem;
}

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

.card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.3rem 1.3rem 1.1rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
}

.card p {
    margin: 0;
    font-size: 0.92rem;
    color: #64748b;
}

/* Hero stats strip */
.stats-strip {
    padding: 1.6rem 0 1.9rem;
    background: linear-gradient(90deg, #dbeafe, #fee2e2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.stat-card {
    text-align: center;
    padding: 0.6rem 0.8rem 0.4rem;
    position: relative;
}

.stat-value {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1d4ed8;
}

.stat-label {
    margin-top: 0.15rem;
    font-size: 0.85rem;
    color: #4b5563;
}

.stat-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    margin: 0 auto 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0, #eff6ff, #bfdbfe);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.35);
    color: #1d4ed8;
    font-size: 1rem;
}

.stat-card:hover .stat-icon {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.45);
}

.stat-card:hover .stat-value {
    transform: translateY(-1px);
}

.stat-icon,
.stat-value {
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 0.9rem;
    }
}

.review-card {
    position: relative;
}

.review-text {
    margin-bottom: 0.75rem;
}

.review-meta {
    font-size: 0.86rem;
    color: #475569;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.25rem;
    align-items: flex-start;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.4rem;
    font-size: 0.95rem;
}

.contact-list i {
    width: 1.25rem;
    color: #0ea5e9;
    margin-right: 0.4rem;
}

.contact-form {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.4rem 1.4rem 1.1rem;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.15);
    display: grid;
    gap: 0.85rem;
    font-size: 0.9rem;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-form input,
.contact-form textarea {
    border-radius: 0.9rem;
    border: 1px solid #e2e8f0;
    padding: 0.55rem 0.8rem;
    font: inherit;
    resize: vertical;
}

.contact-map-shell {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: radial-gradient(circle at top, #e0f2fe, #1d4ed8);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.35);
}

.contact-map-frame {
    position: relative;
    padding: 0.4rem;
    border-radius: inherit;
    background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.16), rgba(15, 23, 42, 0.85));
}

.contact-map-frame iframe {
    width: 100%;
    height: 340px;
    border-radius: 1.2rem;
}

.contact-map-glass {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 55%);
}

.contact-map-placeholder {
    padding: 2.2rem 1.8rem 2rem;
    display: grid;
    gap: 0.75rem;
    justify-items: center;
    text-align: center;
    color: #e5f3ff;
}

.contact-map-icon {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: radial-gradient(circle at 20% 0, #eff6ff, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.5);
}

.contact-map-placeholder p {
    margin: 0;
    max-width: 360px;
    font-size: 0.9rem;
}

.contact-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 1.5rem 1.5rem 1.3rem;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
    display: grid;
    gap: 0.9rem;
}

.contact-card-header {
    display: grid;
    gap: 0.5rem;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
}

.contact-chip.primary {
    background: radial-gradient(circle at 30% 0, #38bdf8, #1d4ed8);
    color: #e5f3ff;
}

.contact-tagline {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.contact-pill-group {
    display: grid;
    gap: 0.55rem;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: #ffffff;
    color: #000000;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.55);
}

.contact-pill.line {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.contact-pill.whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.contact-pill.email {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.55rem 1.2rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.45);
}

.btn-outline {
    background-color: #e0f2fe;
    color: #0369a1;
}

.btn-outline:hover {
    background-color: #bae6fd;
}

.btn-block {
    width: 100%;
}

.site-footer {
    border-top: 1px solid #e2e8f0;
    background-color: #ffffff;
    padding: 0.9rem 0;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

/* Vehicles section */
.vehicles-section {
    background-color: transparent;
}

.vehicle-carousel {
    position: relative;
    margin-top: 1rem;
    padding: 0 2.2rem;
}

.vehicle-viewport {
    overflow: hidden;
}

.vehicle-track {
    display: flex;
    gap: 1.5rem;
    scroll-behavior: smooth;
}

.vehicle-card {
    flex: 0 0 calc((100% - 4.5rem) / 4);
}

.vehicle-grid-static {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.vehicle-grid-static .vehicle-card {
    flex: initial;
}

.vehicle-card-inner {
    background-color: #ffffff;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vehicle-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.35s ease;
}

.vehicle-card-inner:hover .vehicle-image img {
    transform: scale(1.06);
}

.vehicle-body {
    padding: 1.1rem 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.vehicle-body h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #1d4ed8;
}

.vehicle-subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

.vehicle-seats {
    margin: 0.25rem 0 0;
    font-size: 0.86rem;
    color: #0f172a;
    font-weight: 500;
}

.vehicle-details {
    margin: 0;
    font-size: 0.86rem;
    color: #6b7280;
}

.vehicle-footer {
    margin-top: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.vehicle-cta {
    padding-inline: 1.3rem;
    font-size: 0.86rem;
}

.vehicle-icons {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
}

.vehicle-icons a {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #e5f3ff;
    color: #0369a1;
}

.vehicle-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.75);
    color: #e5f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.5);
    transition: background 0.15s ease, transform 0.12s ease;
}

.vehicle-nav:hover {
    background: rgba(15, 23, 42, 0.95);
    transform: translateY(-50%) translateY(-1px);
}

.vehicle-nav.prev {
    left: 0;
}

.vehicle-nav.next {
    right: 0;
}

/* Vehicle detail modal */
.vehicle-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 80;
}

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

.vehicle-modal {
    width: 100%;
    max-width: 720px;
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.55);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
}

.vehicle-modal-image {
    background-color: #020617;
}

.vehicle-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-modal-body {
    padding: 1.4rem 1.5rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.vehicle-modal-body h3 {
    margin: 0;
    font-size: 1.25rem;
}

.vehicle-modal-subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

.vehicle-modal-seats {
    margin: 0.2rem 0 0;
    font-size: 0.88rem;
    font-weight: 500;
    color: #0f172a;
}

.vehicle-modal-details {
    margin: 0.15rem 0 0.2rem;
    font-size: 0.88rem;
    color: #6b7280;
}

.vehicle-modal-contacts {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.vehicle-modal-contacts a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.82rem;
}

.vehicle-modal-contacts .phone {
    background: radial-gradient(circle at 30% 0, #38bdf8, #1d4ed8);
    color: #ffffff;
}

.vehicle-modal-contacts .whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
}

.vehicle-modal-contacts .line {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
}

.vehicle-modal-contacts .facebook {
    background: #0f172a;
    color: #e5f3ff;
}

.vehicle-modal-close {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: none;
    background: rgba(15,23,42,0.7);
    color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width: 800px) {
    .vehicle-modal {
        grid-template-columns: minmax(0, 1fr);
        max-width: 95%;
    }
    .vehicle-modal-image {
        max-height: 220px;
    }
}

/* Services section */
.services-section {
    background-color: #f9fafb;
}

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

.service-card {
    position: relative;
}

.service-card-inner {
    background-color: #ffffff;
    border-radius: 1.4rem;
    padding: 1.6rem 1.4rem 1.4rem;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    height: 100%;
    display: grid;
    gap: 0.55rem;
    transform: translateY(8px);
    opacity: 0;
}

.services-animate.services-visible .service-card-inner {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: radial-gradient(circle at 20% 0, #eff6ff, #1d4ed8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.service-card h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #111827;
}

.service-desc-main {
    margin: 0.25rem 0 0.4rem;
    font-size: 0.92rem;
    color: #4b5563;
}

.service-list {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.service-list li::marker {
    color: #2563eb;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Locations section */
.locations-section {
    background-color: #f9fafb;
}

.locations-shell {
    max-width: 880px;
    margin: 0 auto;
}

.locations-timeline {
    position: relative;
    padding-left: 1.8rem;
    display: grid;
    gap: 1.2rem;
}

.location-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 1.25rem;
}

.location-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: radial-gradient(circle at 20% 0, #eff6ff, #1d4ed8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.55);
    font-size: 1.05rem;
}

.location-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, rgba(148, 163, 184, 0.5), transparent);
    margin-top: 0.4rem;
}

.location-body {
    background-color: #ffffff;
    border-radius: 1.25rem;
    padding: 1.05rem 1.25rem 0.95rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 0.3rem;
}

.location-body h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #111827;
}

.location-address {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.location-meta {
    margin-top: 0.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.7rem;
    align-items: center;
    font-size: 0.85rem;
}

.location-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, #38bdf8, #1d4ed8);
    color: #ffffff;
}

.location-phone i {
    font-size: 0.8rem;
}

.location-note {
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background-color: #e0f2fe;
    color: #0369a1;
}

@media (max-width: 700px) {
    .locations-timeline {
        padding-left: 1.2rem;
        gap: 1rem;
    }

    .location-body {
        padding: 0.9rem 1rem 0.8rem;
    }
}

/* Floating contact button (bottom-left) */
.floating-contact {
    position: fixed;
    right: 1.4rem;
    bottom: 1rem;
    z-index: 60;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    font-family: "Prompt", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    gap: 0.5rem;
}

.floating-contact-toggle {
    border: none;
    padding: 0.45rem 0.9rem 0.45rem 0.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.4);
    font-size: 0.9rem;
    font-weight: 650;
    transform-origin: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.floating-contact-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.5);
}

.floating-contact-icon {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, #eff6ff, #1d4ed8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.floating-contact-wa-mark {
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: #ffffff;
    font-size: 0.62rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.25);
}

.floating-contact-label {
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.floating-contact-panel {
    margin-bottom: 0.4rem;
    padding: 0.6rem 0.65rem;
    border-radius: 1rem;
    background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.06), rgba(15,23,42,0.98));
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.7);
    display: grid;
    gap: 0.3rem;
    transform-origin: right bottom;
    transform: translateY(6px) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.2s ease;
}

.floating-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.36rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-family: "Prompt", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #e5f3ff;
    background: rgba(30, 64, 175, 0.75);
}

.floating-chip.primary {
    background: radial-gradient(circle at 30% 0, #38bdf8, #1d4ed8);
}

.floating-chip.primary.is-whatsapp-chip {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

.floating-chip.whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.floating-chip.line {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.floating-contact.is-open .floating-contact-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

@media (max-width: 600px) {
    .floating-contact {
        right: 1rem;
        bottom: 0.75rem;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .navbar-inner {
        height: auto;
        padding: 0.6rem 0;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        inset: 60px 0 auto;
        background: linear-gradient(180deg, #0f6bdc, #0ea5e9);
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem 1.5rem 1rem;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.18s ease, opacity 0.18s ease;
    }

    .navbar-menu.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .navbar-links a {
        padding-left: 0;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card {
        order: -1;
    }

    .card-grid.three {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .quick-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .vehicle-card {
        flex: 0 0 80%;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 2.25rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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