@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;600;700&family=Merriweather:ital,wght@0,700;1,400&display=swap');


* { margin: 0; padding: 0; box-sizing: border-box; }


:root {
    --blue:    #1b7db6;
    --blue-dk: #155f8a;
    --blue-lt: #e8f4fd;
    --green:   #4caf50;
    --green-dk:#388e3c;
    --green-lt:#f0faf0;
    --red:     #c0392b;
    --gray-bg: #f5f7f9;
    --gray-bd: #e2e8ef;
    --text:    #2c3e50;
    --muted:   #637382;
    --white:   #ffffff;
    --radius:  10px;
    --shadow:  0 2px 16px rgba(27,125,182,.10);
    --font-body: 'Source Sans 3', Arial, sans-serif;
    --font-head: 'Merriweather', Georgia, serif;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main { flex: 1; }

/* ── HEADER ── */
.site-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--blue);
    padding: 14px 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,.18);
}

.logo img { height: 72px; width: auto; display: block; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 15px;
    padding: 8px 13px;
    border-radius: 5px;
    transition: background .2s ease;
    white-space: nowrap;
}

.main-nav a:hover { background: rgba(255,255,255,.22); }
.main-nav a.active { background: rgba(255,255,255,.28); }

/* ── DROPDOWN ── */
.dropdown { position: relative; }

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--blue-dk);
    min-width: 200px;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(0,0,0,.22);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease;
    z-index: 1000;
}

.dropdown-content a {
    display: block;
    padding: 11px 16px;
    font-size: 14px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background: rgba(255,255,255,.15); }

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown .dropbtn {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 15px;
    padding: 8px 13px;
    border-radius: 5px;
    cursor: default;
}

.dropdown .dropbtn:hover { background: rgba(255,255,255,.22); }

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px; height: 20px;
    background: none; border: none;
    cursor: pointer; margin-left: auto; padding: 0;
}

.hamburger span {
    display: block; height: 3px; width: 100%;
    background: var(--white); border-radius: 3px;
    transition: all .3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ── PAGE HERO BANNER ── */
.page-hero {
    background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 100%);
    padding: 46px 50px 40px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    pointer-events: none;
}

.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(22px, 4vw, 34px);
    color: var(--white);
    position: relative;
    margin-bottom: 8px;
}

.page-hero p {
    color: rgba(255,255,255,.82);
    font-size: 16px;
    max-width: 600px;
    position: relative;
}

/* ── SECTION WRAPPER ── */
.page-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 24px 60px;
}

.operating-hours-page {
    max-width: 1180px;
}

.contact-page {
    max-width: 1180px;
}

/* ── SECTION TITLES ── */
.section-title {
    font-family: var(--font-head);
    font-size: 20px;
    color: var(--green-dk);
    margin-bottom: 18px;
    padding-bottom: 9px;
    border-bottom: 3px solid var(--green);
}

/* ── CARDS ── */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 26px;
    border-top: 4px solid var(--blue);
}

.card-green { border-top-color: var(--green); }

/* ── PROSE ── */
.prose { font-size: 16px; line-height: 1.75; color: var(--text); }
.prose + .prose { margin-top: 16px; }

/* ── INFO GRID (2-col) ── */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 24px;
}

/* ── STAT PILLS ── */
.stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0;
}

.stat-pill {
    background: var(--blue-lt);
    border: 1px solid #c5dff0;
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-dk);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── CHECKLIST ── */
.checklist { list-style: none; padding: 0; }
.checklist li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 15px;
    border-bottom: 1px solid var(--gray-bd);
    line-height: 1.5;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
    content: '\2022';
    position: absolute; left: 0;
    color: var(--green); font-weight: 700; font-size: 15px;
}

/* ── NOTICE BOX ── */
.notice {
    background: #fffbe6;
    border-left: 5px solid #f0a500;
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 16px 20px;
    font-size: 15px;
    color: #5a3e00;
    line-height: 1.6;
    margin: 24px 0;
}

.notice strong { font-weight: 700; }

/* ── FOOTER ── */
.site-footer {
    position: relative;
    width: 100%;
    height: 90px;
    overflow: hidden;
    background: #b6bfc2;
    text-align: center;
    z-index: 10;
}

