/* ============================================================
   Wildlife Removal 365 — style.css
   Premium dark-green + amber design system
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green-900: #0a1f0e;
    --green-800: #112d15;
    --green-700: #1a4020;
    --green-600: #235c2d;
    --green-500: #2d7a3a;
    --green-400: #3a9e4a;
    --green-300: #5dc46e;
    --green-100: #d4f0d8;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --amber-300: #fcd34d;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.18);
    --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   NOTICE BANNER
   ============================================================ */
.notice-banner {
    background: linear-gradient(90deg, #78350f, #92400e);
    color: var(--white);
    padding: 10px 0;
    position: relative;
    z-index: 200;
}
.notice-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.notice-banner__icon { font-size: 1.1rem; flex-shrink: 0; }
.notice-banner__text {
    font-size: 0.82rem;
    flex: 1;
    line-height: 1.4;
}
.notice-banner__close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.8;
    padding: 4px 8px;
    border-radius: 4px;
    transition: opacity var(--transition);
    flex-shrink: 0;
}
.notice-banner__close:hover { opacity: 1; background: rgba(255,255,255,0.15); }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--green-900);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.logo-icon { font-size: 1.6rem; }
.logo-text {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.3px;
    white-space: nowrap;
}
.logo-accent { color: var(--amber-400); }

.header-nav {
    display: flex;
    gap: 28px;
}
.header-nav a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}
.header-nav a:hover { color: var(--amber-400); }

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.header-tagline {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.header-phone {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--amber-400);
    letter-spacing: -0.3px;
    transition: color var(--transition);
}
.header-phone:hover { color: var(--amber-300); }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--green-800);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 12px 0;
}
.mobile-nav a {
    padding: 12px 24px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background var(--transition);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.05); }
.mobile-nav-phone {
    color: var(--amber-400) !important;
    font-weight: 800 !important;
    font-size: 1.05rem !important;
}
.mobile-nav.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 60%, #1e3d2f 100%);
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: center;
}

/* Real photo background — like wildliferescue365 */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('hero.jpg') center / cover no-repeat;
    opacity: 0.32;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(45,122,58,0.15) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(251,191,36,0.4);
    border-radius: 50%;
    animation: float-particle linear infinite;
}
@keyframes float-particle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(251,191,36,0.3);
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 20px;
    font-size: 0.82rem;
    color: var(--amber-300);
    font-weight: 600;
    letter-spacing: 0.3px;
    backdrop-filter: blur(4px);
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-300);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
    flex-shrink: 0;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}
.hero-title-accent {
    background: linear-gradient(135deg, var(--amber-400), var(--amber-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-actions { display: flex; flex-direction: column; gap: 16px; }
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-trust span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

/* Hero card */
.hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
    animation: hero-card-float 6s ease-in-out infinite;
}
@keyframes hero-card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}
.hero-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}
.hero-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 24px;
    line-height: 1.6;
}
.hero-card-note {
    margin-top: 14px;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
}
.hero-card-note strong { color: var(--amber-400); }

/* ============================================================
   CTA BUTTONS
   ============================================================ */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}
.cta-btn--primary {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-400));
    color: var(--gray-900);
    box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}
.cta-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245,158,11,0.55);
}
.cta-btn--secondary {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
    width: 100%;
}
.cta-btn--secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-1px);
}
.cta-btn--green {
    background: linear-gradient(135deg, var(--green-500), var(--green-400));
    color: var(--white);
    box-shadow: 0 4px 18px rgba(45,122,58,0.35);
}
.cta-btn--green:hover {
    background: linear-gradient(135deg, var(--green-400), var(--green-300));
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(45,122,58,0.5);
}
.cta-btn--large {
    font-size: 1.12rem;
    padding: 16px 36px;
}
.cta-btn--white {
    background: var(--white);
    color: var(--green-800);
}
.cta-btn--white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.cta-icon { font-size: 1.1em; }

.pulse-btn {
    animation: pulse-glow 2.5s ease infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(245,158,11,0.4); }
    50% { box-shadow: 0 4px 36px rgba(245,158,11,0.75), 0 0 0 8px rgba(245,158,11,0.12); }
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
    background: var(--gray-900);
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.6rem; flex-shrink: 0; }
.trust-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.35;
}
.trust-label strong {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1px;
}

/* ============================================================
   SECTIONS SHARED
   ============================================================ */
section { padding: 96px 0; }
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green-500);
    background: var(--green-100);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.section-eyebrow--light {
    background: rgba(255,255,255,0.12);
    color: var(--amber-400);
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: var(--gray-900);
    letter-spacing: -0.8px;
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-title--white { color: var(--white); }
.section-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    background: var(--gray-50);
}
.services-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}
.animal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.animal-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 9px 12px;
    transition: all var(--transition);
}
.animal-item:hover {
    border-color: var(--green-400);
    background: var(--green-100);
    transform: translateY(-1px);
}
.check {
    color: var(--green-500);
    font-weight: 800;
    font-size: 0.9rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    margin-bottom: 20px;
}
.service-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.service-card-icon { font-size: 1.8rem; }
.service-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gray-900);
}
.service-card ul { display: flex; flex-direction: column; gap: 10px; }
.service-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-100);
}
.service-card ul li:last-child { border-bottom: none; padding-bottom: 0; }
.service-card ul li::before {
    content: '✓';
    color: var(--green-500);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section {
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 50%, var(--green-900) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23235c2d' fill-opacity='0.15'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.why-section > .container { position: relative; z-index: 1; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.why-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: left;
    transition: all var(--transition);
    backdrop-filter: blur(8px);
}
.why-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(251,191,36,0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.why-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
}
.why-card h3 {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}
.why-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
    background: var(--white);
    text-align: center;
}
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 48px;
    margin-bottom: 48px;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 260px;
    flex: 1;
    min-width: 220px;
}
.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--green-600), var(--green-400));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(45,122,58,0.35);
    position: relative;
}
.step-content h3 {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 10px;
}
.step-content p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.65;
}
.step-connector {
    flex: 0 0 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-400), var(--green-300));
    align-self: 64px;
    margin-top: 32px;
    border-radius: 2px;
    min-width: 30px;
}
.how-cta { margin-top: 8px; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-400));
    padding: 64px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}
