/* CSS Reset & Base Styles */
:root {
    --color-primary: #2a5c3d;      /* Forest Green */
    --color-primary-dark: #1c3d29;
    --color-secondary: #8a6d3b;    /* Earth Brown */
    --color-accent: #d9534f;       /* Alert Red/Accent */
    --color-light: #f4f0e8;        /* Cream/Off-White */
    --color-dark: #1c2b1e;         /* Dark Green */
    --color-text: #333;
    --color-border: #d1d5db;
    --spacing-unit: 1rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: #fff;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 2rem;
}
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; }

/* Top Bar */
.topbar {
    background: var(--color-primary);
    color: white;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.9rem;
}
.topbar span { font-weight: 600; }

/* Header & Navigation */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}
.logo-img {
    height: 50px;
    width: auto;
}
.logo-text-main {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-primary-dark);
    line-height: 1.1;
}
.logo-text-sub {
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 0.5px;
}
.main-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.main-nav a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
}
.main-nav a:hover { color: var(--color-primary); }
.cta-button-nav {
    background: var(--color-primary);
    color: white !important;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
}
.header-phone {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/placeholder-hero.jpg') center/cover no-repeat;
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.vet-badge {
    display: inline-block;
    background: var(--color-secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}
.hero h1 { color: white; }
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ddd;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-button-hero, .cta-button-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}
.cta-button-hero {
    background: var(--color-accent);
    color: white;
    border: 2px solid var(--color-accent);
}
.cta-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.cta-button-hero:hover {
    background: #c9302c;
    border-color: #c9302c;
}
.cta-button-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Trust Bar */
.trust-bar {
    background: var(--color-light);
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--color-border);
}
.trust-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}
.trust-item {
    text-align: center;
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.trust-item i {
    font-size: 1.8rem;
    color: var(--color-secondary);
}

/* Service Grid */
.services-overview {
    padding: 4rem 1rem;
    background: white;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.service-category {
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 2rem;
    background: #fff;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.service-category.highlighted {
    border-top: 5px solid var(--color-primary);
}
.category-header {
    text-align: center;
    margin-bottom: 2rem;
}
.category-header i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}
.service-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}
.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.service-link {
    display: inline-block;
    color: var(--color-primary);
    font-weight: bold;
    text-decoration: none;
    margin-top: 1rem;
}

/* Differentiator Section */
.differentiator {
    padding: 4rem 1rem;
    background: #f0f4ef;
}
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}
.diff-item {
    text-align: center;
    padding: 2rem;
}
.diff-item i {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

/* Gallery Preview */
.gallery-preview {
    padding: 4rem 1rem;
    background: white;
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}
.gallery-caption {
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

/* Service Area */
.service-area {
    padding: 4rem 1rem;
    background: var(--color-light);
}
.counties-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    margin: 2rem 0;
}
.counties-list ul {
    list-style: none;
}
.counties-list li {
    margin-bottom: 0.5rem;
}
.service-area-link {
    display: inline-block;
    color: var(--color-primary);
    font-weight: bold;
    text-decoration: none;
    margin-top: 1rem;
}

/* Final CTA */
.final-cta {
    padding: 5rem 1rem;
    text-align: center;
    background: var(--color-primary);
    color: white;
}
.final-cta h2,
.final-cta p {
    color: white;
}
.final-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Footer */
.site-footer {
    background: var(--color-dark);
    color: #bbb;
    padding: 3rem 1rem 1rem;
}
.site-footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.site-footer h3,
.site-footer h4 {
    color: white;
}
.site-footer a {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}
.site-footer a:hover { color: white; }
.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #999;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }
    .main-nav {
        justify-content: center;
    }
    .header-phone {
        margin-top: 0.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .trust-bar .container {
        flex-direction: column;
        gap: 1.5rem;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .counties-list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
}