/* =========================================
   ROOT VARIABLES — BRAND COLORS & SIZING
========================================= */
:root {
    --green: #0EA431;
     /* Brand Green */
    --blue: #0057A6;      /* Brand Blue */
    --dark: #0f172a;
    --muted: #64748b;
    --bg: #ffffff;
    --bg-muted: #f1f5f9;
    --radius: 0.75rem;
    --radius-lg: 1.25rem;

    --shadow-soft: 0 18px 40px rgba(0,0,0,0.06);
    --shadow-card: 0 10px 25px rgba(0,0,0,0.05);

    --line-height: 1.6;
}

/* =========================================
   GLOBAL RESET & BASE STYLES
========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: var(--line-height);
}

/* Universal link cleanup */
a {
    text-decoration: none !important;
    color: inherit !important;
}
a:hover {
    color: var(--green) !important;
}
a:visited {
    color: inherit !important;
}

/* Container */
.container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

section {
    padding: 4rem 0;
}

/* =========================================
   HEADER
========================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0;
    gap: 1rem;
}

/* Brand */
.brand,
.brand-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Logo image in header */
.brand-logo {
    height: 46px;
    width: auto;
    display: block;
    object-fit: contain;
}

.brand-mark {
    width: 42px;
    height: 42px;
    background: var(--green);
    border-radius: 50%;
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-mark {
    background: var(--blue);
}

.brand-title {
    font-size: 1rem;
    font-weight: 600;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--muted);
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 1rem;
}

.nav-link {
    font-size: 0.92rem;
    padding: 0.25rem 0.1rem;
}

.nav-link:hover {
    color: var(--green) !important;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone .phone-number {
    font-weight: bold;
    color: var(--blue) !important;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--dark);
    border-radius: 4px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-nav-open {
    display: flex;
}

/* Hamburger animation */
.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    padding: 4.5rem 0;
}

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

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    font-weight: normal;
    color: var(--green);
}

.hero-left h1 {
    margin: 1rem 0;
    font-size: 2.6rem;
    line-height: 1.25;
}

.hero-text {
    color: var(--muted);
    margin-bottom: 1.75rem;
    max-width: 520px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.4rem;
    border-radius: 100px;
    font-weight: bold;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--green);
    color: #fff !important;
}
.btn-primary:hover {
    background: #0ea733;
}

.btn-ghost {
    background: #fff;
    border: 1px solid #d0d7df;
    color: var(--blue) !important;
}
.btn-ghost:hover {
    background: #eef2f6;
}

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

/* Meta info */
.hero-meta {
    margin-top: 1.75rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.meta-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 0.9rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
}

.meta-label {
    color: var(--muted);
    font-size: 0.75rem;
    text-transform: uppercase;
}

.meta-value {
    font-weight: normal;
}

/* Hero image */
.hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

/* Meta item with icon */
.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 0.9rem;
    border-radius: var(--radius);
}

