/* --- CORE VARIABLES --- */
:root {
    --bg-deep: #020617;       
    --bg-glass: rgba(30, 41, 59, 0.7); 
    --neon-green: #a3e635;    
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --text-silver: #cbd5e1;
    --accent-glow: rgba(163, 230, 53, 0.2);
    --nav-h: 75px;
}

/* --- GLOBAL STYLES --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body { 
    background-color: var(--bg-deep); 
    color: var(--text-main); 
    font-family: 'Inter', sans-serif; 
    line-height: 1.7; 
    background-image: radial-gradient(circle at 50% -20%, #1e293b 0%, #020617 80%); 
    /* Forces footer to the bottom of the screen */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Typography */
p { text-align: justify; margin-bottom: 1rem; }
h1 { font-family: 'Lexend', sans-serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.2rem; }
h2 { font-family: 'Lexend'; font-size: 1.8rem; margin-bottom: 1rem; color: var(--neon-green); }
.highlight { color: var(--neon-green); text-shadow: 0 0 15px var(--accent-glow); }

/* --- HEADER & NAVIGATION --- */
.brand-header { padding: 2.5rem 5% 1rem; display: flex; justify-content: center; }
.brand-header img { max-width: 480px; width: 100%; height: auto; filter: drop-shadow(0 0 12px rgba(163, 230, 53, 0.2)); }

nav { 
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--neon-green);
    position: sticky; top: 0; z-index: 2000; height: var(--nav-h); display: flex; align-items: center;
}

.nav-container { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; align-items: center; padding: 0 5%; }

.nav-links { display: flex; list-style: none; gap: 0.5rem; }
.nav-links a { 
    color: var(--text-silver); 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    padding: 10px 20px; 
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    min-height: 44px; /* WCAG Target */
    display: flex;
    align-items: center;
}
.nav-links a:hover { background: var(--accent-glow); color: var(--neon-green); }

.hamburger { display: none; cursor: pointer; background: none; border: none; flex-direction: column; gap: 6px; min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
.hamburger span { display: block; width: 28px; height: 3px; background-color: var(--neon-green); border-radius: 2px; }

/* --- PAGE LAYOUT COMPONENTS --- */
.pillar-content { max-width: 1000px; margin: 0 auto; padding: 40px 5%; }

.glass-card { 
    background: var(--bg-glass); 
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 45px 40px; 
    border-radius: 30px; 
    text-align: center; 
    margin-bottom: 45px; 
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6); 
}

.hero-subtext { font-size: 1.35rem; max-width: 800px; margin: 0 auto 25px; font-weight: 300; line-height: 1.4; text-align: center; }
.hero-description { color: var(--text-silver); max-width: 850px; margin: 0 auto 35px; font-size: 1.1rem; }

.info-block { 
    background: rgba(15, 23, 42, 0.6); 
    padding: 40px; 
    border-radius: 24px; 
    border: 1px solid rgba(163, 230, 53, 0.15); 
    margin-bottom: 45px; 
    text-align: left;
}

/* Grids & Interactive Targets */
.species-grid, .services-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px; 
    margin: 25px 0; 
}

.species-item, .service-item { 
    background: #020617; 
    padding: 15px; 
    border-radius: 10px; 
    border: 1px solid #1e293b; 
    text-align: center; 
    font-weight: 700; 
    color: var(--neon-green);
    font-size: 0.95rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.species-item:hover, .service-item:hover { 
    border-color: var(--neon-green); 
    box-shadow: 0 0 15px var(--accent-glow); 
    transform: translateY(-2px);
}

.feature-list { list-style: none; margin: 25px 0; }
.feature-list li { 
    padding: 10px 0; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    display: flex; 
    align-items: center; 
    color: var(--text-main);
    font-weight: 500;
}
.feature-list li::before { content: '•'; color: var(--neon-green); font-size: 2rem; margin-right: 15px; }

/* Signs Section */
.signs-section { margin: 80px 0; text-align: center; }
.signs-section p { max-width: 700px; margin: 0 auto 35px; text-align: center; } 

.signs-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 40px; justify-content: center; }
.sign-card { background: rgba(255, 255, 255, 0.03); padding: 35px 20px; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.05); transition: 0.3s ease; }
.sign-card:hover { border-color: var(--neon-green); background: var(--bg-glass); transform: translateY(-8px); }
.sign-icon { width: 42px; height: 42px; margin: 0 auto 20px; display: block; fill: var(--neon-green); }
.sign-card h4 { font-family: 'Lexend'; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-main); }

/* --- BULLETPROOF CONTACT SECTION --- */
.contact-wrap { 
    display: flex; 
    flex-wrap: wrap;
    background: #020617; 
    border-radius: 28px; 
    overflow: hidden; 
    border: 1px solid rgba(163, 230, 53, 0.3); 
    margin-top: 60px; 
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6); 
}