.stat-item {
    padding: 16px 24px;
    border-right: 1px solid rgba(0,0,0,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--gray-900);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(0,0,0,0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   LOCATIONS SECTION
   ============================================================ */
.locations-section {
    background: var(--gray-50);
    text-align: center;
}
.locations-desc {
    margin-top: 0;
    margin-bottom: 36px;
}
.location-search-wrap {
    max-width: 560px;
    margin: 0 auto 48px;
    position: relative;
}
.location-search-box {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    box-shadow: var(--shadow);
    transition: border-color var(--transition);
}
.location-search-box:focus-within {
    border-color: var(--green-400);
    box-shadow: 0 0 0 4px rgba(45,122,58,0.12);
}
.location-search-icon {
    font-size: 1.1rem;
    margin-right: 8px;
    flex-shrink: 0;
}
.location-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--gray-900);
    background: transparent;
}
.location-search-input::placeholder { color: var(--gray-400); }
.location-search-btn {
    background: linear-gradient(135deg, var(--green-500), var(--green-400));
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.location-search-btn:hover {
    background: linear-gradient(135deg, var(--green-400), var(--green-300));
    transform: translateY(-1px);
}
.location-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 50;
    max-height: 280px;
    overflow-y: auto;
    display: none;
}
.location-results.show { display: block; }
.location-result-item {
    padding: 12px 20px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background var(--transition);
    text-align: left;
}
.location-result-item:last-child { border-bottom: none; }
.location-result-item:hover { background: var(--green-100); color: var(--green-800); }
.location-result-item .loc-icon { font-size: 1rem; }

.location-state-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 40px;
    text-align: left;
}
.location-state-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 16px 20px;
    transition: all var(--transition);
}
.location-state-card:hover {
    border-color: var(--green-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.location-state-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}
.location-state-cities {
    font-size: 0.75rem;
    color: var(--gray-400);
    line-height: 1.5;
}
.locations-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.locations-cta-text {
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* ============================================================
   FOOTER CTA SECTION
   ============================================================ */
.footer-cta-section {
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 50%, var(--green-800) 100%);
    text-align: center;
    padding: 80px 0;
}
.footer-cta-location {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--amber-400);
    margin-bottom: 12px;
}
.footer-cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.8px;
}
.footer-cta-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 32px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--green-900);
    padding: 64px 0 32px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    margin-bottom: 12px;
    max-width: 280px;
}
.footer-phone {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--amber-400);
    letter-spacing: -0.3px;
    transition: color var(--transition);
}
.footer-phone:hover { color: var(--amber-300); }
.footer-cols {
    display: flex;
    gap: 60px;
}
.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
    cursor: default;
}
.footer-col ul li a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}
.footer-col ul li:hover,
.footer-col ul li a:hover { color: var(--amber-400); }

.footer-bottom { text-align: center; }
.footer-disclaimer {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 16px;
}
.footer-disclaimer a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.footer-disclaimer a:hover { color: var(--amber-400); }
.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}
.footer-copy a { color: rgba(255,255,255,0.4); }
.footer-copy a:hover { color: var(--amber-400); }

/* ============================================================
   MODALS
   ============================================================ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 999;
    overflow-y: auto;
    backdrop-filter: blur(4px);
    animation: modal-fade-in 0.2s ease;
}
.modal:target { display: flex; align-items: flex-start; justify-content: center; padding: 40px 16px; }
@keyframes modal-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
.modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 680px;
    width: 100%;
    position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,0.4);
    animation: modal-slide-up 0.25s ease;
}
@keyframes modal-slide-up {
    from { transform: translateY(24px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.2rem;
    color: var(--gray-400);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}
.modal-close:hover { background: var(--gray-100); color: var(--gray-900); }
.modal-box h2 {
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--green-800);
    margin-bottom: 8px;
    padding-right: 40px;
}
.modal-box h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 24px 0 8px;
}
.modal-box p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 8px;
}
.modal-box ul {
    margin: 8px 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.modal-box ul li {
    font-size: 0.9rem;
    color: var(--gray-600);
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
}
.modal-box ul li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--green-500);
    font-weight: 900;
}
.modal-box a { color: var(--green-600); font-weight: 600; }
.modal-box a:hover { color: var(--green-500); }
.modal-box em {
    font-size: 0.82rem;
    color: var(--gray-400);
    display: block;
    margin-bottom: 16px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-card { max-width: 400px; }
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-item:nth-child(3) { border-right: none; }
    .services-inner { grid-template-columns: 1fr; gap: 40px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
    .header-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    section { padding: 64px 0; }
    .hero { min-height: auto; padding: 40px 0; }
    .hero-content { padding-top: 40px; padding-bottom: 40px; }
    .hero-card { display: none; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .trust-item:nth-child(2) { border-right: none; }
    .trust-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
    .trust-item:nth-child(4) { border-right: none; }
    .animal-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { flex-direction: column; align-items: center; }
    .step-connector { width: 3px; height: 40px; flex: none; margin-top: 0; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-cols { flex-direction: column; gap: 28px; }
    .location-state-group { grid-template-columns: repeat(2, 1fr); }
    .header-contact { display: none; }
}

@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .trust-item:last-child { border-bottom: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .location-state-group { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.2rem; }
    .modal-box { padding: 28px 20px; }
}
