
/* --- Begin full CSS from home.html --- */
/* Collapsible pricing panel */
.collapse-panel { overflow: hidden; max-height: 0; transition: max-height .35s ease, padding .2s ease; padding: 0 .5rem; }
.collapse-panel.show { max-height: 600px; padding: 1rem .5rem; }
.pricing-list { text-align: left; margin: .25rem auto 0; max-width: 520px; }
.pricing-list li { display: flex; justify-content: space-between; padding: .35rem 0; border-bottom: 1px dashed var(--light-gray); }
.pricing-note { font-size: .9rem; opacity: .85; margin-top: .5rem; }
.btn-ghost { background: transparent; color: var(--medium-green); border: 1px solid var(--medium-green); }
.btn-ghost:hover { background: var(--medium-green); color: #fff; }
:root {
    --cream: #eae7d8;
    --dark-green: #316563;
    --medium-green: #448d8a;
    --light-green: #9dbb9f;
    --gray-green: #75908c;
    --light-gray: #b5bfb5;
    --white: #ffffff;
    --black: #333333;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

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

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--light-green);
    border-radius: 2px;
}

section {
    padding: 5rem 2rem;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--medium-green);
    color: white;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
}

.btn:focus-visible {
    outline: 3px solid rgba(49, 101, 99, 0.65);
    outline-offset: 2px;
}
.btn-secondary:focus-visible {
    outline: 3px solid rgba(255,255,255,0.85);
}
.btn-ghost:focus-visible {
    outline: 3px solid var(--medium-green);
    background-color: rgba(68,141,138,0.12);
}

.btn-accent {
    background: var(--light-green);
    color: var(--dark-green);
}

.btn-accent:hover {
    background: var(--gray-green);
    color: white;
}

.text-center {
    text-align: center;
}

