/* ================================================
   PetCare Local — Hero Section
   Author: PetCare Local
   Order: Hero → Eyebrow → Heading → Subtitle
          → Search Card → Trust Bar → Responsive
   ================================================ */

/* ════════════════════════════════════════════════
   1. HERO SECTION
   ════════════════════════════════════════════════ */

.hero-section {
    background-image: linear-gradient(
        rgba(21, 40, 64, 0.65),
        rgba(21, 40, 64, 0.65)
    ), url('/images/pet-hero-v2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px 64px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 50%;
}

.hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #A8C8E8;
    margin-bottom: 14px;
}

.hero-section h1 {
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 14px;
}

.hero-sub {
    font-size: 13px;
    color: #C8DFF0;
    line-height: 1.6;
}

.hero-search {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin-top: 36px;
}

.hero-search-inner {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255,255,255,0.96);
    border-radius: 10px;
    padding: 10px 12px;
}

.hero-search-inner .form-control {
    flex: 1;
    font-size: 13px;
    border: none;
    outline: none;
    box-shadow: none;
}

.hero-search-inner .form-select {
    width: 160px;
    font-size: 13px;
    border: none;
    outline: none;
    box-shadow: none;
}

.btn-hero-search {
    background: #1F3B5B;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.btn-hero-search:hover {
    background: #2E6DA4;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
    .hero-section {
        padding: 32px 24px 24px;
        min-height: 320px;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-search-inner {
        flex-direction: column;
    }
    .hero-search-inner .form-control,
    .hero-search-inner .form-select,
    .btn-hero-search {
        width: 100%;
    }
}


/*
.hero-section {
    background: var(--brand-darker);
    padding: 56px 20px 48px;
    text-align: center;
    width: 100%;
}
*/

/* ════════════════════════════════════════════════
   2. HERO TYPOGRAPHY
   ════════════════════════════════════════════════ */

.hero-eyebrow {
    color: #A8C8E8 !important;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-top: 60px;
    margin-bottom: 30px !important;
}
/* color: #D6E8F7 !important; maybe */

/*
.hero-eyebrow {
    font-size: 11px;
    color: var(--brand-accent);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 12px;
}
*/

/*
.hero-section h1 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}
*/

/* ── HERO TEXT — white ── */
.hero-section h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    max-width: 560px;
    line-height: 1.3;
    letter-spacing: 2px;
}

.hero-section p,
.hero-sub {
    color: #D6E8F7;
    font-size: 1rem;
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.8;
}

/*    margin: 0 auto 28px; */

.hero-sub {
    color: va130--brand-accent);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

/* ════════════════════════════════════════════════
   1. HERO SECTION - Interior Pages
   ════════════════════════════════════════════════ */

.hero-section-2 {
    background: var(--brand-dark);
    padding: 130px 20px;
    text-align: center;
    width: 100%;
}

.hero-section-2 h1 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.hero-sub-2 {
    color: var(--brand-accent);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

/* ════════════════════════════════════════════════
   3. SEARCH CARD
   ════════════════════════════════════════════════ */

/* ── SEARCH CARD — controlled width ── */
.search-card {
    background: var(--brand-white);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    max-width: 880px;
    width: 100%;
    margin: 0 auto;
}

/*
.search-card {
    background: var(--brand-white);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    max-width: 620px;
    margin: 0 auto;
}
*/

/* ════════════════════════════════════════════════
   4. TRUST BAR
   ════════════════════════════════════════════════ */

.trust-bar {
    display: none;
}

.trust-stat {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-dark);
    display: inline-block;
}


/* ════════════════════════════════════════════════
   5. RESPONSIVE — ALWAYS LAST
   ════════════════════════════════════════════════ */

@media (max-width: 768px) {

    .hero-section {
        padding: 40px 16px 32px;
    }

    .hero-section h1 {
        font-size: 1.6rem;
    }

    .hero-sub {
        font-size: 0.9rem;
    }

    .search-card {
        padding: 14px;
    }

    .trust-bar {
        padding: 10px 16px;
    }

}
