/* ===========================
   WILDLIFE RESCUE 365 - CSS
   =========================== */

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

:root {
    --green: #2ecc71;
    --green-dark: #27ae60;
    --green-light: #a8edbc;
    --dark: #1a2332;
    --dark-mid: #243447;
    --charcoal: #2c3e50;
    --white: #ffffff;
    --off-white: #f8faf9;
    --text-gray: #5a6a7a;
    --border: #e0e8e4;
    --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, #b45309 0%, #d97706 100%);
    color: #fff;
    border-bottom: 2px solid #92400e;
    position: relative;
    z-index: 1000;
}

.notice-banner__inner {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 13px 20px;
}

.notice-banner__icon {
    font-size: 22px;
    flex-shrink: 0;
}

.notice-banner__text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    margin: 0;
}

.notice-banner__text strong {
    font-weight: 800;
}

.notice-banner__close {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    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.35);
}

@media (max-width: 600px) {
    .notice-banner__text {
        font-size: 13px;
    }
}

/* ---- HEADER ---- */
.site-header {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid var(--green);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.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(--green);
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.header-tagline {
    color: #a0b0c0;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-phone {
    color: var(--green);
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.2s;
}

.header-phone:hover {
    color: var(--green-light);
}

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

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('hero.png') center/cover no-repeat;
    opacity: 0.18;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(46, 204, 113, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
    text-align: center;
}

.hero-location {
    display: inline-block;
    background: rgba(46, 204, 113, 0.18);
    color: var(--green);
    border: 1px solid rgba(46, 204, 113, 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(40px, 7vw, 72px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-title .highlight {
    color: var(--green);
}

.hero-subtitle {
    font-size: clamp(17px, 2.5vw, 22px);
    color: #a8b8c8;
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-note {
    color: #8899aa;
    font-size: 14px;
    margin-top: 16px;
    letter-spacing: 0.5px;
}

/* ---- CTA BUTTONS ---- */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    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, 28px);
    padding: 18px 44px;
    box-shadow: 0 6px 30px rgba(46, 204, 113, 0.40);
}

.cta-btn--green {
    font-size: 18px;
    padding: 14px 32px;
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.35);
}

.cta-btn--white {
    background: var(--white);
    color: var(--dark);
}

.cta-btn--white:hover {
    background: var(--green-light);
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    background: var(--green-dark);
    box-shadow: 0 10px 40px rgba(46, 204, 113, 0.50);
}

.cta-btn--white:hover {
    background: #e8f8ef;
    color: var(--dark);
}

.cta-icon {
    font-size: 1em;
}

/* Pulse animation for hero CTA */
@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 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.08);
}

.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: #ccd8e0;
    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(--green-dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-eyebrow--light {
    color: var(--green-light);
}

.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(--green);
    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(--green);
    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.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: transform 0.25s, background 0.25s;
}

.why-card:hover {
    transform: translateY(-6px);
    background: rgba(46, 204, 113, 0.08);
    border-color: rgba(46, 204, 113, 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: #8899aa;
    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(--green);
    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(46, 204, 113, 0.35);
    flex-shrink: 0;
}

.step-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--green-dark));
    margin-top: 32px;
    flex-shrink: 0;
    opacity: 0.4;
}

.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;
}

/* ---- STATS SECTION ---- */
.stats-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, #1e8c4a 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.75);
    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: #f39c12;
    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;
}

/* ---- FOOTER CTA ---- */
.footer-cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1e3d2f 100%);
    padding: 80px 0;
    text-align: center;
}

.footer-cta-location {
    color: var(--green);
    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: #8899aa;
    font-size: 17px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- SITE FOOTER ---- */
.site-footer {
    background: #111820;
    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: #6a7a8a;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--green);
}

.footer-disclaimer {
    color: #4a5a6a;
    font-size: 12px;
    max-width: 700px;
    line-height: 1.7;
    text-align: center;
}

.footer-disclaimer a {
    color: #6a8a7a;
    text-decoration: underline;
}

.footer-copy {
    color: #3a4a5a;
    font-size: 12px;
}

/* ---- MODALS ---- */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    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: 560px;
    width: 100%;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
}

.modal-box h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.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[href^="tel"] {
    color: var(--green-dark);
    font-weight: 700;
    text-decoration: none;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    text-decoration: none;
    color: var(--text-gray);
    font-size: 20px;
    font-weight: 700;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--dark);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .services-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .header-contact {
        align-items: center;
    }

    .logo-text {
        font-size: 18px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin-top: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .animal-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-btn--large {
        padding: 16px 28px;
        font-size: 20px;
    }
}