/* Header & Navigation (match base color) */
header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: #eae7d8; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: var(--transition); }
.header-scrolled { padding: 10px 0; background: #eae7d8; }
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: #eae7d8;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-left: 10px;
}
.logo-text span { color: var(--medium-green); }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 2rem; }
.nav-links a { text-decoration: none; color: var(--black); font-weight: 500; transition: var(--transition); position: relative; padding-bottom: 5px; }
.nav-links a:after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--light-green); transition: var(--transition); }
.nav-links a:hover:after { width: 100%; }
.nav-links a:hover { color: var(--dark-green); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--dark-green); cursor: pointer; }
/* Hero Section */
.hero { position: relative; color: #ffffff; background-image: linear-gradient(135deg, rgba(28, 62, 60, 0.7), rgba(54, 112, 109, 0.64)), url("../assets/happybuddy-1920.webp"); background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 22, 21, 0.15) 0%, rgba(8, 22, 21, 0.6) 100%); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem; padding: 7rem 0 5rem; min-height: clamp(460px, 78vh, 640px); }
.hero-copy { max-width: 680px; padding: 2.5rem 2.75rem; background: rgba(20, 48, 47, 0.64); border-radius: 22px; box-shadow: 0 24px 60px rgba(10, 22, 22, 0.45); backdrop-filter: blur(6px); }
.hero-copy h1 { font-size: clamp(2.4rem, 4.4vw, 3.35rem); line-height: 1.1; margin-bottom: 1rem; color: #fff; text-shadow: 0 10px 28px rgba(0,0,0,.28); }
.hero-copy p { font-size: 1.15rem; margin-bottom: 1.5rem; color: rgba(242, 251, 249, 0.9); }
.tagline { font-style: italic; font-size: 1rem; letter-spacing: .1em; color: var(--light-green); text-transform: uppercase; margin-bottom: .85rem; display: inline-block; opacity: .92; }
.hero-cta-group { display: flex; flex-wrap: nowrap; gap: 14px; margin-top: 1.25rem; justify-content: center; align-items: center; }
.hero .btn { height: 48px; padding: 0 24px; border-radius: 999px; flex: 0 0 auto; }
.btn-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-secondary:hover { background: rgba(255,255,255,0.18); color: #fff; }
.hero-trust { display: flex; flex-wrap: nowrap; gap: .5rem .75rem; margin-top: 1.75rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .35rem; background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.22); padding: .45rem .75rem; border-radius: 999px; font-weight: 600; font-size: .95rem; backdrop-filter: blur(6px); white-space: nowrap; }
.hero-promise { margin-top: 1.1rem; color: rgba(234, 246, 245, 0.95); font-weight: 600; font-size: 1rem; }
.hero-award { margin-top: 1.1rem; font-size: 0.95rem; color: rgba(245, 255, 252, 0.9); }
/* How It Works */
.how-it-works { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.75rem; margin-top: 2.5rem; }
.step-card { background: rgba(255, 255, 255, 0.95); border-radius: 18px; padding: 1.75rem; box-shadow: var(--shadow); text-align: left; border: 1px solid rgba(68,141,138,0.12); }
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--dark-green); display: flex; align-items: center; gap: 0.65rem; }
.step-card p { color: rgba(21,41,40,0.85); line-height: 1.55; margin-bottom: 0.75rem; }
.step-number { width: 34px; height: 34px; border-radius: 50%; background: var(--light-green); color: var(--dark-green); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.steps-cta { margin-top: 2.25rem; text-align: center; }

/* About Section */
.about { background: var(--white); }
.about-content { display: flex; align-items: center; gap: 4rem; }
.about-text { flex: 1; }
.about-image { flex: 1; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.about-image img { width: 100%; height: auto; display: block; transition: var(--transition); }
.about-image img:hover { transform: scale(1.05); }
.specialist-text { display: grid; gap: 1.5rem; }
.specialist-intro { font-size: 1.1rem; color: rgba(21,41,40,0.92); }
.specialist-highlights { list-style: none; display: grid; gap: 1rem; margin: 0; padding: 0; }
.specialist-highlights li { display: flex; gap: 1rem; align-items: flex-start; padding: 1.15rem 1.25rem; background: rgba(234, 231, 216, 0.65); border: 1px solid rgba(68,141,138,0.18); border-radius: 12px; box-shadow: 0 10px 18px rgba(0,0,0,0.04); }
.specialist-icon { width: 48px; height: 48px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--white); color: var(--medium-green); box-shadow: 0 6px 14px rgba(68,141,138,0.18); flex-shrink: 0; font-size: 1.25rem; }
.specialist-highlights h3 { font-size: 1.05rem; margin-bottom: 0.35rem; color: var(--dark-green); }
.specialist-highlights p { margin: 0; color: rgba(21,41,40,0.85); line-height: 1.55; }
.specialist-note { border-left: 4px solid var(--medium-green); padding: 1rem 1.25rem; background: var(--cream); border-radius: 10px; color: rgba(21,41,40,0.9); box-shadow: 0 8px 16px rgba(0,0,0,0.04); }
.specialist-note strong { display: block; margin-bottom: 0.35rem; color: var(--dark-green); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; }

/* Services Section */
.services-cta { margin-top: 3rem; text-align: center; }
.services-cta p { margin-bottom: 1.5rem; color: var(--dark-green); font-size: 1.05rem; }

/* Testimonials */
.testimonials { background: linear-gradient(to right, var(--medium-green), var(--dark-green)); color: white; position: relative; overflow: hidden; }
.testimonials h2 { color: white; }
.testimonials h2:after { background: var(--light-green); }
.testimonial-container { max-width: 800px; margin: 0 auto; position: relative; }
.testimonial-slider { display: flex; transition: transform 0.5s ease; }
.testimonial { min-width: 100%; padding: 2rem; text-align: center; }
.testimonial-content { background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); border-radius: 15px; padding: 2.5rem; margin-bottom: 2rem; position: relative; }
.testimonial-content:after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); border-width: 15px 15px 0; border-style: solid; border-color: rgba(255, 255, 255, 0.15) transparent transparent; }
.client-info { display: flex; align-items: center; justify-content: center; }
.client-image { width: 70px; height: 70px; border-radius: 50%; overflow: hidden; margin-right: 15px; border: 3px solid var(--light-green); }
.client-image img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-controls { display: flex; justify-content: center; margin-top: 2rem; gap: 1rem; }
.testimonial-controls button { background: rgba(255, 255, 255, 0.2); border: none; width: 50px; height: 50px; border-radius: 50%; color: white; font-size: 1.2rem; cursor: pointer; transition: var(--transition); }
.testimonial-controls button:hover { background: var(--light-green); color: var(--dark-green); }

/* Footer */
footer { background: var(--dark-green); color: white; padding: 4rem 0 2rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 2rem; margin-bottom: 1rem; color: white; }
.footer-logo span { color: var(--light-green); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255, 255, 255, 0.15); border-radius: 50%; color: white; transition: var(--transition); }
.social-icon:hover { background: var(--light-green); color: var(--dark-green); transform: translateY(-3px); }
.footer-heading { font-size: 1.3rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 10px; }
.footer-heading:after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background: var(--light-green); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--light-green); padding-left: 5px; }
.copyright { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }

/* Service area badge */
.service-area { background: var(--light-green); color: var(--dark-green); padding: 8px 20px; border-radius: 30px; font-size: 0.9rem; font-weight: 600; display: inline-block; margin-top: 1rem; box-shadow: 0 4px 10px rgba(157, 187, 159, 0.3); }

