/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #f5f5f0 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAOklEQVQoU2NkYGD4z4AHMDKCVDFBNTCBVD8A0Y1MTEy/gdz/jIyM/xkYGBhBChlRFDKBJRjRnAQQAAD//4YOBQbTQVc/AAAAAElFTkSuQmCC') repeat;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #8b7355;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #6b5335;
}

/* Header and Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 80px;
    height: auto;
}

.brand h1 {
    font-size: 1.8rem;
    color: #8b7355;
    margin: 0;
}

.tagline {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: #f0f0f0;
    color: #8b7355;
}

.nav-menu a.active {
    background: #8b7355;
    color: #fff;
}

.nav-menu a.active:hover {
    background: #6b5335;
}

.nav-menu .nav-separator {
    margin-left: 20px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #8b7355;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: #fff;
    padding: 60px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.hero-image {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-text h2 {
    font-size: 2.2rem;
    color: #8b7355;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.button {
    display: inline-block;
    background: #8b7355;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.3);
}

.button:hover {
    background: #6b5335;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.4);
}

/* Testimonials Section */
.testimonials {
    background: #f9f9f6;
    padding: 60px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    color: #8b7355;
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #8b7355;
}

.testimonial p {
    font-size: 1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial cite {
    font-size: 0.9rem;
    color: #999;
    font-style: normal;
}

/* About Section */
.about {
    background: #fff;
    padding: 60px 0;
}

.about h2 {
    font-size: 2rem;
    color: #8b7355;
    margin-bottom: 30px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.about-images {
    display: grid;
    gap: 20px;
}

.about-images img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Service Area Section */
.service-area {
    background: #f9f9f6;
    padding: 60px 0;
    text-align: center;
}

.service-area h2 {
    font-size: 2rem;
    color: #8b7355;
    margin-bottom: 20px;
}

.service-area > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.zip-codes {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: left;
}

.zip-codes p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.8;
}

.zip-codes p:last-child {
    margin-bottom: 0;
}

.note {
    font-size: 0.95rem;
    color: #777;
    margin-top: 15px;
}

.note a {
    font-weight: 600;
}

/* Contact Section */
.contact {
    background: #fff;
    padding: 60px 0;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    color: #8b7355;
    margin-bottom: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #8b7355;
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 1.1rem;
    color: #666;
}

.contact-item a {
    font-weight: 600;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links a {
    font-size: 1rem;
    padding: 8px 16px;
    background: #f0f0f0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #8b7355;
    color: #fff;
}

/* Button Secondary */
.button-secondary {
    display: inline-block;
    background: transparent;
    color: #8b7355;
    padding: 12px 28px;
    border: 2px solid #8b7355;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.button-secondary:hover {
    background: #8b7355;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #8b7355 0%, #6b5335 100%);
    color: #fff;
    padding: 60px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header .lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* About Detail Page */
.about-detail {
    background: #fff;
    padding: 60px 0;
}

.about-profile {
    text-align: center;
    margin-bottom: 50px;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.about-profile h2 {
    font-size: 2rem;
    color: #8b7355;
    margin-bottom: 8px;
}

.about-profile .subtitle {
    font-size: 1.1rem;
    color: #999;
}

.about-story p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.pet-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.pet-photos.single-photo {
    max-width: 500px;
    margin: 40px auto;
}

.pet-photos img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.pet-photos.single-photo img {
    height: auto;
}

/* References Page */
.references {
    background: #fff;
    padding: 60px 0;
}

.reference-item {
    background: #f9f9f6;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.reference-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.reference-photos img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.reference-item blockquote {
    border-left: 4px solid #8b7355;
    padding-left: 25px;
    margin: 0;
}

.reference-item blockquote p {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
}

.reference-item blockquote cite {
    font-size: 1rem;
    color: #8b7355;
    font-style: normal;
    font-weight: 600;
}

.veterinarian-reference {
    background: linear-gradient(135deg, #f0e8e0 0%, #e8ddd0 100%);
    border: 2px solid #8b7355;
}

/* Coverage Page */
.coverage {
    background: #fff;
    padding: 60px 0;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}

.coverage-text h2 {
    font-size: 2rem;
    color: #8b7355;
    margin-bottom: 20px;
}

.coverage-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-details {
    background: #f9f9f6;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.service-details h3 {
    font-size: 1.4rem;
    color: #8b7355;
    margin: 25px 0 15px;
}

.service-details h3:first-child {
    margin-top: 0;
}

.zip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 15px 0;
}

.zip-code {
    background: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    color: #8b7355;
}

.zip-code a {
    color: #8b7355;
}

.zip-code a:hover {
    color: #6b5335;
    text-decoration: underline;
}

.community-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.community-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.community-list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #8b7355;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-note {
    background: #e8f4f8;
    border-left: 4px solid #5ba3c4;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.service-note h3 {
    font-size: 1.2rem;
    color: #5ba3c4;
    margin-bottom: 10px;
}

.service-note p {
    margin-bottom: 0;
}

.service-restriction {
    background: #fff4e6;
    border-left: 4px solid #e6a23c;
    padding: 15px 25px;
    margin: 20px 0;
    border-radius: 4px;
}

.service-restriction p {
    margin-bottom: 0;
    color: #666;
}

.coverage-map {
    position: sticky;
    top: 100px;
}

.coverage-map img {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.map-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    margin-top: 15px;
    font-style: italic;
}

/* Services Grid (Home Page) */
.services {
    background: #fff;
    padding: 60px 0;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    color: #8b7355;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f9f9f6;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #8b7355;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Quick Links Section (Home Page) */
.quick-links {
    background: #f9f9f6;
    padding: 60px 0;
}

.quick-links h2 {
    text-align: center;
    font-size: 2rem;
    color: #8b7355;
    margin-bottom: 40px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.quick-link-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    color: inherit;
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.2);
    border-color: #8b7355;
}

.quick-link-card h3 {
    font-size: 1.6rem;
    color: #8b7355;
    margin-bottom: 15px;
}

.quick-link-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 600;
}

/* About Preview (Home Page) */
.about-preview {
    background: #f9f9f6;
    padding: 60px 0;
}

.about-preview .about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.about-preview .about-images {
    display: grid;
    gap: 20px;
}

.about-preview .about-text h2 {
    font-size: 2rem;
    color: #8b7355;
    margin-bottom: 25px;
}

.about-preview .about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #f0e8e0 0%, #e8ddd0 100%);
    border-radius: 12px;
}

.cta-section h2,
.cta-section h3 {
    font-size: 1.8rem;
    color: #8b7355;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

/* Footer */
footer {
    background: #8b7355;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-section a {
    color: #f5f5f0;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section .social-links {
    justify-content: center;
}

.footer-section .social-links a {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.footer-section .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.copyright {
    font-size: 0.9rem;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .logo {
        flex-direction: row;
        text-align: left;
        gap: 10px;
    }

    .logo img {
        width: 60px;
    }

    .brand h1 {
        font-size: 1.5rem;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 400px;
        padding: 10px 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        font-size: 1rem;
        padding: 12px 20px;
        border-radius: 0;
        width: 100%;
        text-align: left;
    }

    .nav-menu .nav-separator {
        margin-left: 0;
        border-top: 1px solid #e0e0e0;
        padding-top: 10px;
        margin-top: 10px;
    }

    .navbar {
        position: relative;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text h2 {
        font-size: 1.7rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-preview .about-content {
        grid-template-columns: 1fr;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .zip-codes {
        padding: 20px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header .lead {
        font-size: 1.1rem;
    }

    .coverage-content {
        grid-template-columns: 1fr;
    }

    .coverage-map {
        position: static;
    }

    .reference-photos {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .reference-photos img {
        height: 200px;
    }

    .pet-photos {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .pet-photos img {
        height: 200px;
    }

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

    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .brand h1 {
        font-size: 1.3rem;
    }

    .tagline {
        font-size: 0.8rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .testimonials h2,
    .about h2,
    .service-area h2,
    .contact h2,
    .services h2 {
        font-size: 1.6rem;
    }

    .page-header h1 {
        font-size: 1.7rem;
    }

    .button {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .button-secondary {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .reference-item {
        padding: 25px;
    }

    .reference-photos {
        grid-template-columns: 1fr;
    }

    .pet-photos {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 30px 20px;
    }

    .cta-section h2,
    .cta-section h3 {
        font-size: 1.5rem;
    }
}
