/* =========================================================
   HOURLY SERVICE PAGE - RESPONSIVE ANIMATED CSS
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

:root {
    --primary-blue: #2166b1;
    --primary-blue-dark: #15549a;
    --dark-bg: #020a14;
    --heading-dark: #061b36;
    --text-dark: #252525;
    --text-muted: #6b7280;
    --border-light: #dbe5f1;
    --form-border: #b6c9df;
    --soft-bg: #f8f9fb;
    --white: #ffffff;
}

/* ==============================
   HERO
================================= */

.hourly-hero {
    position: relative;
    min-height: 430px;
    background:
        linear-gradient(rgba(2, 10, 24, 0.78), rgba(2, 10, 24, 0.84)),
        url("/images/suv.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 105px 20px 90px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hourly-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(33, 102, 177, 0.25);
    top: -260px;
    left: -190px;
    filter: blur(20px);
    animation: heroGlowMove 7s ease-in-out infinite alternate;
}

.hourly-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(33, 102, 177, 0.18);
    right: -180px;
    bottom: -190px;
    filter: blur(24px);
    animation: heroGlowMoveTwo 8s ease-in-out infinite alternate;
}

.hourly-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(37, 99, 235, 0.25), transparent 42%),
        linear-gradient(to bottom, rgba(2, 10, 24, 0.08), rgba(2, 10, 24, 0.55));
    z-index: 1;
}

.hourly-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeUp 0.85s ease both;
}

.tag-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    box-shadow: 0 12px 26px rgba(33, 102, 177, 0.35);
    animation: badgeFloat 3s ease-in-out infinite;
}

.hourly-hero-content h1 {
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 18px;
    color: #fff;
    letter-spacing: -0.7px;
}

.hourly-hero-content p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.75;
    color: #d8e4f3;
}

.hourly-hero-actions,
.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-main-btn,
.hero-call-btn,
.final-call-btn,
.final-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 185px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: all 0.25s ease;
}

.hero-main-btn,
.final-call-btn {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 14px 28px rgba(33, 102, 177, 0.35);
}

.hero-call-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.final-quote-btn {
    background: #fff;
    color: var(--heading-dark);
}

.hero-main-btn:hover,
.final-call-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-3px);
}

.hero-call-btn:hover,
.final-quote-btn:hover {
    background: #fff;
    color: var(--heading-dark);
    transform: translateY(-3px);
}

/* ==============================
   SERVICES
================================= */

.hourly-services-section {
    background: var(--dark-bg);
    padding: 75px 20px 80px;
    color: #fff;
    overflow: hidden;
}

.hourly-container {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.hourly-container h2 {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 400;
    margin: 0 0 55px;
    color: #fff;
    animation: fadeUp 0.8s ease both;
}

.hourly-container h2 strong {
    color: var(--primary-blue);
    font-weight: 800;
}

.hourly-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.hourly-option-card {
    text-align: center;
    padding: 18px 14px;
    transition: all 0.3s ease;
    animation: fadeUp 0.85s ease both;
}

.hourly-option-card:hover {
    transform: translateY(-8px);
}

.hourly-icon {
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.hourly-icon i {
    font-size: 74px;
    color: #fff;
    transition: all 0.3s ease;
}

.hourly-option-card:hover .hourly-icon i {
    color: var(--primary-blue);
    transform: scale(1.08);
    text-shadow: 0 10px 30px rgba(33, 102, 177, 0.45);
}

.hourly-option-card h3 {
    color: #3c86ff;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.hourly-option-card p {
    color: #9aa4b2;
    line-height: 1.65;
    font-size: 15px;
    max-width: 245px;
    margin: 0 auto;
}

/* ==============================
   BENEFITS
================================= */

.hourly-benefits-section {
    background: var(--soft-bg);
    padding: 85px 20px;
    overflow: hidden;
}

.hourly-benefits-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 48px;
    align-items: center;
}

.benefits-left {
    animation: fadeRight 0.85s ease both;
}

.section-small-title {
    display: block;
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.8px;
    margin-bottom: 13px;
    text-transform: uppercase;
}

.benefits-left h2 {
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.2;
    color: var(--heading-dark);
    margin: 0 0 18px;
    font-weight: 800;
}

.benefits-left p {
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 16px;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    background: #fff;
    border: 1px solid var(--border-light);
    padding: 30px 24px;
    transition: all 0.28s ease;
    animation: fadeUp 0.85s ease both;
}

.benefit-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 38px rgba(6, 27, 54, 0.12);
    border-color: rgba(33, 102, 177, 0.3);
}

.benefit-card i {
    font-size: 35px;
    color: var(--primary-blue);
    margin-bottom: 18px;
    transition: all 0.28s ease;
}

.benefit-card:hover i {
    transform: scale(1.12) rotate(-3deg);
}