.site-footer p {
    color: #000;
    position: relative;
    z-index: 2;
    font-size: 22px;
    font-weight: 700;
    line-height: 90px;
    font-family: var(--font-body);
}

/* ── BLOOD CELL ANIMATION ── */
.blood-cell {
    position: absolute;
    pointer-events: none;
    opacity: .85;
    filter: drop-shadow(0 0 4px rgba(120,0,0,.5));
}

@keyframes flow {
    0%   { transform: translateX(0) translateY(0) scale(1); opacity: 0; }
    10%  { opacity: 1; }
    50%  { transform: translateX(50vw) translateY(-8px) scale(1.05); }
    100% { transform: translateX(110vw) translateY(6px) scale(.9); opacity: 0; }
}

.test-tube {
    position: absolute; left: 30px; bottom: 5px;
    height: 80px; z-index: 5;
}

/* ════════════════════════
   HOME PAGE
════════════════════════ */
.home-hero {
    background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 60%, #2aa8d8 100%);
    padding: 52px 40px 44px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255,255,255,.06) 0%, transparent 60%);
    pointer-events: none;
}

.home-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(20px, 4vw, 32px);
    color: var(--white);
    position: relative;
    margin-bottom: 10px;
}

.home-hero .hours-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 30px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 8px 24px;
    position: relative;
}

.services-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 860px;
    margin: 44px auto;
    padding: 0 20px;
    justify-items: center;
}

.services-icon {
    width: 148px;
    height: 148px;
    border-radius: 12px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 2px 10px rgba(0,0,0,.10);
}

.services-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27,125,182,.22);
}

/* ════════════════════════
   BACKGROUND PAGE
════════════════════════ */
.bg-founders {
    display: flex;
    gap: 22px;
    margin: 28px 0;
}

.founder-card {
    flex: 1;
    background: var(--blue-lt);
    border-radius: var(--radius);
    padding: 22px 20px;
    border-left: 4px solid var(--blue);
    font-size: 15px;
    line-height: 1.6;
}

.founder-card strong { color: var(--blue-dk); display: block; margin-bottom: 4px; font-size: 16px; }

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 28px;
}

.mv-card {
    border-radius: var(--radius);
    padding: 28px 24px;
    font-size: 15px;
    line-height: 1.75;
}

.mv-card.mission { background: var(--green-lt); border-top: 4px solid var(--green); }
.mv-card.vision  { background: var(--green-lt); border-top: 4px solid var(--green); }

.mv-card h2 {
    font-family: var(--font-head);
    font-size: 17px;
    margin-bottom: 12px;
}

.mv-card.mission h2 { color: var(--green-dk); }
.mv-card.vision  h2 { color: var(--green-dk); }

.disciplines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.discipline-pill {
    background: var(--white);
    border: 2px solid var(--blue);
    border-radius: 8px;
    padding: 14px 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-dk);
    line-height: 1.4;
}

/* ════════════════════════
   QUALITY POLICY PAGE
════════════════════════ */
.qp-commitment {
    background: var(--blue-lt);
    border-radius: var(--radius);
    padding: 28px 28px;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
    border-left: 5px solid var(--blue);
}

.qp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 8px;
}

.qp-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 22px;
    border-top: 4px solid var(--green);
}

.qp-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--green-dk);
    margin-bottom: 14px;
}

.qp-highlight {
    background: var(--green-lt);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-top: 28px;
    font-size: 15px;
    line-height: 1.7;
    border-left: 5px solid var(--green);
}

.qp-highlight strong { color: var(--green-dk); }

/* ════════════════════════
   OPERATING HOURS PAGE
════════════════════════ */
.hours-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 40px;
    width: 100%;
}

.hours-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 24px;
    text-align: center;
    border-top: 4px solid var(--blue);
}

.hours-card.saturday { border-top-color: var(--blue); }

.hours-card .day-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 8px;
}

.hours-card .time {
    font-family: var(--font-head);
    font-size: 26px;
    color: var(--blue-dk);
    font-style: italic;
}

.hours-card.saturday .time { color: var(--blue-dk); }

