﻿/* ============================================
   HOME PAGE — LIGHT THEME
   Primary: rgb(0, 160, 232) = #00A0E8
   ============================================ */

/* ============================================
   HERO SECTION — LIGHT
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 160deg, #f0f7ff 0%, #e3f1fc 30%, #d4ecff 60%, #c8e6ff 100% );
    overflow: hidden;
    margin-top: -76px;
    padding-top: 76px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 40%, rgba(0, 160, 232, 0.08) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(0, 160, 232, 0.06) 0%, transparent 50%), radial-gradient(ellipse at 50% 90%, rgba(0, 100, 170, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 160, 232, 0.2);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

/* Hero Badge — Light */
.hero-badge {
    display: inline-block;
    background: rgba(0, 160, 232, 0.1);
    border: 1px solid rgba(0, 160, 232, 0.25);
    color: rgb(0, 130, 200);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    animation: fadeInDown 0.8s ease;
}

/* Hero Title — Light */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a2b42;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

    .hero-title span {
        background: linear-gradient(135deg, rgb(0, 160, 232), rgb(0, 100, 170));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

/* Hero Description — Light */
.hero-description {
    font-size: 1.15rem;
    color: #4a5e78;
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-hero-primary {
    background: linear-gradient(135deg, rgb(0, 160, 232), rgb(0, 130, 200));
    color: #ffffff;
    border: none;
    padding: 0.85rem 2.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 160, 232, 0.3);
    letter-spacing: 0.3px;
}

    .btn-hero-primary:hover {
        background: linear-gradient(135deg, rgb(0, 130, 200), rgb(0, 100, 170));
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 160, 232, 0.4);
    }

