/* Premier Medical Transit - Static Site Stylesheet */
/* Brand Colors: Royal Blue #1e40af, Teal #0f7b7d, Coral #e07c5a, Navy #1e3a5f */

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1f2937;
    background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #0f7b7d; text-decoration: none; transition: color 0.2s; }
a:hover { color: #0a5c5e; }
ul, ol { padding-left: 1.5rem; }
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; color: #1e3a5f; line-height: 1.2; }
h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 1.875rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.content-narrow { max-width: 800px; margin: 0 auto; }

/* ============================================================
   TOP RIBBON
   ============================================================ */
.top-ribbon {
    background: #1e40af;
    color: #fff;
    font-size: 0.8125rem;
    padding: 0.5rem 0;
}
.ribbon-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ribbon-left {
    display: none;
}
@media (min-width: 768px) {
    .ribbon-left { display: flex; align-items: center; gap: 0.5rem; }
}
.ribbon-tagline { font-style: italic; opacity: 0.9; }
.ribbon-dot { opacity: 0.5; }
.ribbon-phone {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
    white-space: nowrap;
}
.ribbon-phone:hover { color: #fbbf24; }

/* Pulse animation for "Call for Availability" */
.pulse-subtle {
    animation: pulse-subtle 1.5s ease-in-out infinite;
    font-weight: 600;
}
@keyframes pulse-subtle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo img {
    height: 56px;
    width: auto;
}
@media (min-width: 768px) {
    .header-logo img { height: 72px; }
}
.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.25rem;
}
@media (min-width: 1024px) {
    .desktop-nav { display: flex; }
}
.nav-link {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: #0f7b7d; }

/* Dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle,
.nav-dropdown > button {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    font-family: inherit;
}
.nav-dropdown-toggle:hover,
.nav-dropdown > button:hover { color: #0f7b7d; }
.nav-dropdown-menu,
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    min-width: 220px;
    padding: 0.5rem 0;
    z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    display: block;
}
.nav-dropdown-menu a,
.dropdown-menu a,
.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    color: #374151;
    font-size: 0.875rem;
    transition: background 0.15s;
}
.nav-dropdown-menu a:hover,
.dropdown-menu a:hover,
.dropdown-item:hover {
    background: #f3f4f6;
    color: #0f7b7d;
}

/* Header buttons */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.btn-call {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: #0f7b7d;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s;
}
.btn-call:hover { background: #0a5c5e; color: #fff; }
.btn-book {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: #e07c5a;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s;
}
.btn-book:hover { background: #c9694a; color: #fff; }

/* Mobile menu button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
}
@media (min-width: 1024px) {
    .mobile-menu-btn { display: none; }
}
.mobile-menu-btn svg { width: 24px; height: 24px; stroke: #374151; }

/* Mobile nav */
.mobile-nav {
    display: none;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 150;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    color: #374151;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
}
.mobile-nav a:hover { color: #0f7b7d; }
.mobile-nav-section {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}
.mobile-nav-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #6b7280;
    padding: 0.5rem 0 0.25rem;
}
.mobile-nav-section a {
    padding: 0.5rem 0 0.5rem 1rem;
    font-size: 0.9375rem;
    border-bottom: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-coral {
    display: inline-block;
    background: #e07c5a;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
}
.btn-coral:hover { background: #c9694a; color: #fff; transform: translateY(-1px); }
.btn-teal {
    display: inline-block;
    background: #0f7b7d;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
}
.btn-teal:hover { background: #0a5c5e; color: #fff; transform: translateY(-1px); }
.btn-outline-teal {
    display: inline-block;
    background: transparent;
    color: #0f7b7d;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid #0f7b7d;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    cursor: pointer;
}
.btn-outline-teal:hover { background: #0f7b7d; color: #fff; transform: translateY(-1px); }
.btn-large { padding: 1rem 2rem; font-size: 1.0625rem; }

/* ============================================================
   HERO SECTION (Inner pages)
   ============================================================ */
.page-hero {
    background: #0f7b7d;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.1) 1px, transparent 0);
    background-size: 20px 20px;
    padding: 4rem 0;
    text-align: center;
}
.page-hero h1 {
    color: #fff;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}
.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   HOME HERO
   ============================================================ */
.home-hero {
    padding: 3rem 0;
    background: #fff;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 768px) {
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .home-hero { padding: 4rem 0; }
}
.home-hero-title {
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .home-hero-title { font-size: 2.75rem; }
}
.home-hero-subtitle {
    color: #4b5563;
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.hero-photo {
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* Trust badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #374151;
    font-weight: 500;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section-white { padding: 4rem 0; background: #fff; }
.section-gray { padding: 4rem 0; background: #f9fafb; }
.section-medicaid { padding: 4rem 0; background: #f0fdfa; }
.section-heading {
    text-align: center;
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 0.75rem;
}
.section-heading-left {
    font-size: 1.875rem;
    color: #1e3a5f;
    margin-bottom: 0.75rem;
}
.section-subheading {
    text-align: center;
    color: #6b7280;
    font-size: 1.0625rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
    display: block;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    color: inherit;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    color: inherit;
}
.service-icon {
    width: 48px;
    height: 48px;
    background: #0f7b7d;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.service-card-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.125rem;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}
.service-card-desc {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ============================================================
   MEDICAID SECTION
   ============================================================ */
.medicaid-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 768px) {
    .medicaid-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.medicaid-photo {
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    width: 100%;
}

/* ============================================================
   COUNTIES / WHERE WE SERVE
   ============================================================ */
.counties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .counties-grid { grid-template-columns: repeat(3, 1fr); } }
.county-card {
    background: #f0fdfa;
    border: 1px solid #d1fae5;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}
.county-card h3 { color: #0f7b7d; font-size: 1.125rem; margin-bottom: 0.25rem; }
.county-card p { color: #6b7280; font-size: 0.875rem; margin-bottom: 0; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
    text-align: center;
    padding: 1.5rem;
}
.step-number {
    width: 48px;
    height: 48px;
    background: #0f7b7d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}
.step-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.step-card p { color: #6b7280; font-size: 0.9375rem; margin-bottom: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
}
.testimonial-stars { color: #f59e0b; font-size: 1.25rem; margin-bottom: 0.75rem; }
.testimonial-quote {
    color: #374151;
    font-size: 0.9375rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.testimonial-author strong { display: block; color: #1e3a5f; }
.testimonial-author span { color: #6b7280; font-size: 0.8125rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: #f9fafb;
    padding: 4rem 0;
    text-align: center;
}
.cta-section h2 {
    font-family: 'DM Serif Display', serif;
    color: #0f7b7d;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.cta-section p {
    color: #6b7280;
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
}
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #1e40af;
    color: #fff;
    padding: 3rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.footer-brand p { color: rgba(255,255,255,0.8); font-size: 0.875rem; line-height: 1.6; }
.footer-brand img { height: 48px; margin-bottom: 0.75rem; filter: brightness(0) invert(1); }
.footer-col h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #fff;
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    padding: 0.25rem 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: #fbbf24; }
.footer-van {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 1.5rem;
}
.footer-van img {
    max-width: 300px;
    margin: 0 auto;
    opacity: 0.9;
}
.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-section { margin-bottom: 2rem; }
.form-section h3 {
    font-family: 'DM Serif Display', serif;
    color: #1e3a5f;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0f7b7d;
    box-shadow: 0 0 0 3px rgba(15,123,125,0.1);
}
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
}
.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.125rem;
    flex-shrink: 0;
}
.form-checkbox label {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.5;
}
.form-disclaimer {
    font-size: 0.8125rem;
    color: #6b7280;
    margin-top: 1rem;
    text-align: center;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { list-style: none; padding: 0; }
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a5f;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: background 0.15s;
}
.faq-question:hover { background: #f9fafb; }
.faq-question .faq-icon {
    font-size: 1.25rem;
    transition: transform 0.2s;
    color: #0f7b7d;
}
.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer {
    display: none;
    padding: 0 1.25rem 1rem;
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-card {
    display: block;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    color: inherit;
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    color: inherit;
}
.blog-badge {
    display: inline-block;
    background: #f0fdfa;
    color: #0f7b7d;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}
.blog-card h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.blog-card p { color: #6b7280; margin-bottom: 0.75rem; }
.blog-date { color: #9ca3af; font-size: 0.8125rem; }
.blog-read-more { color: #0f7b7d; font-weight: 600; font-size: 0.875rem; display: block; margin-top: 0.75rem; }

/* Article content */
.article-content h2 { margin-top: 2rem; }
.article-content ul, .article-content ol { margin-bottom: 1rem; }
.article-content li { margin-bottom: 0.5rem; }
.article-meta { color: #6b7280; font-size: 0.875rem; margin-bottom: 2rem; }

/* ============================================================
   CAREERS
   ============================================================ */
.hiring-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dcfce7;
    color: #166534;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}
.pulse-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.requirements-list { margin-bottom: 2rem; }
.requirements-list li { margin-bottom: 0.5rem; color: #374151; }
.certs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
@media (min-width: 640px) { .certs-grid { grid-template-columns: repeat(2, 1fr); } }
.cert-card {
    display: block;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s;
    color: inherit;
}
.cert-card:hover { border-color: #0f7b7d; color: inherit; }
.cert-card strong { display: block; color: #1e3a5f; font-size: 0.875rem; }
.cert-card span { color: #6b7280; font-size: 0.75rem; }
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-card {
    background: #f0fdfa;
    border: 1px solid #d1fae5;
    border-radius: 0.75rem;
    padding: 1.5rem;
}
.benefit-card h3 { color: #0f7b7d; font-size: 1rem; margin-bottom: 0.5rem; }
.benefit-card p { color: #4b5563; font-size: 0.875rem; margin-bottom: 0; }

/* ============================================================
   TEAM PHOTO
   ============================================================ */
.team-photo {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    margin-bottom: 0.75rem;
}
.team-photo-section { margin-bottom: 3rem; }
.photo-caption {
    text-align: center;
    color: #6b7280;
    font-size: 0.8125rem;
    font-style: italic;
    margin-bottom: 2rem;
}

/* ============================================================
   DIALYSIS CENTERS
   ============================================================ */
.centers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (min-width: 640px) { .centers-grid { grid-template-columns: repeat(2, 1fr); } }
.center-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
}
.center-card h3 { color: #1e3a5f; font-size: 1.125rem; margin-bottom: 0.5rem; }
.center-address { color: #374151; font-size: 0.875rem; margin-bottom: 0.25rem; }
.center-county { color: #6b7280; font-size: 0.8125rem; margin-bottom: 0.25rem; }
.center-type { color: #0f7b7d; font-size: 0.8125rem; font-weight: 500; margin-bottom: 0.25rem; }
.center-phone a { color: #0f7b7d; font-weight: 500; }

/* ============================================================
   GO-BAG STORE
   ============================================================ */
.product-images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 640px) { .product-images-grid { grid-template-columns: repeat(3, 1fr); } }
.product-image-card { text-align: center; }
.product-image-wrapper {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 0.75rem;
}
.product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0.75rem;
}
.popular-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #e07c5a;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    z-index: 5;
}
.product-image-label {
    font-weight: 600;
    color: #1e3a5f;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}
.product-disclaimer {
    font-size: 0.6875rem;
    color: #9ca3af;
    font-style: italic;
    margin-bottom: 0;
}

/* Tier cards */
.tier-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (min-width: 640px) { .tier-grid { grid-template-columns: repeat(3, 1fr); } }
.tier-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}
.tier-popular {
    border-color: #0f7b7d;
    box-shadow: 0 5px 20px rgba(15,123,125,0.15);
}
.tier-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #0f7b7d;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
}
.tier-name { font-size: 1.25rem; margin-bottom: 0.5rem; }
.tier-price { font-size: 2rem; font-weight: 700; color: #0f7b7d; margin-bottom: 1rem; font-family: 'Inter', sans-serif; }
.tier-items { list-style: none; padding: 0; text-align: left; margin-bottom: 1.5rem; }
.tier-items li {
    padding: 0.375rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.875rem;
    color: #374151;
}
.tier-items li:last-child { border-bottom: none; }

/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */
.service-detail-card {
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}
.service-detail-card:last-child { border-bottom: none; }
.service-detail-content h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.feature-list, .feature-list-large {
    list-style: none;
    padding: 0;
}
.feature-list li, .feature-list-large li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #374151;
}
.feature-list li::before, .feature-list-large li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0f7b7d;
    font-weight: 700;
}
.feature-list-large li { font-size: 1.0625rem; padding: 0.75rem 0 0.75rem 1.75rem; }
.lead-text { font-size: 1.125rem; color: #374151; line-height: 1.8; margin-bottom: 2rem; }

/* ============================================================
   INFO BOX
   ============================================================ */
.info-box {
    background: #f0fdfa;
    border: 1px solid #d1fae5;
    border-radius: 0.75rem;
    padding: 1.5rem;
}
.info-box h3 { color: #0f7b7d; margin-bottom: 0.75rem; }
.info-box p { font-size: 0.9375rem; color: #374151; }
.info-box p:last-child { margin-bottom: 0; }

/* ============================================================
   PARTNER LIST
   ============================================================ */
.partner-list li { margin-bottom: 0.5rem; color: #374151; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-muted { color: #6b7280; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 767px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    .section-white, .section-gray, .section-medicaid { padding: 2.5rem 0; }
    .cta-section { padding: 2.5rem 0; }
    .page-hero { padding: 2.5rem 0; }
    .page-hero h1 { font-size: 1.75rem; }
}


/* ============================================================
   FORM SUCCESS / ERROR MESSAGE BANNERS
   ============================================================ */
.form-message {
    padding: 1.25rem 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    animation: formMessageFadeIn 0.4s ease-out;
}
.form-message.success {
    background: #ecfdf5;
    border: 2px solid #10b981;
    color: #065f46;
}
.form-message.success .form-message-icon { color: #10b981; }
.form-message.error {
    background: #fef2f2;
    border: 2px solid #ef4444;
    color: #991b1b;
}
.form-message.error .form-message-icon { color: #ef4444; }
.form-message-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.form-message-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.form-message p { margin-bottom: 0.5rem; }
.form-message p:last-child { margin-bottom: 0; }
.form-message a { color: inherit; font-weight: 600; text-decoration: underline; }
@keyframes formMessageFadeIn {
    from { opacity: 0; transform: translateY(-0.5rem); }
    to   { opacity: 1; transform: translateY(0); }
}
