/*
  Pet Salon Marketing — Niche-Specific Styles
  Color Palette: Warm Emerald / Nature Green
  Inherits base structure from med-spa-marketing.css
*/

:root {
    --gv-pet-accent:       #059669; /* Emerald 600 */
    --gv-pet-accent-dark:  #065f46; /* Emerald 800 */
    --gv-pet-accent-light: #d1fae5; /* Emerald 100 */
    --gv-pet-warm:         #d97706; /* Amber 600 — warmth/approachability */
    --gv-pet-safe:         #10b981; /* Emerald 500 — check icons */
}

/* ============================================
   PAGE SHELL
   ============================================ */
.pet-page {
    background-color: #fff;
    color: var(--gv-secondary-dark);
}

.pet-page .ms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HERO
   ============================================ */
.pet-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 60%, #fefce8 100%);
    position: relative;
    overflow: hidden;
}

.pet-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(5,150,105,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.pet-hero__title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 850;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--gv-secondary-dark);
}

.pet-hero__title span {
    color: var(--gv-pet-accent);
}

/* ============================================
   BUTTONS
   ============================================ */
.pet-btn {
    display: inline-block;
    background: var(--gv-pet-accent);
    color: #fff;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.pet-btn:hover,
.pet-btn:focus {
    background: var(--gv-pet-accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(5,150,105,0.35);
    text-decoration: none;
}

.pet-btn:disabled {
    opacity: 0.65;
    transform: none;
    cursor: not-allowed;
}

/* ============================================
   EYEBROW / SECTION LABELS
   ============================================ */
.pet-section-eyebrow {
    display: inline-block;
    background: var(--gv-pet-accent-light);
    color: var(--gv-pet-accent-dark);
    border: 1px solid rgba(5,150,105,0.2);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* ============================================
   DELIVERABLES / CARDS
   ============================================ */
.pet-del-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.25s ease;
    border-top: 4px solid var(--gv-pet-accent);
}

.pet-del-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(5,150,105,0.12);
    border-top-color: var(--gv-pet-accent-dark);
}

.pet-del-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gv-secondary-dark);
    margin-bottom: 10px;
}

.pet-del-card h3 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gv-pet-accent-light);
    color: var(--gv-pet-accent-dark);
    width: 30px; height: 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    margin-right: 10px;
    flex-shrink: 0;
}

.pet-del-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   FORM INPUTS
   ============================================ */
.pet-form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--gv-secondary-dark);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    appearance: none;
}

.pet-form-input:focus {
    border-color: var(--gv-pet-accent);
    box-shadow: 0 0 0 3px rgba(5,150,105,0.12);
}

.pet-form-input::placeholder { color: #94a3b8; }

/* ============================================
   PRICING BADGE
   ============================================ */
.pet-pricing-box {
    background: linear-gradient(135deg, var(--gv-pet-accent-dark) 0%, var(--gv-pet-accent) 100%);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pet-pricing-box .price-range {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    font-family: var(--gv-font-heading, 'Oswald', sans-serif);
    letter-spacing: -1px;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.pet-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: var(--gv-pet-accent-dark);
    padding: 14px 20px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
}

.pet-sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 640px;
    margin: 0 auto;
}

.pet-sticky-cta__title {
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    display: block;
}

.pet-sticky-cta__sub {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    display: block;
}

.pet-sticky-cta__btn {
    background: #fff;
    color: var(--gv-pet-accent-dark) !important;
    padding: 12px 22px;
    font-size: 14px;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.pet-sticky-cta__btn:hover {
    background: var(--gv-pet-accent-light);
    color: var(--gv-pet-accent-dark) !important;
}

/* ============================================
   SOLUTION SECTION OVERRIDES
   ============================================ */
.pet-solution-bg {
    background: linear-gradient(135deg, var(--gv-pet-accent-dark) 0%, var(--gv-pet-accent) 100%);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .pet-hero { padding: 80px 0 60px; }
    .pet-hero__title { font-size: clamp(2rem, 5vw, 3rem); }
    .pet-btn { padding: 16px 28px; font-size: 16px; }
}

@media (max-width: 768px) {
    .pet-hero { padding: 70px 0 48px; }
    .pet-pricing-box { padding: 28px 20px; }
    .pet-del-card { padding: 20px 18px; }
}

@media (max-width: 480px) {
    .pet-btn { width: 100%; text-align: center; padding: 16px 20px; font-size: 15px; }
    .pet-hero__title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
    .pet-sticky-cta { display: block; }
}

@media (max-width: 576px) {
    .pet-sticky-cta { display: block; }
}
