/* ===========================
   BAT REMOVAL 247 - CSS
   =========================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --orange: #f97316;
    --orange-dark: #ea6c0a;
    --orange-light: #fed7aa;
    --dark: #0f1923;
    --dark-mid: #1c2b3a;
    --charcoal: #1e293b;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --text-gray: #64748b;
    --border: #e2e8f0;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- NOTICE BANNER ---- */
.notice-banner {
    background: linear-gradient(90deg, #78350f 0%, #92400e 100%);
    color: #fff;
    border-bottom: 2px solid #451a03;
    position: relative;
    z-index: 1000;
}
.notice-banner__inner {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 20px;
}
.notice-banner__icon { font-size: 20px; flex-shrink: 0; }
.notice-banner__text { flex: 1; font-size: 14px; line-height: 1.5; color: #fef3c7; margin: 0; }
.notice-banner__text strong { font-weight: 800; color: #fff; }
.notice-banner__close {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
    padding: 0;
}
.notice-banner__close:hover { background: rgba(255,255,255,0.3); }

/* ---- HEADER ---- */
.site-header {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid var(--orange);
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { font-size: 28px; }
.logo-text { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.logo-accent { color: var(--orange); }
.header-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.header-tagline { color: #94a3b8; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.header-phone {
    color: var(--orange);
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.2s;
}
.header-phone:hover { color: var(--orange-light); }

/* ---- HERO ---- */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 60%, #1a1000 100%);
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('hero.png') center/cover no-repeat;
    opacity: 0.22;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(249,115,22,0.1) 0%, transparent 70%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 20px;
    text-align: center;
}
.hero-location {
    display: inline-block;
    background: rgba(249,115,22,0.15);
    color: var(--orange);
    border: 1px solid rgba(249,115,22,0.4);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 18px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.hero-title {
    font-size: clamp(38px, 7vw, 68px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}
.hero-title .highlight { color: var(--orange); }
.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 21px);
    color: #94a3b8;
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.hero-note { color: #64748b; font-size: 14px; margin-top: 16px; letter-spacing: 0.5px; }

/* ---- CTA BUTTONS ---- */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    border-radius: 100px;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
}
.cta-btn--large { font-size: clamp(20px, 3vw, 26px); padding: 18px 44px; box-shadow: 0 6px 30px rgba(249,115,22,0.45); }
.cta-btn--orange { font-size: 18px; padding: 14px 32px; box-shadow: 0 4px 20px rgba(249,115,22,0.35); background: var(--orange); color: #fff; }
.cta-btn--white { background: var(--white); color: var(--dark); }
.cta-btn--white:hover { background: var(--orange-light); color: var(--dark); }
.cta-btn:hover { transform: translateY(-3px) scale(1.02); background: var(--orange-dark); box-shadow: 0 10px 40px rgba(249,115,22,0.55); }
.cta-btn--white:hover { background: #fff3e8; color: var(--dark); transform: translateY(-3px) scale(1.02); }
.cta-icon { font-size: 1em; }

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(249,115,22,0.6); }
    70% { box-shadow: 0 0 0 20px rgba(249,115,22,0); }
    100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}
.pulse-btn { animation: pulse-ring 2.5s infinite; }

/* ---- TRUST SECTION ---- */
.trust-section {
    background: var(--charcoal);
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 14px; color: var(--white); }
.trust-icon { font-size: 28px; flex-shrink: 0; }
.trust-label { font-size: 14px; color: #94a3b8; line-height: 1.4; }
.trust-label strong { display: block; color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 2px; }

/* ---- SERVICES SECTION ---- */
.services-section { padding: 80px 0; background: var(--off-white); }
.services-inner { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.section-eyebrow { color: var(--orange-dark); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.section-eyebrow--light { color: var(--orange-light); }
.section-eyebrow--red { color: #ef4444; }
.section-title { font-size: clamp(26px, 4vw, 40px); font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.5px; }
.section-title--white { color: var(--white); }
.section-desc { color: var(--text-gray); font-size: 16px; margin-bottom: 32px; line-height: 1.7; }
.animal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 16px; }
.animal-item { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--charcoal); font-weight: 500; }
.check { color: var(--orange); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 20px;
}
.service-card h3 { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-card ul li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--charcoal); }
.service-card ul li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ---- WHY SECTION ---- */
.why-section { background: var(--dark); padding: 80px 0; text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: transform 0.25s, background 0.25s, border-color 0.25s;
}
.why-card:hover { transform: translateY(-6px); background: rgba(249,115,22,0.08); border-color: rgba(249,115,22,0.3); }
.why-icon { font-size: 40px; margin-bottom: 16px; }
.why-card h3 { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.why-card p { font-size: 14px; color: #64748b; line-height: 1.7; }

/* ---- HOW IT WORKS ---- */
.how-section { padding: 80px 0; background: var(--white); text-align: center; }
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin: 48px 0 40px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; }
.step-number {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 28px;
    font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(249,115,22,0.4);
    flex-shrink: 0;
}
.step-connector { width: 80px; height: 2px; background: linear-gradient(90deg, var(--orange), var(--orange-dark)); margin-top: 32px; flex-shrink: 0; opacity: 0.35; }
.step-content h3 { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.step-content p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }
.how-cta { margin-top: 8px; }

/* ---- DANGER SECTION ---- */
.danger-section { padding: 80px 0; background: #fff8f5; }
.danger-section .section-title { text-align: center; }
.danger-section .section-eyebrow { text-align: center; }
.danger-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.danger-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid #fee2e2;
    border-top: 4px solid #ef4444;
    box-shadow: 0 4px 20px rgba(239,68,68,0.08);
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}
.danger-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(239,68,68,0.12); }
.danger-icon { font-size: 44px; margin-bottom: 16px; }
.danger-card h3 { font-size: 19px; font-weight: 800; color: #991b1b; margin-bottom: 12px; }
.danger-card p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* ---- STATS SECTION ---- */
.stats-section {
    background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%);
    padding: 56px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-number { font-size: clamp(32px, 5vw, 52px); font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { padding: 80px 0; background: var(--off-white); text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: left;
    transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: #f59e0b; font-size: 20px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { color: var(--charcoal); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { color: var(--text-gray); font-size: 13px; font-weight: 600; }

/* ---- LOCATION SECTION ---- */
.location-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1000 60%, #0f1923 100%);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.location-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(249,115,22,0.12) 0%, transparent 60%);
}
.location-section .container { position: relative; z-index: 1; }
.location-desc {
    color: #64748b;
    font-size: 17px;
    max-width: 620px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.location-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: transform 0.25s, background 0.25s, border-color 0.25s;
}
.location-card:hover { transform: translateY(-6px); background: rgba(249,115,22,0.08); border-color: rgba(249,115,22,0.4); }
.location-icon { font-size: 44px; margin-bottom: 16px; }
.location-card h3 { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.location-card p { font-size: 14px; color: #64748b; line-height: 1.7; }
.location-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.location-note { color: var(--orange); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ---- FOOTER CTA ---- */
.footer-cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a0f00 100%);
    padding: 80px 0;
    text-align: center;
}
.footer-cta-location { color: var(--orange); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.footer-cta-title { font-size: clamp(32px, 5vw, 56px); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 16px; letter-spacing: -1px; }
.footer-cta-sub { color: #64748b; font-size: 17px; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ---- SITE FOOTER ---- */
.site-footer { background: #080d12; padding: 40px 0; }
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: #475569; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-disclaimer { color: #334155; font-size: 12px; max-width: 700px; line-height: 1.7; text-align: center; }
.footer-disclaimer a { color: #64748b; text-decoration: underline; }
.footer-copy { color: #1e293b; font-size: 12px; }

/* ---- MODALS ---- */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal:target { display: flex; }
.modal-box {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.modal-box h2 { font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.modal-box > p:first-of-type { color: #94a3b8; font-size: 12px; margin-bottom: 16px; }
.modal-box h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin: 20px 0 8px; }
.modal-box p { color: var(--text-gray); font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.modal-box a { color: var(--orange); }
.modal-close {
    position: absolute;
    top: 16px; right: 20px;
    font-size: 20px;
    color: #94a3b8;
    text-decoration: none;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--off-white); color: var(--dark); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .services-inner { grid-template-columns: 1fr; gap: 40px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .location-grid { grid-template-columns: repeat(2, 1fr); }
    .danger-grid { grid-template-columns: 1fr; gap: 20px; }
    .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .steps { flex-direction: column; align-items: center; gap: 20px; }
    .step-connector { width: 2px; height: 40px; margin-top: 0; }
    .animal-grid { grid-template-columns: repeat(2, 1fr); }
    .header-phone { font-size: 18px; }
    .logo-text { font-size: 18px; }
    .modal-box { padding: 28px 20px; }
    .cta-btn--large { font-size: 18px; padding: 14px 28px; }
}
@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .notice-banner__text { font-size: 13px; }
}
