/* =========================
   GLOBAL FIXES
========================= */
html,
body {
    overflow-x: hidden;
}

/* =========================
   RESET
========================= */

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

/* =========================
   GLOBAL
========================= */

body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
}

.nav-links a:hover {
    color: #2f7a7a;
}

.btn-primary {
    text-decoration: none;
    background: #2f7a7a;
    color: white;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: .3s ease;
}

.btn-primary:hover {
    background: #245f5f;
}

/* =========================
   MOBILE MENU
========================= */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .nav-links {
        gap: 1rem;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

.navbar {
     position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 1rem 0;
}

   .menu-toggle {
       display: block;
}

.nav-links {
    display: none;
}

.navbar .btn-primary {
    display: none;
}   

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    gap: 1rem;
    min-width: 220px;
    z-index: 999;
}
   
    .logo {
        font-size: 2rem;
        text-align: center;
    }

    .nav-links a {
        font-size: 1rem;
}

   .btn-primary {
        width: 100%;
        max-width: 320px;
        text-align: center;
}

   .hero {
    min-height: auto;
    padding: 4rem 0;
    background-position: center center;
}

.hero-content {
    max-width: 100%;
    width: 100%;
    padding: 0 1.5rem;
    margin: 0;
}

.hero h1 {
    font-size: 1.8rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.hero-buttons a {
    width: 100%;
    text-align: center;
}

    .trust-grid,
    .services-grid,
    .features-grid,
    .testimonials-grid,
    .footer-grid,
    .about-grid {
        grid-template-columns: 1fr;
}
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    min-height: 800px;

    display: flex;
    align-items: center;

    background-image: url('../images/Hero-vet-banner.jpg');
    background-size: cover;
    background-position: center;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 650px;

    color: white;

}

.hero-tagline {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 1rem;

    color: #d9e7df;
}

.hero h1 {
    font-family: 'Playfair Display', serif;

    font-size: 4.5rem;
    line-height: 1.1;

    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;

    margin-bottom: 2rem;

    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-secondary {
    text-decoration: none;

    color: white;

    border: 2px solid white;

    padding: 14px 24px;

    border-radius: 999px;

    font-weight: 600;

    transition: .3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #1f2937;
}

/* =========================
   HERO MOBILE
========================= */

@media (max-width: 768px) {

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

}

/* =========================
   TRUST BAR
========================= */

.trust-bar {
    background: #ffffff;
    padding: 4rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item h3 {
    font-size: 2.5rem;
    color: #2f7a7a;
    margin-bottom: .5rem;
}

.trust-item p {
    color: #64748b;
    font-size: 1rem;
}

/* =========================
   TRUST BAR MOBILE
========================= */

@media (max-width: 768px) {

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

}

/* =========================
   SERVICES
========================= */

.services {
    padding: 6rem 0;
    background: #f8faf9;
}

.section-tag {
    text-align: center;
    color: #2f7a7a;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #1f2937;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
}

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

/* =========================
   SERVICES MOBILE
========================= */

@media (max-width: 900px) {

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

}

@media (max-width: 768px) {

    .section-title {
        font-size: 2.2rem;
    }

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

}

/* =========================
   ABOUT
========================= */

.about {
    padding: 7rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 24px;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* =========================
   ABOUT MOBILE
========================= */

@media (max-width: 900px) {

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

}

/* =========================
   FEATURES
========================= */

.features {
    padding: 7rem 0;
    background: #eef5f3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #64748b;
    line-height: 1.8;
}

@media (max-width: 900px) {

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

}

@media (max-width: 768px) {

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

}

/* =========================
   TESTIMONIALS
========================= */

.testimonials {
    padding: 7rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #f8faf9;
    padding: 2.5rem;
    border-radius: 20px;
}

.stars {
    color: #d4a017;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.testimonial-card h4 {
    color: #1f2937;
}

/* =========================
   TESTIMONIALS MOBILE
========================= */

@media (max-width: 900px) {

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

}

/* =========================
   CTA
========================= */

.cta-section {
    padding: 7rem 0;
    background: #f8faf9;
}

.cta-box {
    background: #2f7a7a;
    color: white;
    text-align: center;
    padding: 5rem 3rem;
    border-radius: 30px;
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 1rem 0;
}

.cta-box p {
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    color: rgba(255,255,255,.9);
}

.cta-box .section-tag {
    color: rgba(255,255,255,.8);
}

.cta-box .btn-primary {
    background: white;
    color: #2f7a7a;
}

.cta-box .btn-primary:hover {
    background: #f1f5f9;
}

@media (max-width: 768px) {

    .cta-box h2 {
        font-size: 2.2rem;
    }

}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: #2f7a7a;
    color: white;
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-grid h3,
.footer-grid h4 {
    margin-bottom: 1rem;
}

.footer-grid p,
.footer-grid li {
    color: #cbd5e1;
    line-height: 1.8;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid a {
    text-decoration: none;
    color: #cbd5e1;
}

.footer-grid a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: 3rem;
    padding: 2rem 0;
    color: rgba(255,255,255,.75);
}

@media (max-width: 900px) {

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

}
