/* STARK Home — mobile-only (desktop uses style.css + home-desktop.css) */

@media (max-width: 768px) {

.page-home {
    --home-pad-x: 20px;
    --home-section-y: 48px;
    --home-card-gap: 16px;
    --home-field-gap: 14px;
    --home-radius: 14px;
    --home-border: rgba(255, 255, 255, 0.08);
    --home-surface: #141414;
    font-family: var(--font-primary);
    background-color: #0a0a0a;
    color: var(--color-text-primary);
}

/* Hero */
.page-home .hero-booking {
    position: relative;
    padding: 20px 0 28px;
    min-height: auto;
    align-items: flex-start;
    background: #0a0a0a;
    overflow: hidden;
}

.page-home .hero-booking::after {
    display: none;
}

.page-home .hero-booking__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(164, 255, 0, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(164, 255, 0, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #111 0%, #0a0a0a 100%);
    pointer-events: none;
}

.page-home .hero-booking__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='98' viewBox='0 0 56 98'%3E%3Cg fill='none' stroke='%23A4FF00' stroke-width='0.85' opacity='0.22'%3E%3Cpath d='M28 1 L54 16 L54 48 L28 63 L2 48 L2 16 Z'/%3E%3Cpath d='M28 35 L54 50 L54 82 L28 97 L2 82 L2 50 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 48px 84px;
    opacity: 0.35;
}

.page-home .hero-booking__bg::after {
    content: '';
    position: absolute;
    right: -20%;
    bottom: 10%;
    width: 70%;
    max-width: 280px;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 80' fill='none'%3E%3Cpath d='M20 55h140l12-18H55l-8-12H20v30z' fill='%23A4FF00' fill-opacity='0.06'/%3E%3Ccircle cx='50' cy='58' r='12' fill='%23A4FF00' fill-opacity='0.08'/%3E%3Ccircle cx='140' cy='58' r='12' fill='%23A4FF00' fill-opacity='0.08'/%3E%3C/svg%3E") no-repeat center / contain;
    opacity: 0.9;
}

.page-home .hero-booking .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: var(--home-pad-x);
    padding-right: var(--home-pad-x);
}

.page-home .hero-content {
    text-align: left;
    margin: 0;
    padding: 0;
}

.page-home .hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 6px;
}

.page-home .hero-title {
    font-family: var(--font-nav);
    font-size: clamp(1.65rem, 7.5vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: none;
    margin-bottom: 8px;
    text-shadow: none;
    animation: none;
    color: var(--color-text-primary);
}

.page-home .hero-subtitle {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--color-text-secondary);
    margin: 0 0 12px;
    animation: none;
    text-shadow: none;
}

.page-home .hero-badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.page-home .hero-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--home-border);
    color: var(--color-text-secondary);
    letter-spacing: 0.02em;
    text-transform: none;
}

/* Booking card */
.page-home .booking-card {
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    padding: 18px;
    margin: 0;
    max-width: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    animation: none;
    backdrop-filter: none;
}

    .page-home .booking-locations-row {
        grid-template-columns: 1fr;
    }

    .page-home .booking-card .card-title {
    display: none;
}

.page-home .booking-form {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--home-field-gap);
}

.page-home .booking-form .form-group {
    margin: 0;
}

.page-home .booking-form label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: 6px;
}

.page-home .booking-form select,
.page-home .booking-form input[type="date"] {
    width: 100%;
    min-height: 52px;
    padding: 0 14px;
    font-size: 0.9375rem;
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    background: #1c1c1c;
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.page-home .booking-form select:focus,
.page-home .booking-form input[type="date"]:focus {
    outline: none;
    border-color: rgba(164, 255, 0, 0.45);
    box-shadow: 0 0 0 3px rgba(164, 255, 0, 0.1);
}

.page-home .same-location-toggle {
    margin: 2px 0;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    gap: 10px;
}

.page-home .same-location-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-accent);
    flex-shrink: 0;
}