.meta-icon {
    width: 24px;
    height: 24px;
    color: var(--green);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meta-icon svg {
    width: 22px;
    height: 22px;
}

.meta-text {
    display: flex;
    flex-direction: column;
}

.meta-label {
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.meta-value {
    font-size: 0.92rem;
    font-weight: normal; /* unbolded as requested */
}

/* =========================================
   CORE SERVICES
========================================= */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    margin: 0;
    font-size: 2.1rem;
}

.section-header p {
    margin-top: 0.5rem;
    color: var(--muted);
}

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

.card {
    background: #fff;
    padding: 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border: 1px solid #e2e8f0;
}

/* =========================================
   IV HYDRATION FEATURE
========================================= */
.section-muted {
    background: var(--bg-muted);
}

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

.iv-text {
    color: var(--muted);
}

.iv-highlight {
    margin: 1rem 0;
    font-weight: bold;
    color: var(--green);
}

.iv-menu-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.iv-list {
    list-style: none;
    padding: 0;
}

.iv-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.iv-list strong {
    font-weight: normal;
}

/* =========================================
   BLUE CTA SECTION (THE ONE YOU SAID WAS MISSING)
========================================= */
.section-accent {
    background: var(--blue);
    color: #fff;
}

.callout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.callout-text h2 {
    margin: 0 0 0.6rem;
    font-size: 2rem;
}

.callout-text p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.callout-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-light {
    background: #e6f9ec;
    color: var(--green) !important;
}
.btn-outline-light {
    border: 1px solid #fff;
    color: #fff !important;
}

/* =========================================
   TESTIMONIALS
========================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 1.75rem;
}

.testimonial {
    background: #fff;
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-card);
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
    background: #0f172a;
    color: #d1d5db;
    margin-top: 3rem;
}

.footer-grid {
    padding: 3rem 1.25rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    font-size: 0.92rem;
}

.footer-list li + li {
    margin-top: 0.6rem;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
========================================= */
@media (max-width: 950px) {
    .main-nav,
    .header-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-grid,
    .iv-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .callout {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 550px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 950px) {
    .hero-meta {
        grid-template-columns: 1fr; /* stack items vertically */
    }
}


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

.about-hero {
    background: var(--blue);
    color: #fff;
    padding: 4.5rem 0 3rem;
    text-align: center;
}

.hero-narrow {
    max-width: 700px;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-img-box {
    text-align: center;
}

.about-img {
    width: 100%;
    max-width: 460px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* Stats Section */
.stats-section {
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--blue);
}

.stat-label {
    margin-top: 0.5rem;
    color: var(--muted);
}

/* Why Choose Us */
.center-text {
    text-align: center;
}

.why-sub {
    text-align: center;
    max-width: 650px;
    margin: 0.5rem auto 2.5rem;
    color: var(--muted);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 2rem;
}

.why-card {
    padding: 1.75rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-card);
    text-align: left;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

.services-hero {
    background: var(--blue);
    color: #fff;
    padding: 4.5rem 0 3rem;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-card {
    padding: 1.75rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-card);
    text-align: left;
}

.service-card h3 {
    margin: 0.5rem 0 0.7rem;
}

/* Generic service icon (circle with plus) */
.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}


.highlight-service {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(17,191,61,0.1);
}

/* Responsive */
@media (max-width: 900px) {
    .services-hero {
        padding: 3.5rem 0 2rem;
    }
}

/* ============================
   IV HYDRATION PAGE
============================ */

.iv-hero {
    background: var(--blue);
    color: #fff;
    padding: 4.5rem 0 3rem;
}

/* Intro section */
.iv-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.iv-intro-img-box {
    text-align: center;
}

.iv-intro-img {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* Menu Grid */
.iv-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.iv-menu-card {
    padding: 1.75rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-card);
}

.price {
    color: var(--green);
    font-weight: bold;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-card);
}

/* Responsive */
@media (max-width: 900px) {
    .iv-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* =========================================
   APPOINTMENT PAGE
========================================= */

.appointment-hero {
    background: var(--blue);
    color: #fff;
    padding: 4.5rem 0 3rem;
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.appointment-text p {
    color: var(--muted);
}

.walkin {
    margin-top: 1rem;
    font-weight: bold;
    color: var(--green);
}

/* Appointment Form */
.appointment-form-box {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid #e2e8f0;
}

.appointment-form .form-group {
    margin-bottom: 1.2rem;
}

.appointment-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius);
    font-size: 1rem;
}

.appointment-form input:focus,
.appointment-form textarea:focus,
.appointment-form select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(14, 164, 49, 0.15);
}

.full-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .appointment-grid {
        grid-template-columns: 1fr;
    }

    .appointment-form-box {
        margin-top: 2rem;
    }
}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-hero {
    background: var(--blue);
    color: #fff;
    padding: 4.5rem 0 3rem;
}

/* Main grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Info section */
.contact-info-box p {
    color: var(--muted);
}

.contact-details {
    margin-top: 1rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form-box {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid #e2e8f0;
}

.contact-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(14,164,49,0.15);
}

.full-btn {
    width: 100%;
}

/* Map */
.map-box {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.map-box iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        margin-top: 2rem;
    }
}

/* =========================================
   THANK YOU PAGE
========================================= */

.thankyou-hero {
    text-align: center;
    padding: 6rem 0 4rem;
}

.thankyou-sub {
    color: var(--muted);
    margin: 0.75rem auto 2rem;
    max-width: 600px;
}

.thankyou-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media (max-width: 600px) {
    .thankyou-actions {
        flex-direction: column;
    }
}