.benefit-card h3 {
    font-size: 19px;
    color: var(--heading-dark);
    margin: 0 0 10px;
}

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}

/* ==============================
   FORM
================================= */

.hourly-reservation-container {
    max-width: 720px;
    margin: 80px auto;
    background: #fff;
    border: 1px solid var(--form-border);
    padding: 32px 48px;
    animation: fadeUp 0.85s ease both;
    box-shadow: 0 14px 35px rgba(6, 27, 54, 0.07);
}

.hourly-reservation-container h2 {
    text-align: center;
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0 0 28px;
}

.hourly-form-notice {
    background: #f7fbff;
    border: 1px solid #d5e7fb;
    padding: 20px 22px;
    margin-bottom: 28px;
    color: #334155;
    line-height: 1.7;
    font-size: 15px;
}

.hourly-form-notice p {
    margin: 0 0 10px;
}

.hourly-form-notice p:last-child {
    margin-bottom: 0;
}

.hourly-form-notice a {
    color: var(--primary-blue);
    font-weight: 800;
    text-decoration: none;
}

.stepper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 35px;
}

.step {
    padding: 16px 10px;
    text-align: center;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    background: #fff;
    transition: all 0.25s ease;
}

.step.active {
    background: var(--primary-blue);
    color: #fff;
}

.step.completed {
    background: #eaf3ff;
    color: var(--primary-blue);
    font-weight: 800;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: stepFade 0.35s ease both;
}

.row {
    display: flex;
    gap: 18px;
    width: 100%;
}

.flex-1 {
    flex: 1;
}

.input-wrap {
    margin-bottom: 18px;
    position: relative;
}

.input-wrap label,
.field-block label {
    display: block;
    color: #1f1f1f;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 7px;
    letter-spacing: 0.2px;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
    width: 100%;
    border: 1px solid #c7c7c7;
    background: #fff;
    padding: 13px 14px;
    font-size: 15px;
    color: #222;
    outline: none;
    border-radius: 0;
    transition: all 0.22s ease;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(33, 102, 177, 0.12);
}

.input-wrap textarea {
    resize: vertical;
    min-height: 95px;
    line-height: 1.6;
}

.form-section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--heading-dark);
    font-size: 17px;
    font-weight: 900;
    margin: 10px 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-section-heading i {
    color: var(--primary-blue);
    font-size: 18px;
}

/* ==============================
   CHECKBOX / RADIO CARDS
================================= */

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 26px;
}

.check-card {
    position: relative;
    display: block;
    min-height: 78px;
    background: #ffffff;
    border: 1px solid #c7c7c7;
    padding: 16px 16px 16px 48px;
    cursor: pointer;
    transition: all 0.25s ease;
    overflow: hidden;
}

.check-card:hover {
    border-color: var(--primary-blue);
    background: #f7fbff;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(6, 27, 54, 0.08);
}

.check-card input[type="checkbox"],
.check-card input[type="radio"] {
    position: absolute;
    left: 16px;
    top: 19px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
    cursor: pointer;
    z-index: 2;
}