/* Quote section */
.quote-section { background: linear-gradient(to right, var(--light-green), var(--gray-green)); padding: 4rem 0; text-align: center; color: var(--dark-green); }
.quote-section h2 { color: var(--dark-green); margin-bottom: 1.5rem; }
.quote-section h2:after { background: var(--medium-green); left: 50%; transform: translateX(-50%); }
.quote-text { max-width: 700px; margin: 0 auto 2rem; font-size: 1.2rem; font-style: italic; }
.faq-list { display: grid; gap: 1rem; }
.faq-item .btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; text-align: left; padding: 1rem 1.25rem; }
.faq-item .btn span { display: inline-flex; align-items: center; gap: 0.6rem; flex: 1; }
.faq-item .btn i.fa-chevron-down { flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item .btn[aria-expanded="true"] i.fa-chevron-down { transform: rotate(180deg); }

/* Animation Classes */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.appear { opacity: 1; transform: translateY(0); }

/* Responsive Design */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    .about-content { flex-direction: column; gap: 2rem; }
    .hero-inner { min-height: auto; padding: 6.5rem 0 4.5rem; }
    .hero-copy { padding: 2.25rem 2.5rem; }
}
@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    .nav-links { position: fixed; top: 80px; right: -100%; flex-direction: column; background: var(--cream); width: 100%; height: calc(100vh - 80px); padding: 2rem; transition: var(--transition); box-shadow: -5px 0 15px rgba(0,0,0,0.1); }
    .nav-links.active { right: 0; }
    .nav-links li { margin: 1.5rem 0; }
    .hero-copy { padding: 2rem; border-radius: 20px; }
    .hero-copy h1 { font-size: clamp(2.1rem, 7vw, 2.75rem); }
    .hero-copy p { font-size: 1.05rem; }
}
@media (max-width: 720px) {
    .hero-cta-group, .hero-trust { flex-wrap: wrap; }
}
@media (max-width: 576px) {
    section { padding: 3rem 1.5rem; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero { background-position: 58% center; }
    .hero-copy { padding: 1.75rem; border-radius: 18px; }
    .specialist-highlights li { flex-direction: column; }
    .specialist-icon { margin-bottom: 0.5rem; }
}

/* Toasts */
#toast-container { position: fixed; right: 1rem; bottom: 1rem; z-index: 2000; display: grid; gap: .5rem; }
.toast { min-width: 280px; max-width: 360px; padding: .8rem 1rem; border-radius: 8px; box-shadow: var(--shadow); color: #1b1b1b; background: #fff; border-left: 6px solid var(--light-green); animation: slideIn .25s ease; }
.toast.success { border-left-color: #2e7d32; }
.toast.info    { border-left-color: #0277bd; }
.toast.warn    { border-left-color: #f9a825; }
.toast.error   { border-left-color: #c62828; }
.toast .title { font-weight: 600; margin-bottom: .15rem; }
.toast .msg { opacity: .9; }
.toast .close { background: none; border: 0; font-size: 1rem; float: right; cursor: pointer; }
@keyframes slideIn { from { transform: translateY(10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* --- Pet Taxi Estimator styling (no Bootstrap dependency) --- */
#estimate { padding: 2rem 0; }
#estimate .section-card { background: var(--white); border-radius: 10px; box-shadow: var(--shadow); padding: 1.5rem; }
#estimate h5 { color: var(--dark-green); }
#estimate .row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
#estimate .col-md-3 { width: 100%; }
#estimate .form-label { display: block; font-weight: 500; color: var(--dark-green); }
#estimate .form-control, #estimate .form-select { width: 100%; padding: 10px 12px; border: 1px solid var(--light-gray); border-radius: 6px; font-family: inherit; font-size: 1rem; background: var(--cream); transition: var(--transition); }
#estimate .form-control:focus, #estimate .form-select:focus { border-color: var(--medium-green); outline: none; box-shadow: 0 0 0 3px rgba(68,141,138,0.2); }
#estimate .form-check { display: inline-flex; align-items: center; margin-right: 1rem; }
#estimate .form-check-input { margin-right: .35rem; }
#estimate .form-check-inline { display: inline-flex; align-items: center; margin-right: 1rem; }
#estimate .mt-2 { margin-top: .5rem; }
#estimate .mt-3 { margin-top: 1rem; }
#estimate .mb-3 { margin-bottom: 1rem; }
#estimate .btn-accent { margin-top: .25rem; }
#estimate #fare-result { color: var(--dark-green); }
@media (max-width: 992px) { #estimate .row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 576px) { #estimate .row { grid-template-columns: 1fr; } }
/* --- End full CSS from home.html --- */
