/* ============================================================
   HOME PAGE — home.css
   Hero, Booking, Features, Clients, CTA sections
============================================================ */

/* ============================================================
   HERO SECTION
============================================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    filter: brightness(0.32) saturate(0.75);
    transform: scale(1.04);
    transition: transform 10s ease-out;
}

#hero:hover .hero-bg img {
    transform: scale(1.0);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgb(13 13 13 / 65%) 0%, rgb(13 13 13 / 0%) 50%, rgba(13, 13, 13, 0.60) 100%)
}

.hero-inner {
      position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0 80px;
    display: grid;
    grid-template-columns: 2fr 600px;
    gap: 64px;
    align-items: center;
 
}

/* ---- Hero Left ---- */
.hero-left {}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
}

.hero-h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    /* text-5xl */
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero-h1 {
        font-size: 3.75rem;
        /* text-6xl */
    }
}

@media (min-width: 1024px) {
    .hero-h1 {
        font-size: 4.5rem;
        /* text-7xl */
    }
}

.hero-h1 .line1 {
    color: var(--white);
    display: block;
}

.hero-h1 .line2 {
    color: var(--red);
    display: block;
}

.hero-sub {
    font-size: 1.125rem;
    /* text-lg */
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.75rem;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 0;
    margin-bottom: 44px;
    border: 1px solid var(--border);
    overflow: hidden;
    max-width: 440px;
}

.hero-stat {
    flex: 1;
    padding: 16px 12px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat-num {
    font-size: 26px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-lbl {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray2);
}

/* Scroll hint */
.hero-scroll {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray2);
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.2s;
}

.hero-scroll:hover {
    color: var(--white);
}

.scroll-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: nudge 2.2s infinite;
}

@keyframes nudge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* ---- Hero Right Card ---- */
.hero-card {
    background: rgb(22 22 22 / 30%);
    border: 1px solid var(--border);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(18px);
    padding: 20px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.hero-card-truck-icon {
    width: 60px;
    height: 60px;
    background: var(--red-light);
    border: 1px solid rgba(227, 27, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hero-card h3 {
    font-size: 1.25rem;
    /* text-xl */
    font-weight: 700;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.hero-card p {
    font-size: 0.875rem;
    /* text-sm */
    color: var(--gray);
    line-height: 1.25rem;
}

.hero-card .btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    /* letter-spacing: 2px; */
}

.hero-card-divider {
    height: 1px;
    width: 100%;
    background: var(--border);
}

.hero-card-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.hero-card-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--gray);
}

.hero-card-badge svg {
    color: var(--red);
}

/* ============================================================
   BOOKING SECTION
============================================================ */
#book {
    background: var(--bg2);
    padding: 96px 0;
    border-bottom: 1px solid var(--border);
}

/* Stepper */
.stepper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    position: relative;
}

.stepper-item::before {
    content: '';
    position: absolute;
    top: 22px;
    left: calc(50% + 22px);
    right: calc(-50% + 22px);
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.stepper-item:last-child::before {
    display: none;
}

.stepper-item.active::before,
.stepper-item.done::before {
    background: var(--red);
}

.step-bubble {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg3);
    position: relative;
    z-index: 1;
    transition: var(--transition);
    color: var(--gray2);
}

.stepper-item.active .step-bubble {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(227, 27, 35, 0.2);
}

.stepper-item.done .step-bubble {
    background: var(--bg3);
    border-color: var(--red);
    color: var(--red);
}

.step-lbl {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gray2);
    white-space: nowrap;
    text-align: center;
}

.stepper-item.active .step-lbl {
    color: var(--red);
}

.stepper-item.done .step-lbl {
    color: var(--gray);
}

/* Booking form card */
.booking-form-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 44px 40px;
}

.booking-form-card h3 {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.booking-form-card .sub {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 28px;
}

/* Material Tiles */
.material-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.material-tile {
    background: var(--bg2);
    border: 1.5px solid var(--border);
    padding: 18px 16px 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.material-tile:hover {
    border-color: rgba(227, 27, 35, 0.4);
    background: rgba(227, 27, 35, 0.04);
}

.material-tile.selected {
    border-color: var(--red);
    background: rgba(227, 27, 35, 0.08);
}

.material-tile .tile-icon {
    width: 32px;
    height: 24px;
}

.material-tile span {
    font-size: 13.5px;
    font-weight: 600;
}

.booking-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.booking-form-footer .back-btn {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.booking-form-footer .back-btn:hover {
    color: var(--white);
}

/* ============================================================
   WHY ROCK SECTION
============================================================ */
#features {
    background: var(--bg);
    padding: 96px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;

}


.feature-card {
    background: var(--bg);
    padding: 40px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: background 0.3s;
}


.feature-card:hover {
    background: var(--bg2);
}

.feature-card:hover .feature-icon-wrap {
    background: rgba(227, 27, 35, 0.18);
    border-color: var(--red);
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid rgba(227, 27, 35, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 27, 35, 0.08);
    transition: var(--transition);
    margin-bottom: 4px;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    /* letter-spacing: 1.5px; */
    text-transform: uppercase;
    margin-bottom: 0;
}

.feature-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.65;
}

/* ============================================================
   PROCESS SECTION
============================================================ */
#process {
    background: var(--bg2);
    padding: 96px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    counter-reset: process;
}

.process-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    counter-increment: process;
}

.process-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--red);
    text-transform: uppercase;
}

.process-num::before {
    content: "0" counter(process) " —";
    margin-right: 4px;
}

.process-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.process-item p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================================
   CLIENTS / TRUST SECTION
============================================================ */
#trust {
    background: var(--bg);
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.trust-text {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gray2);
    margin-bottom: 32px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-logo-item {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray3);
    transition: color 0.2s;
    padding: 8px 16px;
    border: 1px solid transparent;
}

.trust-logo-item:hover {
    color: var(--gray2);
    border-color: var(--border);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
#testimonials {
    background: var(--bg2);
    padding: 96px 0;
    border-bottom: 1px solid var(--border);
}

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

.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color 0.25s;
}

.testimonial-card:hover {
    border-color: var(--border2);
}

.stars {
    display: flex;
    gap: 3px;
}

.stars svg {
    color: #f59e0b;
}

.testimonial-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg3);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    flex-shrink: 0;
}

.author-info .name {
    font-size: 14px;
    font-weight: 700;
}

.author-info .title {
    font-size: 12px;
    color: var(--gray2);
}

/* ============================================================
   CTA SECTION
============================================================ */
#cta {
    background: var(--red);
    padding: 86px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

#cta h2 {
    font-size: clamp(30px, 4.5vw, 40px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

#cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE — HOME
============================================================ */
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 110px 0 70px;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-sub {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        max-width: 100%;
    }

    .hero-scroll {
        justify-content: center;
    }

    .hero-card {
        display: none !important;
    }
}

@media (max-width: 700px) {

    #book,
    #features,
    #process,
    #testimonials {

        padding: 40px 0;

    }

    .section-header {
        margin-bottom: 30px !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .booking-form-card {
        padding: 28px 20px;
    }

    .material-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .hero-stat {
        flex: 1 1 40%;
    }

    #cta {
        padding: 64px 0;
    }
}