.page-home .date-range-group {
    margin: 0;
}

.page-home .date-range-main-label {
    font-size: 0.6875rem;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
}

.page-home .date-range-inputs {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    align-items: end;
}

.page-home .date-label {
    font-size: 0.625rem;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.page-home .date-range-divider {
    width: 1px;
    height: 36px;
    background: var(--home-border);
    margin-bottom: 26px;
}

.page-home .btn-search {
    min-height: 52px;
    margin-top: 4px;
    font-family: var(--font-nav);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
    border-radius: var(--home-radius);
    box-shadow: none;
}

.page-home .btn-search:hover {
    box-shadow: 0 4px 20px rgba(164, 255, 0, 0.2);
}

/* Sections */
.page-home .home-section {
    padding: var(--home-section-y) var(--home-pad-x);
}

.page-home .home-section__title {
    font-family: var(--font-nav);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.page-home .home-section__title--sm {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.page-home .home-section__subtitle {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.page-home .home-section__head {
    margin-bottom: 4px;
}

.page-home .home-section__cta {
    margin-top: 16px;
    min-height: 48px;
    border-radius: var(--home-radius);
    text-transform: none;
    font-weight: 600;
}

/* Benefit pills */
.page-home .benefit-pills {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-home .benefit-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    font-size: 0.9375rem;
    color: var(--color-text-primary);
}

.page-home .benefit-pill__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(164, 255, 0, 0.1);
    color: var(--color-accent);
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Fleet preview */
.page-home .fleet-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--home-card-gap);
}

.page-home .fleet-preview-card {
    display: flex;
    gap: 14px;
    padding: 12px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    text-decoration: none;
    color: inherit;
    transition: border-color var(--transition-fast);
}

.page-home .fleet-preview-card:active {
    border-color: rgba(164, 255, 0, 0.3);
}

.page-home .fleet-preview-card__image {
    width: 108px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    background: #1a1a1a;
    flex-shrink: 0;
}

.page-home .fleet-preview-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-home .fleet-preview-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.page-home .fleet-preview-card__category {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.page-home .fleet-preview-card__name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-text-primary);
}

/* Steps */
.page-home .steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--home-card-gap);
}

.page-home .step-card {
    padding: 14px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
}

.page-home .step-card__num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(164, 255, 0, 0.12);
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-home .step-card__title {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--color-text-primary);
    text-transform: none;
    letter-spacing: 0;
}

.page-home .step-card__text {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Why cards */
.page-home .why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--home-card-gap);
}

.page-home .why-card {
    padding: 16px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
}

.page-home .why-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--color-text-primary);
    text-transform: none;
}

.page-home .why-card__text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Support */
.page-home .support-card {
    padding: 18px;
    background: linear-gradient(135deg, rgba(164, 255, 0, 0.08) 0%, var(--home-surface) 60%);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
}

.page-home .support-card__title {
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 0 8px;
    text-transform: none;
}

.page-home .support-card__text {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--color-text-secondary);
    margin: 0 0 12px;
}

.page-home .support-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
}

/* Testimonials */
.page-home .testimonial-card {
    padding: 18px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
}

.page-home .testimonial-stars {
    color: var(--color-accent);
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.page-home .testimonial-slider {
    position: relative;
    min-height: 72px;
}

.page-home .home-testimonial {
    display: none;
}

.page-home .home-testimonial.active {
    display: block;
}

.page-home .home-testimonial__quote {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--color-text-primary);
    margin: 0 0 8px;
    font-style: italic;
}

.page-home .home-testimonial__author {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin: 0;
}

.page-home .testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

.page-home .pagination-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.page-home .pagination-dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

/* Contact CTA */
.page-home .contact-cta-card {
    padding: 20px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    text-align: center;
}

.page-home .contact-cta-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px;
    text-transform: none;
}