.check-card span {
    display: block;
    position: relative;
    z-index: 2;
    color: var(--heading-dark);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.check-card small {
    display: block;
    position: relative;
    z-index: 2;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 6px;
}

.check-card:has(input:checked) {
    border-color: var(--primary-blue);
    background: #eaf3ff;
    box-shadow: 0 12px 26px rgba(33, 102, 177, 0.14);
}

.check-card:has(input:checked) span {
    color: var(--primary-blue-dark);
}

.small-check {
    min-height: 58px;
    padding-top: 15px;
    padding-bottom: 15px;
}

/* ==============================
   QUOTE BOX / BUTTONS
================================= */

.quote-box {
    background: linear-gradient(135deg, #2166b1, #4aa3ff);
    color: #fff;
    padding: 18px 20px;
    margin-bottom: 22px;
    box-shadow: 0 14px 30px rgba(33, 102, 177, 0.25);
    animation: softPulse 3s ease-in-out infinite;
}

.quote-box h4 {
    font-size: 16px;
    margin: 0 0 8px;
    color: #fff;
}

.quote-box p {
    margin: 0;
    color: #eef6ff;
    line-height: 1.6;
    font-size: 14px;
}

.btn-blue {
    width: 100%;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 4px;
    transition: all 0.25s ease;
}

.btn-blue:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(33, 102, 177, 0.22);
}

.btn-secondary {
    background: #e7e7e7;
    color: #222;
    margin-top: 10px;
}

.btn-secondary:hover {
    background: #d3d3d3;
    box-shadow: none;
}

/* ==============================
   POLICY
================================= */

.hourly-policy-section {
    background: #ffffff;
    padding: 85px 20px;
    overflow: hidden;
}

.hourly-policy-container {
    max-width: 1180px;
    margin: 0 auto;
}

.process-title {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 50px;
    animation: fadeUp 0.85s ease both;
}

.process-title span {
    display: block;
    color: #666;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.process-title h2 {
    font-size: clamp(30px, 4vw, 40px);
    color: var(--heading-dark);
    font-weight: 800;
    margin: 0;
}

.process-title h2 strong {
    color: var(--primary-blue);
}

.process-title p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin: 16px auto 0;
    max-width: 760px;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.policy-card {
    background: #f8f9fb;
    border: 1px solid var(--border-light);
    padding: 28px 22px;
    transition: all 0.3s ease;
    animation: fadeUp 0.85s ease both;
}

.policy-card:hover {
    background: #ffffff;
    transform: translateY(-7px);
    box-shadow: 0 18px 38px rgba(6, 27, 54, 0.12);
    border-color: rgba(33, 102, 177, 0.35);
}

.policy-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.policy-card:hover .policy-icon {
    transform: translateY(-3px) scale(1.05);
    background: var(--primary-blue-dark);
}

.policy-icon i {
    font-size: 22px;
}

.policy-card h3 {
    color: var(--heading-dark);
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 11px;
}

.policy-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ==============================
   FINAL CTA
================================= */

.hourly-final-cta {
    background:
        linear-gradient(rgba(2, 10, 20, 0.92), rgba(2, 10, 20, 0.94)),
        radial-gradient(circle at center, rgba(33, 102, 177, 0.24), transparent 55%);
    color: #fff;
    padding: 78px 20px;
    text-align: center;
    overflow: hidden;
}

.hourly-final-cta-container {
    max-width: 850px;
    margin: 0 auto;
    animation: fadeUp 0.85s ease both;
}

.hourly-final-cta h2 {
    font-size: clamp(30px, 4vw, 40px);
    margin: 0 0 18px;
    color: #fff;
}

.hourly-final-cta p {
    color: #aeb8c5;
    line-height: 1.8;
    font-size: 16px;
    margin: 0 0 30px;
}

/* ==============================
   RESPONSIVE
================================= */

@media (max-width: 1050px) {
    .hourly-benefits-container {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .benefits-left {
        text-align: center;
        max-width: 780px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .hourly-hero {
        min-height: auto;
        padding: 85px 16px 78px;
    }

    .hourly-hero-content h1 {
        font-size: 34px;
    }

    .hourly-hero-content p {
        font-size: 15.5px;
    }

    .hourly-services-section,
    .hourly-benefits-section,
    .hourly-policy-section,
    .hourly-final-cta {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hourly-reservation-container {
        margin: 50px 15px;
        padding: 26px 20px;
    }

    .hourly-reservation-container h2 {
        font-size: 24px;
        line-height: 1.35;
    }

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

    .step {
        border-bottom: 1px solid #e5e5e5;
    }

    .row {
        flex-direction: column;
        gap: 0;
    }

    .benefits-grid,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .policy-grid,
    .hourly-options-grid {
        grid-template-columns: 1fr;
    }

    .check-card {
        min-height: auto;
        padding: 15px 44px 15px 44px;
    }
}

@media (max-width: 560px) {
    .hourly-hero {
        padding: 78px 14px 70px;
    }

    .tag-badge {
        font-size: 11.5px;
        padding: 9px 14px;
    }

    .hourly-hero-content h1 {
        font-size: 30px;
        letter-spacing: -0.3px;
    }

    .hourly-hero-content p {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .hourly-hero-actions,
    .final-cta-buttons {
        width: 100%;
    }

    .hero-main-btn,
    .hero-call-btn,
    .final-call-btn,
    .final-quote-btn {
        width: 100%;
        min-width: 100%;
    }

    .hourly-reservation-container {
        margin: 42px 12px;
        padding: 24px 16px;
    }

    .hourly-reservation-container h2 {
        font-size: 22px;
    }

    .input-wrap label,
    .field-block label {
        font-size: 12px;
    }

    .input-wrap input,
    .input-wrap select,
    .input-wrap textarea {
        font-size: 14px;
        padding: 12px 13px;
    }

    .btn-blue {
        font-size: 14px;
        padding: 13px 16px;
    }
}

/* ==============================
   ANIMATIONS
================================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes stepFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes heroGlowMove {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(40px, 28px) scale(1.08);
    }
}

@keyframes heroGlowMoveTwo {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-36px, -24px) scale(1.06);
    }
}

@keyframes softPulse {
    0% {
        box-shadow: 0 14px 30px rgba(33, 102, 177, 0.22);
    }

    50% {
        box-shadow: 0 18px 38px rgba(33, 102, 177, 0.34);
    }

    100% {
        box-shadow: 0 14px 30px rgba(33, 102, 177, 0.22);
    }
}