.emergency-box {
    background: var(--green-lt);
    border: 1px solid #c8e6c9;
    border-left: 5px solid var(--green);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-bottom: 36px;
    font-size: 15px;
    line-height: 1.7;
}

.emergency-box h3 {
    color: var(--green-dk);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.emergency-box .contact-line {
    display: flex; align-items: center; gap: 10px;
    margin: 6px 0; font-size: 15px;
}

.emergency-box .contact-line span { color: #000; font-size: 14px; }

/* Holidays table */
.holidays-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0;
    font-family: var(--font-body);
}

.operating-hours-page .holidays-container {
    max-width: 1180px;
}

.holidays-title {
    font-family: var(--font-head);
    color: var(--green-dk);
    font-size: 22px;
    margin-bottom: 22px;
    font-style: italic;
    font-weight: 700;
}

.holidays-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.holidays-table thead tr { background: var(--blue); }

.holidays-table thead th {
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 13px 16px;
    text-align: center;
}

.holidays-table thead th:first-child { text-align: left; }

.holidays-table tbody tr { border-bottom: 1px solid var(--gray-bd); }
.holidays-table tbody tr:nth-child(even) { background: #f7f9fb; }
.holidays-table tbody tr:hover { background: var(--blue-lt); }

.holidays-table tbody td {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--muted);
    text-align: center;
}

.holidays-table tbody td.month-col {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text);
    letter-spacing: .5px;
    text-align: left;
}

.holidays-table tbody td sup { font-size: 10px; }

/* ════════════════════════
   LOCATION PAGE
════════════════════════ */
.location-address-box {
    background: var(--blue-lt);
    border-radius: var(--radius);
    padding: 28px 28px;
    text-align: center;
    margin-bottom: 32px;
    border: 1px solid #c5dff0;
}

.location-address-box h2 {
    font-family: var(--font-head);
    font-size: 18px;
    color: var(--blue-dk);
    margin-bottom: 12px;
}

.location-address-box address {
    font-style: normal;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.maps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.map-box { display: flex; flex-direction: column; }

.map-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
    text-align: center;
}