.contact-info { 
    flex: 1 1 350px; 
    background: #020617; 
    padding: 60px 45px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* OVERRIDE GLOBAL JUSTIFY FOR THIS PANEL */
.contact-info h2, 
.contact-info p, 
.contact-info span, 
.contact-info a { 
    text-align: left !important; 
    text-align-last: left !important;
    text-justify: none !important;
    word-spacing: normal !important;
}

.contact-info h2 { margin-bottom: 15px; font-size: 2.2rem; }
.contact-info p { margin-bottom: 25px; color: var(--text-silver); }

.contact-form { 
    flex: 1.5 1 450px; 
    background: #0f172a; 
    padding: 60px 45px; 
}

/* Phone Number Stacking */
.phone-block { margin-top: 15px; width: 100%; display: block; }
.phone-label { color: var(--neon-green) !important; font-family: 'Lexend'; font-weight: 800; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; display: block; margin-bottom: 8px; }
.phone-number { display: block; font-size: 1.8rem; font-family: 'Lexend'; font-weight: 800; color: var(--neon-green) !important; text-decoration: none; margin-bottom: 15px; line-height: 1.1; }
.phone-number:hover { text-shadow: 0 0 10px var(--accent-glow); }

/* Form Fields */
.input-row { display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.input-row > * { flex: 1 1 200px; } 

input, select, textarea { 
    width: 100%; 
    background: #1e293b; 
    border: 1px solid #334155; 
    padding: 14px 18px; 
    border-radius: 10px; 
    color: white; 
    font-family: inherit;
    font-size: 1rem;
    transition: border 0.3s;
}
input:focus, select:focus, textarea:focus { border-color: var(--neon-green); outline: none; }
textarea { height: 130px; resize: none; }

.btn-action { 
    background: var(--neon-green); 
    color: #020617; 
    padding: 20px 45px; 
    border-radius: 10px; 
    font-weight: 800; 
    text-transform: uppercase; 
    cursor: pointer; 
    width: 100%; 
    border: none; 
    font-size: 1.1rem;
    transition: 0.3s;
}
.btn-action:hover { background: white; box-shadow: 0 0 25px rgba(255,255,255,0.4); transform: translateY(-2px); }

/* --- TWO-COLUMN STICKY FOOTER --- */
.site-footer {
    padding: 60px 5% 30px;
    background: #020617;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-dim);
    margin-top: auto; /* Pushes footer to the very bottom */
    width: 100%;
}

.footer-heading {
    text-align: center;
    color: var(--text-main);
    font-family: 'Lexend', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.footer-service-areas {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 120px; /* Space between columns */
    max-width: 800px;
    margin: 0 auto 50px;
}

.footer-col {
    min-width: 200px;
}

.footer-col h4 {
    color: var(--neon-green);
    font-family: 'Lexend', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left !important;
}

/* Kill default browser bullets and padding */
.footer-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-col ul li {
    color: var(--text-silver);
    font-size: 1rem;
    margin-bottom: 12px;
    text-align: left !important;
    position: relative;
    padding-left: 20px; /* Room for custom bullet */
}

/* Custom Neon Green Bullets */
.footer-col ul li::before {
    content: "•";
    color: var(--neon-green);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

.footer-bottom p {
    text-align: center; 
    margin-bottom: 0; 
}


/* --- GLOBAL FLOATING CALL BUTTON --- */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--neon-green);
    color: #020617 !important;
    padding: 16px 28px;
    border-radius: 50px;
    font-family: 'Lexend', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulseGlow 2s infinite;
}

.floating-call-btn svg {
    width: 22px;
    height: 22px;
    fill: #020617;
}

.floating-call-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(163, 230, 53, 0.8);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px rgba(163, 230, 53, 0.4); }
    50% { box-shadow: 0 0 25px rgba(163, 230, 53, 0.8); }
    100% { box-shadow: 0 0 15px rgba(163, 230, 53, 0.4); }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .nav-links { 
        position: absolute; top: var(--nav-h); left: -100%; flex-direction: column; width: 100%; 
        background: var(--bg-deep); text-align: center; transition: 0.4s; border-bottom: 2px solid var(--neon-green);
        height: auto; z-index: 2001;
    }
    .nav-links.active { left: 0; }
    .nav-links li { width: 100%; }
    .nav-links a { padding: 25px; border-bottom: 1px solid rgba(255,255,255,0.05); width: 100%; display: block; justify-content: center; }
    
    .species-grid, .signs-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-info, .contact-form, .info-block { padding: 40px 25px; }
    
    /* Re-center the contact text on tablets/mobile */
    .contact-info h2, .contact-info p, .contact-info span, .contact-info a { text-align: center !important; text-align-last: center !important; }
    .hamburger { display: flex; margin-left: auto; }
}

@media (max-width: 768px) {
    /* 1. Add padding to the bottom of the whole site so content doesn't get hidden */
    body { padding-bottom: 75px; }
    
    /* Footer Mobile Stack */
    .footer-service-areas {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
        margin-left: 15%; /* Indents nicely on mobile */
    }
    .site-footer { padding-bottom: 90px; }

    /* 2. Convert the floating pill into a flush, native-style bottom action bar */
    .floating-call-btn {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        font-size: 1.2rem;
        padding: 20px;
        animation: none; 
        box-shadow: 0 -10px 20px rgba(0,0,0,0.4); 
        justify-content: center;
    }
    .floating-call-btn:hover { transform: translateY(0); }
}

@media (max-width: 480px) {
    .species-grid, .signs-grid { grid-template-columns: 1fr; }
}