/* ==========================================================================
   RUY Helpline - Clinical Trust Style (#3) + Sidebar Navigation Architecture (#4)
   Site #35 | Domain: ruyhelpline.site
   Generated: 2026-02-13
   ========================================================================== */

/* --- CSS Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1E5AA8;
  --primary-dark: #154A8A;
  --primary-light: #2B6EC2;
  --secondary: #4A90D9;
  --accent: #28A745;
  --accent-dark: #1E7E34;
  --text: #212529;
  --text-light: #6C757D;
  --text-white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-alt: #F8F9FA;
  --bg-sidebar: #1A2740;
  --bg-sidebar-hover: #243656;
  --border: #DEE2E6;
  --border-light: #E9ECEF;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
  --radius: 4px;
  --sidebar-width: 280px;
  --topbar-height: 48px;
  --font-heading: 'Inter', 'Roboto', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
h1 { font-size: 2.25rem; margin-bottom: 1rem; }
h2 { font-size: 1.75rem; margin-bottom: 0.875rem; }
h3 { font-size: 1.375rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.625rem; }

p { margin-bottom: 1rem; }

/* --- Skip Navigation --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  font-weight: 600;
}
.skip-nav:focus { top: 0; }

/* --- Top Bar --- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-height);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 1000;
  color: #fff;
}
.topbar__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
.topbar__phone:hover { color: #e0e0e0; }
.topbar__phone svg { width: 18px; height: 18px; fill: currentColor; }
.topbar__cta {
  background: var(--accent);
  color: #fff;
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  transition: background var(--transition);
}
.topbar__cta:hover { background: var(--accent-dark); color: #fff; }
.topbar__hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.25rem;
}
.topbar__hamburger svg { width: 28px; height: 28px; fill: currentColor; }

/* --- Sidebar --- */
.sidebar {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  width: var(--sidebar-width);
  height: calc(100vh - var(--topbar-height));
  background: var(--bg-sidebar);
  overflow-y: auto;
  z-index: 900;
  padding: 1.5rem 0;
  transition: transform var(--transition);
}
.sidebar__logo {
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1rem;
}
.sidebar__logo a {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sidebar__logo a:hover { color: var(--secondary); }
.sidebar__logo span { color: var(--secondary); font-size: 0.75rem; display: block; font-weight: 400; margin-top: 0.125rem; }

.sidebar__nav { padding: 0; }
.sidebar__item { position: relative; }
.sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.sidebar__link:hover,
.sidebar__link--active {
  background: var(--bg-sidebar-hover);
  color: #fff;
  border-left-color: var(--secondary);
}
.sidebar__link svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

.sidebar__toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0.25rem;
  transition: transform var(--transition);
}
.sidebar__toggle svg { width: 16px; height: 16px; fill: currentColor; }
.sidebar__toggle.open { transform: translateY(-50%) rotate(180deg); }

.sidebar__submenu {
  display: none;
  padding: 0.25rem 0 0.5rem;
  background: rgba(0,0,0,0.15);
}
.sidebar__submenu.show { display: block; }
.sidebar__sublink {
  display: block;
  padding: 0.5rem 1.5rem 0.5rem 3.25rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: all var(--transition);
}
.sidebar__sublink:hover { color: #fff; background: rgba(255,255,255,0.05); }

.sidebar__contact {
  padding: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.sidebar__contact-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition);
}
.sidebar__contact-btn:hover { background: var(--accent-dark); color: #fff; }
.sidebar__contact-phone {
  display: block;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}
.sidebar__contact-phone:hover { color: #fff; }

/* --- Main Content --- */
.main-content {
  margin-left: var(--sidebar-width);
  margin-top: var(--topbar-height);
  min-height: calc(100vh - var(--topbar-height));
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,90,168,0.88) 0%, rgba(26,39,64,0.82) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 3rem 2.5rem;
  max-width: 720px;
}
.hero__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.hero__title {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero__subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }
.btn--secondary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn--secondary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn svg { width: 18px; height: 18px; fill: currentColor; }

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 1rem 2.5rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.85rem;
}
.breadcrumbs a { color: var(--primary); }
.breadcrumbs span { color: var(--text-light); margin: 0 0.375rem; }

/* --- Section Styles --- */
.section {
  padding: 3.5rem 2.5rem;
}
.section--alt { background: var(--bg-alt); }
.section__header {
  margin-bottom: 2rem;
}
.section__label {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.section__title {
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.section__desc {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 680px;
}

/* --- Trust Bar --- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.trust-bar__icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-bar__icon svg { width: 22px; height: 22px; fill: #fff; }
.trust-bar__text h4 { font-size: 0.95rem; margin-bottom: 0.125rem; }
.trust-bar__text p { font-size: 0.825rem; color: var(--text-light); margin: 0; }

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card__img { width: 100%; height: 200px; object-fit: cover; }
.card__body { padding: 1.25rem; }
.card__tag {
  display: inline-block;
  background: rgba(30,90,168,0.08);
  color: var(--primary);
  padding: 0.2rem 0.625rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.card__title { font-size: 1.125rem; margin-bottom: 0.5rem; }
.card__text { color: var(--text-light); font-size: 0.925rem; margin-bottom: 0.75rem; }
.card__link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.card__link:hover { color: var(--primary-dark); }
.card__link svg { width: 16px; height: 16px; fill: currentColor; }

/* --- Stats --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}
.stat__number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.375rem;
}
.stat__label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

/* --- Icon List --- */
.icon-list { display: flex; flex-direction: column; gap: 1rem; }
.icon-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.icon-list__icon {
  width: 36px;
  height: 36px;
  background: rgba(30,90,168,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.icon-list__icon svg { width: 18px; height: 18px; fill: var(--primary); }
.icon-list__text h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.icon-list__text p { font-size: 0.925rem; color: var(--text-light); margin: 0; }

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition);
}
.gallery-grid img:hover { transform: scale(1.03); }

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-family: serif;
  line-height: 1;
}
.testimonial__text {
  font-style: italic;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  line-height: 1.7;
}
.testimonial__author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}
.testimonial__program {
  font-size: 0.825rem;
  color: var(--text-light);
}
.testimonial__stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 0.25rem; }

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 3rem 2.5rem;
  text-align: center;
  color: #fff;
}
.cta-section h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-section .cta-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 1rem;
}
.cta-section .cta-phone:hover { color: rgba(255,255,255,0.9); }