.page-home .contact-cta-card__text {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin: 0 0 16px;
}

.page-home .contact-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.page-home .contact-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: var(--home-radius);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-text-primary);
    background: #1c1c1c;
    border: 1px solid var(--home-border);
    text-transform: none;
}

.page-home .contact-cta-btn--primary {
    background: var(--color-accent);
    color: #0a0a0a;
    border-color: var(--color-accent);
}

.page-home .contact-cta-btn--whatsapp {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.35);
    color: #fff;
}

.page-home .contact-cta-hours {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin: 0 0 10px;
}

.page-home .contact-cta-details {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
}

/* Blog */
.page-home .home-blog-grid {
    display: flex;
    flex-direction: column;
    gap: var(--home-card-gap);
}

.page-home .home-blog-card {
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius);
    overflow: hidden;
}

.page-home .home-blog-card__image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1a1a1a;
}

.page-home .home-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-home .home-blog-card__body {
    padding: 14px 16px 16px;
}

.page-home .home-blog-card__date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 6px;
}

.page-home .home-blog-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.35;
    text-transform: none;
}

.page-home .home-blog-card__title a {
    color: var(--color-text-primary);
    text-decoration: none;
}

.page-home .home-blog-card__excerpt {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Help links */
.page-home .help-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-home .help-link {
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    color: var(--color-text-secondary);
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
}

/* Footer compact */
.page-home .footer--home .footer-newsletter--compact {
    padding: 32px var(--home-pad-x);
    border-top: 1px solid var(--home-border);
    background: #0e0e0e;
}

.page-home .footer-newsletter__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 6px;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.3;
}

.page-home .footer-newsletter__subtitle {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin: 0 0 14px;
    line-height: 1.5;
}

.page-home .footer-newsletter-form--compact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.page-home .footer-newsletter-form--compact .footer-newsletter-input {
    min-height: 48px;
    border-radius: var(--home-radius);
    font-size: 0.9375rem;
}

.page-home .footer-newsletter-form--compact .btn {
    min-height: 48px;
    border-radius: var(--home-radius);
    text-transform: none;
    font-weight: 600;
}

.page-home .newsletter-consent {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--color-text-secondary);
    gap: 10px;
    margin-bottom: 8px;
}

.page-home .newsletter-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.page-home .footer-privacy-link {
    font-size: 0.8125rem;
    margin: 0;
}

.page-home .footer-privacy-link a {
    color: var(--color-accent);
}

.page-home .footer-bottom--compact {
    padding: 24px var(--home-pad-x) calc(24px + env(safe-area-inset-bottom, 0px));
    text-align: center;
}

.page-home .footer-logo--sm .footer-logo-img {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
}

.page-home .footer-links-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    margin-bottom: 16px;
}

.page-home .footer-links-row a {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    text-decoration: none;
}

.page-home .footer-credits {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}

.page-home .footer-credits p {
    margin: 0 0 4px;
}

.page-home .footer-copyright {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Sticky CTA */
.page-home .home-sticky-cta {
    position: fixed;
    left: var(--home-pad-x);
    right: var(--home-pad-x);
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 900;
    min-height: 48px;
    padding: 0 20px;
    border: none;
    border-radius: var(--home-radius);
    background: var(--color-accent);
    color: #0a0a0a;
    font-family: var(--font-nav);
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    transform: translateY(120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
}

.page-home .home-sticky-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.page-home.has-mobile-actions .home-sticky-cta {
    bottom: calc(68px + env(safe-area-inset-bottom, 0px));
}

.page-home.has-mobile-actions {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
}

} /* end mobile home */

/* Small phones */
@media (max-width: 380px) {
    .page-home .date-range-inputs {
        grid-template-columns: 1fr;
    }

    .page-home .date-range-divider {
        display: none;
    }

    .page-home .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-home .user-center-social-bar,
    .page-home .mobile-quick-actions {
        display: none !important;
    }
}
