/* ── HERO SECTION ────────────────────────────────── */
.hero {
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 30, 60, 0.75) 0%, rgba(10, 30, 60, 0.35) 100%);
}

.hero-home {
    background-image: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?auto=format&fit=crop&w=1600&q=80');
    min-height: 520px;
}

.hero-injectables {
    background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1600&q=80');
    min-height: 380px;
}

.hero-nutrition {
    background-image: url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?auto=format&fit=crop&w=1600&q=80');
    min-height: 380px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    padding: 40px 24px;
    max-width: 1140px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    color: var(--white);
    max-width: 520px;
}

.hero-text h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-text .hero-subtitles {
    margin-bottom: 20px;
}

.hero-text .hero-subtitles p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
    opacity: 0.95;
}

.hero-text .hero-phone {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.hero-text .hero-hours {
    font-size: 14px;
    opacity: 0.9;
}

.hero-text .hero-hours .open-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
}

/* ── HERO FORM (Translucent Blue) ─────────────── */
.hero-form-card {
    width: 380px;
    background: rgba(11, 90, 166, 0.85);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0 !important;
}

.hero-form-header {
    background: transparent;
    padding: 24px 24px 10px;
    text-align: center;
}

.hero-form-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.hero-form-body {
    padding: 0 24px 24px;
}

.hero-form-body label {
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.hero-form-body .form-group {
    margin-bottom: 14px;
}

.hero-form-body input,
.hero-form-body select {
    width: 100%;
    padding: 12px 14px !important;
    background: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    box-sizing: border-box;
    font-family: var(--font);
    font-weight: 600;
    color: var(--text-dark);
}

.hero-form-body input::placeholder {
    color: #666;
    font-weight: 600;
}

.hero-form-body select {
    color: #666;
}

.hero-form-body .btn-primary {
    width: auto;
    display: block;
    margin: 15px auto 0;
    background: var(--white);
    color: var(--blue-primary);
    font-weight: 800;
    padding: 12px 32px;
}

.hero-form-body .btn-primary:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.hero-form-body .form-note {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
    }

    .hero-form-card {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }
}