/* --- Footer --- */
.footer {
  background: var(--bg-sidebar);
  color: rgba(255,255,255,0.75);
  padding: 3rem 2.5rem 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer a:hover { color: #fff; }
.footer ul li { margin-bottom: 0.5rem; }
.footer__contact p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer__contact svg { width: 16px; height: 16px; fill: var(--secondary); flex-shrink: 0; margin-top: 0.2rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.5);
}
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: #fff; }

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.two-col--reverse .two-col__img { order: -1; }
.two-col__img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* --- Timeline / Steps --- */
.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step__number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.step__content h4 { margin-bottom: 0.25rem; }
.step__content p { color: var(--text-light); font-size: 0.925rem; margin: 0; }

/* --- FAQ Accordion --- */
.faq-list { max-width: 800px; }
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-body);
  transition: background var(--transition);
}
.faq-item__question:hover { background: var(--bg-alt); }
.faq-item__question svg { width: 20px; height: 20px; fill: var(--text-light); transition: transform var(--transition); flex-shrink: 0; margin-left: 1rem; }
.faq-item.active .faq-item__question svg { transform: rotate(180deg); }
.faq-item__answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--text-light);
  font-size: 0.925rem;
  line-height: 1.7;
}
.faq-item.active .faq-item__answer { display: block; }

/* --- Insurance Grid --- */
.insurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.insurance-tag {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

/* --- Contact Info Boxes --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.contact-box {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.contact-box__icon {
  width: 52px;
  height: 52px;
  background: rgba(30,90,168,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.contact-box__icon svg { width: 24px; height: 24px; fill: var(--primary); }
.contact-box h4 { font-size: 1rem; margin-bottom: 0.375rem; }
.contact-box p { color: var(--text-light); font-size: 0.9rem; margin: 0; }
.contact-box a { font-weight: 600; }

/* --- Map --- */
.map-container {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.map-container iframe { width: 100%; height: 400px; border: 0; }

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); }
.blog-card__img { width: 100%; height: 190px; object-fit: cover; }
.blog-card__body { padding: 1.25rem; }
.blog-card__cat {
  display: inline-block;
  background: rgba(30,90,168,0.08);
  color: var(--primary);
  padding: 0.2rem 0.625rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.blog-card__title { font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card__excerpt { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.75rem; }
.blog-card__meta { font-size: 0.8rem; color: var(--text-light); }

/* --- Privacy Page --- */
.privacy-content { max-width: 800px; }
.privacy-content h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--primary); }
.privacy-content h3 { font-size: 1.2rem; margin-top: 1.5rem; }
.privacy-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.privacy-content ul li { margin-bottom: 0.375rem; color: var(--text-light); font-size: 0.95rem; }

/* --- Daily Schedule --- */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.schedule-table th,
.schedule-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.925rem;
}
.schedule-table th {
  background: var(--bg-alt);
  font-weight: 600;
  color: var(--text);
}
.schedule-table td { color: var(--text-light); }

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.comparison-table th,
.comparison-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--border-light);
  font-size: 0.9rem;
}
.comparison-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
.comparison-table tr:nth-child(even) { background: var(--bg-alt); }

/* --- Packing List --- */
.packing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.packing-box { padding: 1.25rem; border-radius: var(--radius); }
.packing-box--bring { background: rgba(40,167,69,0.06); border: 1px solid rgba(40,167,69,0.2); }
.packing-box--not { background: rgba(220,53,69,0.06); border: 1px solid rgba(220,53,69,0.2); }
.packing-box h4 { margin-bottom: 0.75rem; }
.packing-box ul { list-style: disc; padding-left: 1.5rem; }
.packing-box ul li { margin-bottom: 0.375rem; font-size: 0.925rem; color: var(--text-light); }

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .topbar__hamburger { display: block; }
  .hero__title { font-size: 1.875rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse .two-col__img { order: 0; }
  .packing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 2.5rem 1.5rem; }
  .hero__content { padding: 2.5rem 1.5rem; }
  .breadcrumbs { padding: 0.75rem 1.5rem; }
  .trust-bar { grid-template-columns: 1fr; padding: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer { padding: 2.5rem 1.5rem 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-section { padding: 2.5rem 1.5rem; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero { min-height: 350px; }
  .hero__title { font-size: 1.5rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .topbar__cta { display: none; }
}

/* --- Overlay for mobile sidebar --- */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 850;
}
.sidebar-overlay.show { display: block; }

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