.btn-hero-outline {
    background: transparent;
    color: #1a2b42;
    border: 2px solid rgba(0, 160, 232, 0.35);
    padding: 0.85rem 2.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .btn-hero-outline:hover {
        background: rgba(0, 160, 232, 0.08);
        color: rgb(0, 130, 200);
        border-color: rgba(0, 160, 232, 0.6);
        transform: translateY(-3px);
    }

/* Scroll Indicator — Light */
.hero-scroll-indicator {
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(0, 160, 232, 0.3);
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(0, 160, 232, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(14px);
    }
}

/* Hero Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   HOW IT WORKS SECTION — LIGHT
   ============================================ */

.how-it-works-section {
    background: linear-gradient( 160deg, #f8fbff 0%, #eef5fc 50%, #e5f0fa 100% );
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

    .how-it-works-section::before {
        content: '';
        position: absolute;
        top: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(0, 160, 232, 0.06) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .how-it-works-section::after {
        content: '';
        position: absolute;
        bottom: -80px;
        right: -80px;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(0, 160, 232, 0.04) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

/* Section Badges — Light */
.section-badge {
    display: inline-block;
    background: rgba(0, 160, 232, 0.1);
    border: 1px solid rgba(0, 160, 232, 0.2);
    color: rgb(0, 130, 200);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-badge-dark {
    display: inline-block;
    background: rgba(0, 160, 232, 0.08);
    border: 1px solid rgba(0, 160, 232, 0.18);
    color: rgb(0, 130, 200);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Titles — Light */
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a2b42;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

/* Override: how-it-works section title is now DARK text */
.how-it-works-section .section-title {
    color: #1a2b42;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #5a6e84;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-subtitle-light {
    font-size: 1.05rem;
    color: #6b7f96;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   INFO CARDS — LIGHT THEME
   ============================================ */

.info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

    .info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        border-radius: 20px 20px 0 0;
        transition: height 0.4s ease;
    }

.walker-card::before {
    background: linear-gradient(90deg, rgb(0, 160, 232), #5ac8fa);
}

.company-card::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.info-card:hover {
    background: #ffffff;
    border-color: #d0dae6;
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

    .info-card:hover::before {
        height: 4px;
    }

/* Info Card Icon — Light */
.info-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.info-card:hover .info-card-icon {
    transform: scale(1.1);
}

.walker-icon {
    background: rgba(0, 160, 232, 0.1);
    color: rgb(0, 160, 232);
}

.company-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.info-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a2b42;
    margin-bottom: 1rem;
}

.info-card-text {
    font-size: 0.95rem;
    color: #5a6e84;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* Feature Tags — Light */
.info-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    background: #f5f8fc;
    border: 1px solid #e2e8f0;
    color: #4a5e78;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    transition: all 0.2s ease;
}

    .feature-tag:hover {
        background: #edf2f8;
        border-color: #d0dae6;
    }

.walker-card .feature-tag:hover {
    color: rgb(0, 160, 232);
    border-color: rgba(0, 160, 232, 0.3);
    background: rgba(0, 160, 232, 0.06);
}

.company-card .feature-tag:hover {
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.06);
}

/* ============================================
   CONTACT SECTION — LIGHT
   ============================================ */

.contact-section {
    background-color: #ffffff;
    padding: 6rem 0;
    border-top: 1px solid #eef2f7;
}

/* Contact Form Card */
.contact-form-card {
    background: #f9fbfd;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #e8edf3;
    transition: box-shadow 0.3s ease;
}

    .contact-form-card:hover {
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
    }

/* Form Controls */
.form-floating-custom .form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: #1a2b42;
    margin-bottom: 0.4rem;
}

.form-control-custom {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    background-color: #ffffff;
    color: #1a2b42;
}

    .form-control-custom:focus {
        border-color: rgb(0, 160, 232);
        box-shadow: 0 0 0 4px rgba(0, 160, 232, 0.1);
        background-color: #ffffff;
    }

    .form-control-custom::placeholder {
        color: #a8b5c5;
    }

textarea.form-control-custom {
    resize: vertical;
    min-height: 130px;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, rgb(0, 160, 232), rgb(0, 130, 200));
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-submit:hover {
        background: linear-gradient(135deg, rgb(0, 130, 200), rgb(0, 100, 170));
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 160, 232, 0.3);
    }

    .btn-submit:active {
        transform: translateY(0);
        box-shadow: none;
    }

    .btn-submit .btn-loading {
        display: none;
    }

    .btn-submit.is-loading .btn-text {
        display: none;
    }

    .btn-submit.is-loading .btn-loading {
        display: inline-flex !important;
        align-items: center;
    }

/* Contact Info Card — Light */
.contact-info-card {
    background: #f9fbfd;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #e8edf3;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 160, 232, 0.12);
}

    .contact-info-header i {
        font-size: 1.5rem;
        color: rgb(0, 160, 232);
    }

    .contact-info-header h5 {
        font-weight: 700;
        margin: 0;
        color: #1a2b42;
    }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: rgba(0, 160, 232, 0.08);
    color: rgb(0, 160, 232);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.contact-info-item:hover .contact-info-icon {
    background: rgba(0, 160, 232, 0.14);
    transform: scale(1.05);
}

.contact-info-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a2b42;
    margin-bottom: 0.2rem;
}

.contact-info-item p {
    font-size: 0.9rem;
    color: #5a6e84;
    margin: 0;
}

.contact-info-divider {
    height: 1px;
    background: #e8edf3;
    margin: 1rem 0;
}

/* Social Links — Light */
.contact-social {
    margin-top: auto;
}

.contact-social-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #5a6e84;
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    gap: 0.65rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(0, 160, 232, 0.06);
    border: 1px solid rgba(0, 160, 232, 0.12);
    color: rgb(0, 160, 232);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: all 0.25s ease;
}

    .social-link:hover {
        background: rgb(0, 160, 232);
        border-color: rgb(0, 160, 232);
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 160, 232, 0.25);
    }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        margin-top: -62px;
        padding-top: 62px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .how-it-works-section {
        padding: 4rem 0;
    }

    .contact-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.85rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        max-width: 300px;
    }

    .hero-content {
        padding: 2rem 0;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .contact-form-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .contact-info-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.65rem;
        letter-spacing: -0.5px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .info-card-features {
        gap: 0.4rem;
    }

    .feature-tag {
        font-size: 0.72rem;
        padding: 0.3rem 0.7rem;
    }
}

/* ============================================
   HERO VIDEO — 9:16 Portrait
   ============================================ */

.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 300px; /* controls the phone-sized frame width */
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16; /* enforces the 9:16 shape */
    border-radius: 24px;
    overflow: hidden;
    background: #0a1628;
    box-shadow: 0 8px 40px rgba(0, 160, 232, 0.15), 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 3px solid rgba(0, 160, 232, 0.2);
    transition: all 0.4s ease;
}

    .hero-video-frame:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 60px rgba(0, 160, 232, 0.2), 0 4px 20px rgba(0, 0, 0, 0.1);
        border-color: rgba(0, 160, 232, 0.35);
    }

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Optional: decorative glow behind the video */
.hero-video-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient( ellipse at center, rgba(0, 160, 232, 0.08) 0%, transparent 70% );
    border-radius: 40px;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 991.98px) {
    /* Stack: text on top, video below — re-center text */
    .hero-content .text-lg-start {
        text-align: center !important;
    }

    .hero-cta.justify-content-lg-start {
        justify-content: center !important;
    }

    .hero-video-wrapper {
        max-width: 260px;
        margin-top: 1rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767.98px) {
    .hero-video-wrapper {
        max-width: 220px;
    }

    .hero-video-frame {
        border-radius: 20px;
        border-width: 2px;
    }
}

@media (max-width: 575.98px) {
    .hero-video-wrapper {
        max-width: 190px;
    }

    .hero-video-frame {
        border-radius: 16px;
    }
}