.map-box iframe {
    width: 100%; height: 340px; border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.location-image { display: flex; justify-content: center; margin: 0 0 28px; }
.location-image img { width: 100%; max-width: 700px; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ════════════════════════
   SERVICES PAGE
════════════════════════ */
.services-intro {
    background: var(--blue-lt);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-bottom: 36px;
    font-size: 15px;
    line-height: 1.7;
    border-left: 5px solid var(--blue);
    color: var(--text);
    align-self: stretch;
}

.services-intro--emphasis {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

.services-intro--emphasis strong {
    font-weight: 700;
}

.service-section { margin-bottom: 36px; }

.service-headings {
    font-family: var(--font-head);
    color: var(--green-dk);
    font-size: 18px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--green);
}

.Services-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    list-style: none;
    padding: 0; margin: 0;
    background: var(--white);
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.Services-list ul li {
    position: relative;
    padding: 10px 12px 10px 28px;
    font-size: 16px;
    border-bottom: 1px solid var(--gray-bd);
    line-height: 1.55;
    color: var(--text);
}

.Services-list ul li:last-child { border-bottom: none; }

.Services-list ul li::before {
    content: '\2022';
    position: absolute; left: 10px;
    color: var(--blue); font-size: 1.1rem; line-height: 1.3;
}

.Services-list ul li:nth-child(even) { background: var(--white); }
.Services-list ul li:hover { background: var(--blue-lt); }

/* ════════════════════════
   PATIENT INFORMATION PAGE
════════════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px 18px;
    text-align: center;
    border-top: 4px solid var(--blue);
    transition: transform .2s;
}

.step-card:hover { transform: translateY(-3px); }

.step-number {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 18px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
}

.step-card h3 { font-size: 14px; font-weight: 700; color: var(--blue-dk); margin-bottom: 8px; }
.step-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

.prep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.prep-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px 20px;
    border-left: 5px solid var(--green);
    margin-bottom: 40px;
}

.prep-card h3 {
    font-size: 18px; font-weight: 700;
    color: var(--green-dk);
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
}

.prep-card ul { list-style: none; padding: 0; margin: 0; }

.prep-card ul li {
    font-size: 15px; color: var(--text);
    padding: 7px 0 7px 22px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.5;
}

.prep-card ul li:last-child { border-bottom: none; }

.prep-card ul li::before {
    content: '\2022'; position: absolute; left: 0;
    color: var(--green); font-weight: 700;
}

.bring-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.bring-card {
    background: var(--blue-lt);
    border-radius: var(--radius);
    padding: 22px 16px;
    text-align: center;
    border: 1px solid #c5dff0;
}

.bring-card .bring-icon { font-size: 28px; margin-bottom: 10px; }
.bring-card h4 { font-size: 14px; font-weight: 700; color: var(--blue-dk); margin-bottom: 5px; }
.bring-card p  { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* results table */
.results-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 36px;
}

.results-table thead tr { background: var(--blue); }

.results-table thead th {
    padding: 13px 16px; text-align: left;
    font-size: 12px; font-weight: 700;
    letter-spacing: .5px; text-transform: uppercase;
    color: var(--white);
}

.results-table tbody td {
    padding: 12px 16px;
    font-size: 14px; color: var(--text);
    border-bottom: 1px solid var(--gray-bd);
}

.results-table tbody tr:last-child td { border-bottom: none; }
.results-table tbody tr:nth-child(even) { background: #f7f9fb; }
.results-table tbody tr:hover { background: var(--blue-lt); }

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px; font-weight: 700;
}

.badge-same  { background: #d4edda; color: #1e5c2a; }
.badge-1day  { background: #fff3cd; color: #7a5400; }
.badge-3day  { background: #fde8d8; color: #7d3000; }
.badge-week  { background: #e8d5f5; color: #4a1a7a; }

/* FAQ */
.faq-list { margin-bottom: 36px; }

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%; background: none; border: none;
    text-align: left;
    padding: 17px 20px;
    font-family: var(--font-body);
    font-size: 15px; font-weight: 700;
    color: var(--blue-dk);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: background .2s;
}

.faq-question:hover { background: var(--blue-lt); }

.faq-arrow {
    font-size: 22px; transition: transform .3s;
    color: var(--blue); font-weight: 300; line-height: 1;
}

.faq-item.open .faq-arrow { transform: rotate(45deg); }

.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .25s;
    padding: 0 20px;
    font-size: 14px; color: var(--muted); line-height: 1.75;
}

.faq-item.open .faq-answer { max-height: 300px; padding: 0 20px 18px; }

/* ════════════════════════
   CONTACT PAGE
════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px 24px;
    margin-bottom: 36px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 24px;
    border-top: 4px solid var(--blue);
}

.contact-card h3 {
    font-size: 16px; font-weight: 700;
    color: var(--blue-dk);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
}

.contact-line {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-bd);
    font-size: 15px;
}

.contact-line:last-child { border-bottom: none; }

.contact-line .cl-label {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px;
    color: var(--muted); min-width: 190px; flex: 0 0 190px; padding-top: 2px;
}

.contact-line .cl-value {
    color: var(--text);
    line-height: 1.5;
    white-space: nowrap;
}

.contact-line .cl-value a {
    font-size: 16px;
    font-weight: 600;
}

.contact-card:last-child .contact-line {
    font-size: 16px;
}

.contact-card:last-child .contact-line .cl-label {
    min-width: 0;
    flex: 0 1 auto;
    font-size: 16px;
    letter-spacing: 0;
    text-transform: none;
}

.contact-card:last-child .contact-line a {
    font-size: 16px;
    font-weight: 600;
}

.contact-line a { color: var(--blue); text-decoration: none; }
.contact-line a:hover { text-decoration: underline; }

/* Override uppercase for email addresses */
.contact-card:last-child .cl-label { text-transform: none; }

/* Info Box Styling */
.info-box {
    padding: 18px 24px;
    border-radius: var(--radius);
    margin: 22px 0 36px 0;
    font-size: 16px;
    line-height: 1.6;
}

.info-box-green {
    background-color: var(--green-lt);
    color: #000;
    border-left: 5px solid var(--green);
}

/* ════════════════════════
   ONLINE ORDER FORMS PAGE
════════════════════════ */
.forms-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 20px;
    border-left: 5px solid var(--blue);
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.form-card h3 { font-size: 17px; font-weight: 700; color: var(--blue-dk); }
.form-card p  { font-size: 15px; color: var(--muted); line-height: 1.6; flex: 1; }

.btn {
    display: inline-block;
    padding: 9px 20px;
    border-radius: 6px;
    font-size: 14px; font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity .2s;
    text-align: center;
}

.btn:hover { opacity: .88; }
.btn-blue  { background: var(--blue);  color: var(--white); }
.btn-green { background: var(--green); color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--blue); color: var(--blue); }

/* ════════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width: 768px) {
    .site-header { padding: 12px 18px; flex-direction: row-reverse; }
    .site-header .logo img { height: 56px; }

    .hamburger { display: flex; margin-left: 0; }

    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute; top: 100%; left: 0;
        width: 100%;
        background: var(--blue);
        padding: 18px; gap: 12px;
        margin-left: 0; z-index: 100;
    }

    .main-nav.open { display: flex; }
    .main-nav a { font-size: 14px; padding: 6px 10px; }

    .dropdown:hover .dropdown-content { display: none; }

    .dropdown-content {
        position: static; box-shadow: none; padding-left: 16px;
        display: none; opacity: 1; visibility: visible; border-radius: 0; background: transparent;
    }
    .dropdown-content a { font-size: 13px; padding: 9px 14px; }

    .dropdown-content.open { display: flex !important; flex-direction: column; background: transparent; }

    .home-hero { padding: 36px 20px 32px; }
    .home-hero h1 { font-size: clamp(18px, 5vw, 28px); }
    .home-hero .hours-badge { font-size: 13px; padding: 6px 16px; }
    
    .page-hero { padding: 28px 16px 24px; }
    .page-hero h1 { font-size: clamp(20px, 5vw, 28px); }
    .page-hero p { font-size: 14px; }
    
    .page-content { padding: 30px 16px 44px; max-width: 100%; }

    .services-icon-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 0 14px; margin: 44px auto; }
    .services-icon { width: 100px; height: 100px; }
    
    .section-title { font-size: 18px; margin-bottom: 14px; }
    
    .card { padding: 20px 16px; }
    
    .prose { font-size: 15px; }
    
    .stat-pill { font-size: 13px; padding: 8px 16px; }
    
    .checklist li { font-size: 14px; padding: 6px 0 6px 24px; }
    
    .notice { font-size: 14px; padding: 12px 16px; }

    .info-grid, .mission-vision-grid, .qp-grid,
    .hours-cards, .maps-container, .contact-grid,
    .steps-grid, .bring-grid { grid-template-columns: 1fr; }

    .prep-grid { grid-template-columns: 1fr; }

    .bg-founders { flex-direction: column; }
    .founder-card { padding: 16px 14px; font-size: 14px; }
    
    .mv-card { padding: 20px 16px; font-size: 14px; }
    .mv-card h2 { font-size: 15px; }
    
    .qp-commitment { padding: 20px 16px; font-size: 14px; }
    .qp-card { padding: 16px 14px; }
    .qp-card h3 { font-size: 14px; }
    .qp-highlight { padding: 16px 16px; font-size: 14px; }
    
    .hours-card { padding: 20px 16px; }
    .hours-card .day-label { font-size: 12px; }
    .hours-card .time { font-size: 22px; }
    
    .emergency-box { padding: 16px 16px; font-size: 14px; }
    .emergency-box h3 { font-size: 14px; }
    .emergency-box .contact-line { font-size: 14px; }
    
    .holidays-title { font-size: 18px; }
    .holidays-table thead th { font-size: 11px; padding: 10px 8px; }
    .holidays-table tbody td { font-size: 13px; padding: 10px 8px; }
    
    .location-address-box { padding: 20px 16px; }
    .location-address-box h2 { font-size: 16px; }
    .location-address-box address { font-size: 15px; }
    
    .map-title { font-size: 14px; }
    .map-box iframe { height: 280px; }
    
    .service-section { margin-bottom: 24px; }
    .service-headings { font-size: 16px; }
    .Services-list ul { grid-template-columns: 1fr; }
    .Services-list ul li { font-size: 15px; padding: 8px 10px 8px 24px; }
    
    .step-card { padding: 18px 14px; }
    .step-card h3 { font-size: 13px; }
    .step-card p { font-size: 12px; }
    .step-number { width: 36px; height: 36px; font-size: 16px; }
    
    .prep-card { padding: 16px 14px; margin-bottom: 24px; }
    .prep-card h3 { font-size: 15px; }
    .prep-card ul li { font-size: 14px; padding: 6px 0 6px 18px; }
    
    .bring-card { padding: 16px 12px; }
    .bring-card .bring-icon { font-size: 24px; }
    .bring-card h4 { font-size: 13px; }
    .bring-card p { font-size: 12px; }
    
    .results-table thead th { font-size: 11px; padding: 10px 8px; }
    .results-table tbody td { font-size: 13px; padding: 10px 8px; }
    .badge { font-size: 11px; padding: 2px 8px; }
    
    .faq-question { font-size: 14px; padding: 14px 16px; }
    .faq-answer { font-size: 13px; max-height: 400px; }
    
    .contact-card { padding: 20px 16px; }
    .contact-card h3 { font-size: 14px; }
    .contact-line { font-size: 14px; padding: 8px 0; }
    .contact-line .cl-label { font-size: 11px; min-width: 160px; flex-basis: 160px; }
    .contact-card:last-child .contact-line { font-size: 15px; }
    .contact-card:last-child .contact-line .cl-label,
    .contact-card:last-child .contact-line a { font-size: 15px; }
    
    .form-card { padding: 18px 16px; max-width: 100%; }
    .form-card h3 { font-size: 15px; }
    .form-card p { font-size: 13px; }
    .forms-grid { flex-direction: column; gap: 16px; }
    
    .btn { font-size: 14px; padding: 8px 16px; }
    
    .discipline-pill { font-size: 13px; padding: 12px 10px; }

    .site-footer { height: 70px; }
    .site-footer p { font-size: 15px; line-height: 70px; display: none; }

    .test-tube { height: 52px; left: 10px; }
}

@media (max-width: 480px) {
    .site-header { padding: 10px 14px; }
    .site-header .logo img { height: 48px; }
    
    .home-hero { padding: 28px 16px 24px; }
    .home-hero h1 { font-size: clamp(16px, 4vw, 22px); margin-bottom: 8px; }
    .home-hero .hours-badge { font-size: 12px; padding: 6px 12px; display: block; margin: 10px 0; }
    
    .services-icon-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 8px; margin: 24px auto; }
    .services-icon { width: 100px; height: 100px; }
    
    .page-hero { padding: 20px 14px 16px; }
    .page-hero h1 { font-size: clamp(18px, 4vw, 24px); margin-bottom: 6px; }
    .page-hero p { font-size: 13px; }
    
    .page-content { padding: 20px 12px 32px; }
    
    .main-nav a { font-size: 13px; padding: 5px 8px; }
    .dropdown-content a { font-size: 12px; padding: 8px 12px; }
    
    .section-title { font-size: 16px; width: 100%; }
    
    .main-nav a { font-size: 13px; padding: 5px 8px; }
    .dropdown-content a { font-size: 12px; padding: 8px 12px; }
    
    .section-title { font-size: 16px; margin-bottom: 12px; }
    
    .card { padding: 16px 12px; }
    
    .prose { font-size: 14px; }
    
    .stat-pill { font-size: 12px; padding: 6px 12px; }
    
    .notice { font-size: 13px; padding: 10px 12px; }
    
    .founder-card { padding: 14px 12px; font-size: 13px; }
    
    .mv-card { padding: 16px 12px; font-size: 13px; }
    .mv-card h2 { font-size: 14px; }
    
    .hours-card { padding: 16px 12px; }
    .hours-card .day-label { font-size: 11px; }
    .hours-card .time { font-size: 20px; }
    
    .emergency-box { padding: 14px 12px; font-size: 13px; }
    .emergency-box h3 { font-size: 13px; margin-bottom: 8px; }
    .emergency-box .contact-line { font-size: 13px; }
    
    .holidays-title { font-size: 16px; }
    .holidays-table thead th { font-size: 10px; padding: 8px 4px; }
    .holidays-table tbody td { font-size: 12px; padding: 8px 4px; }
    
    .location-address-box { padding: 16px 12px; }
    .location-address-box h2 { font-size: 15px; }
    .location-address-box address { font-size: 14px; }
    
    .map-title { font-size: 13px; }
    .map-box iframe { height: 240px; }
    
    .service-section { margin-bottom: 20px; }
    .service-headings { font-size: 15px; }
    .Services-list ul li { font-size: 14px; padding: 7px 8px 7px 22px; }
    
    .step-card { padding: 14px 12px; }
    .step-number { width: 32px; height: 32px; font-size: 14px; margin-bottom: 8px; }
    .step-card h3 { font-size: 12px; }
    .step-card p { font-size: 11px; }
    
    .prep-card { padding: 14px 12px; margin-bottom: 20px; }
    .prep-card h3 { font-size: 14px; margin-bottom: 10px; }
    .prep-card ul li { font-size: 13px; padding: 5px 0 5px 18px; }
    
    .bring-card { padding: 12px 10px; }
    .bring-card .bring-icon { font-size: 20px; margin-bottom: 6px; }
    .bring-card h4 { font-size: 12px; }
    .bring-card p { font-size: 11px; }
    
    .results-table thead th { font-size: 10px; padding: 8px 4px; }
    .results-table tbody td { font-size: 12px; padding: 8px 4px; }
    .badge { font-size: 11px; padding: 2px 8px; }
    
    .faq-question { font-size: 13px; padding: 12px 12px; }
    .faq-answer { font-size: 12px; max-height: 500px; padding: 0 12px; }
    
    .contact-card { padding: 16px 12px; }
    .contact-card h3 { font-size: 13px; margin-bottom: 12px; }
    .contact-line { font-size: 13px; padding: 6px 0; gap: 8px; }
    .contact-line .cl-label { font-size: 10px; min-width: 125px; flex-basis: 125px; }
    .contact-card:last-child .contact-line { font-size: 14px; }
    .contact-card:last-child .contact-line .cl-label,
    .contact-card:last-child .contact-line a { font-size: 14px; }
    
    .form-card { padding: 14px 12px; }
    .form-card h3 { font-size: 14px; }
    .form-card p { font-size: 12px; }
    .forms-grid { flex-direction: column; gap: 16px; }
    
    .btn { font-size: 13px; padding: 7px 14px; }
    
    .discipline-pill { font-size: 12px; padding: 10px 8px; }
    
    .qp-commitment { padding: 16px 12px; font-size: 13px; }
    .qp-card { padding: 14px 12px; }
    .qp-card h3 { font-size: 13px; }
    .qp-highlight { padding: 14px 12px; font-size: 13px; }
    
    .site-footer { height: 60px; }
    .site-footer p { font-size: 13px; line-height: 60px; display: none; }
    
    .test-tube { height: 42px; left: 8px; }
}

@media (max-width: 320px) {
    .site-header { padding: 8px 10px; }
    .site-header .logo img { height: 40px; }
    
    .home-hero h1 { font-size: 16px; }
    .home-hero .hours-badge { font-size: 11px; padding: 4px 8px; }
    
    .services-icon-grid { gap: 8px; padding: 0 4px; margin: 20px auto; }
    .services-icon { width: 90px; height: 90px; }
    
    .page-hero h1 { font-size: 18px; }
    .page-hero p { font-size: 12px; }
    
    .page-content { padding: 16px 10px 24px; }
    
    .section-title { font-size: 15px; }
    
    .main-nav a { font-size: 12px; padding: 4px 6px; }
    
    .card { padding: 12px 10px; }
    
    .stat-pill { font-size: 11px; padding: 4px 8px; }
    
    .hours-card { padding: 12px 10px; }
    .hours-card .time { font-size: 18px; }
    
    .map-box iframe { height: 200px; }
    
    .step-card { padding: 10px 8px; }
    .step-number { width: 28px; height: 28px; font-size: 12px; }
    
    .btn { font-size: 11px; padding: 5px 10px;
    }
}