/* ============================================================
   Gary Matthews Solicitors - Injury Law
   Main Stylesheet
   ============================================================ */

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

:root {
  --teal:        #0ea5c4;
  --teal-dark:   #0b4a66;
  --teal-light:  #e8f7fa;
  --green:       #28a745;
  --red:         #c0392b;
  --gold:        #e8a020;
  --white:       #ffffff;
  --gray-light:  #f5f7f9;
  --gray-mid:    #ced4da;
  --gray-text:   #555;
  --dark:        #1a1a2e;
  --font-base:   'Lato', 'Segoe UI', Arial, sans-serif;
  --font-head:   'Merriweather', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-text);
  background: var(--white);
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: var(--teal-dark); text-decoration: underline; }

img { max-width: 100%; display: block; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.3;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad { padding: 60px 0; }
.section-pad-sm { padding: 40px 0; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background .25s, transform .15s;
  border: none;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: #a93226; color: var(--white); }

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover { background: var(--teal-dark); color: var(--white); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: #c8870e; color: var(--white); }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* ---------- Top Banner ---------- */
.top-banner {
  background: var(--teal-dark);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  padding: 8px 20px;
}
.top-banner a { color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--teal);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1140px;
  margin: 0 auto;
  gap: 16px;
}

.logo img { height: 68px; width: auto; }

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.phone-cta {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: .5px;
}
.phone-cta i { margin-right: 6px; }
.phone-cta:hover { color: var(--teal-dark); text-decoration: none; }

/* ---------- Navigation ---------- */
nav.main-nav { background: var(--teal-dark); }
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.nav-menu > li > a {
  display: block;
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  padding: 14px 14px;
  transition: background .2s;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  background: var(--teal);
  text-decoration: none;
}

/* Dropdown */
.nav-menu li.has-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  border-top: 3px solid var(--teal);
  z-index: 999;
}
.dropdown-menu li a {
  display: block;
  padding: 11px 18px;
  color: var(--dark);
  font-size: 13.5px;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s;
}
.dropdown-menu li a:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
  text-decoration: none;
}
.nav-menu li.has-dropdown:hover .dropdown-menu { display: block; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 14px 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

/* ---------- Hero Section ---------- */
.hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, #1de8c0 100%);
  padding: 70px 20px 60px;
  color: var(--white);
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.6rem;
  color: var(--white);
  margin-bottom: 6px;
}
.hero-content .tagline {
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero-content p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  color: rgba(255,255,255,.9);
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

/* Callback Form Card */
.callback-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.callback-card h3 {
  color: var(--teal-dark);
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.callback-card .or-call {
  font-size: 13.5px;
  color: var(--gray-text);
  margin-bottom: 16px;
}
.callback-card .or-call strong { color: var(--red); }

.form-group { margin-bottom: 12px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-mid);
  border-radius: 4px;
  font-size: 14px;
  color: var(--dark);
  font-family: var(--font-base);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.callback-card .btn { width: 100%; font-size: 14px; padding: 13px; }

.google-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--gray-text);
}
.google-trust .stars { color: #fbbc04; font-size: 14px; }
.google-trust strong { color: var(--dark); }

/* ---------- Trust Banner ---------- */
.trust-banner {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 18px 20px;
}
.trust-banner p { font-size: 1.05rem; font-weight: 700; margin: 0; }
.trust-banner span { font-weight: 400; font-size: .9rem; display: block; }

/* ---------- Promo Tiles ---------- */
.promo-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.promo-tile {
  padding: 34px 40px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.promo-tile h3 { color: var(--white); font-size: 1.3rem; }
.promo-tile p { font-size: .95rem; opacity: .9; }
.promo-tile a.tile-link {
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-decoration: underline;
}

.promo-tile.tile-teal { background: var(--teal); }
.promo-tile.tile-gold { background: var(--gold); }

/* ---------- Section Headings ---------- */
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.section-heading h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.section-heading p {
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto;
}
.heading-line {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--teal);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ---------- Info Columns ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.two-col-wide {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.two-col-info h2 { font-size: 1.6rem; margin-bottom: 14px; }
.two-col-info p { margin-bottom: 14px; }

/* Service Category Buttons */
.service-cat-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service-cat-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14.5px;
  transition: background .2s;
  text-decoration: none;
}
.service-cat-list a:hover {
  background: var(--teal-dark);
  text-decoration: none;
  color: var(--white);
}
.service-cat-list a i { font-size: 16px; }

/* ---------- Red CTA Banner ---------- */
.red-banner {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 36px 20px;
}
.red-banner h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 8px; }
.red-banner p { font-size: 1rem; margin-bottom: 20px; opacity: .9; }
.red-banner .phone-big {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  background: rgba(0,0,0,.18);
  padding: 10px 30px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.red-banner .phone-big:hover { text-decoration: none; color: var(--gold); }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-top: 4px solid var(--teal);
  border-radius: 6px;
  padding: 28px 22px;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.service-card .icon {
  font-size: 36px;
  color: var(--teal);
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.service-card p { font-size: .93rem; margin-bottom: 14px; }
.service-card a.read-more {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--teal);
}

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-item {
  text-align: center;
  padding: 24px 16px;
}
.why-item .icon {
  font-size: 40px;
  color: var(--teal);
  margin-bottom: 12px;
}
.why-item h4 { font-size: 1rem; margin-bottom: 8px; }
.why-item p { font-size: .9rem; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.testimonial-card .stars { color: #fbbc04; font-size: 16px; margin-bottom: 10px; }
.testimonial-card blockquote {
  font-style: italic;
  font-size: .94rem;
  color: #444;
  margin-bottom: 14px;
}
.testimonial-card cite { font-size: .88rem; color: var(--teal-dark); font-weight: 700; font-style: normal; }

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}
.page-hero h1 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: .92;
}
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ---------- Service Page Content ---------- */
.service-content { padding: 60px 0; }

.service-main h2 { font-size: 1.65rem; margin-bottom: 14px; }
.service-main h3 { font-size: 1.25rem; margin: 24px 0 10px; color: var(--teal-dark); }
.service-main p { margin-bottom: 16px; }
.service-main ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.service-main ul li { margin-bottom: 8px; }
.service-main a { color: var(--teal); font-weight: 600; }

.sidebar { position: sticky; top: 100px; }

.sidebar-card {
  background: var(--teal-dark);
  color: var(--white);
  border-radius: 8px;
  padding: 26px 22px;
  margin-bottom: 20px;
}
.sidebar-card h4 { color: var(--gold); margin-bottom: 12px; font-size: 1.05rem; }
.sidebar-card p { font-size: .93rem; margin-bottom: 14px; opacity: .9; }
.sidebar-card .sidebar-phone {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.sidebar-card .sidebar-phone:hover { color: var(--gold); text-decoration: none; }
.sidebar-card .btn { width: 100%; }

.sidebar-services {
  background: var(--gray-light);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 22px;
}
.sidebar-services h4 { color: var(--teal-dark); margin-bottom: 14px; font-size: 1rem; }
.sidebar-services ul { list-style: none; padding: 0; }
.sidebar-services ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: .93rem;
  font-weight: 600;
  color: var(--dark);
}
.sidebar-services ul li:last-child a { border-bottom: none; }
.sidebar-services ul li a:hover { color: var(--teal); text-decoration: none; }
.sidebar-services ul li a i { color: var(--teal); font-size: 12px; }

/* ---------- About Page ---------- */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  transition: box-shadow .2s;
}
.value-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.09); }
.value-card .icon { font-size: 40px; color: var(--teal); margin-bottom: 14px; }
.value-card h4 { margin-bottom: 10px; }
.value-card p { font-size: .93rem; }

.team-section { background: var(--gray-light); }
.team-info h2 { font-size: 1.6rem; margin-bottom: 14px; }
.team-info p { margin-bottom: 14px; }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-list { list-style: none; padding: 0; margin-bottom: 24px; }
.contact-info-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-info-list .ci-icon {
  background: var(--teal);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.contact-info-list .ci-text strong { display: block; color: var(--dark); font-size: .95rem; }
.contact-info-list .ci-text span, .contact-info-list .ci-text a { font-size: .93rem; color: var(--gray-text); }
.contact-info-list .ci-text a:hover { color: var(--teal); }

.social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 16px;
  transition: background .2s;
  text-decoration: none;
}
.social-links a:hover { background: var(--teal-dark); text-decoration: none; color: var(--white); }

.contact-form-wrap {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 36px;
}
.contact-form-wrap h3 { margin-bottom: 20px; font-size: 1.4rem; }
.contact-form-wrap .form-group { margin-bottom: 16px; }
.contact-form-wrap label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 5px; color: var(--dark); }

.map-wrap { margin-top: 40px; border-radius: 8px; overflow: hidden; }
.map-wrap iframe { width: 100%; border: 0; }

/* ---------- Hours Table ---------- */
.hours-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.hours-table td { padding: 7px 10px; border-bottom: 1px solid #eee; }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--green); }

/* ---------- FAQ Section ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 18px 0;
}
.faq-question {
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
}
.faq-question i { color: var(--teal); transition: transform .25s; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding-top: 12px;
  font-size: .94rem;
  color: var(--gray-text);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,.8);
  padding: 60px 20px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  max-width: 1140px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-about .logo img { height: 54px; margin-bottom: 14px; filter: brightness(10); }
.footer-about p { font-size: .9rem; margin-bottom: 16px; line-height: 1.7; }

.footer-col h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.75); font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }

.footer-contact p {
  font-size: .9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.8); }
.footer-contact a:hover { color: var(--white); text-decoration: none; }

.footer-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-size: 14px;
  transition: background .2s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--teal); text-decoration: none; color: var(--white); }

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: var(--white); text-decoration: none; }
.footer-disclaimer {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-top: 6px;
}

/* ---------- Related Links Section ---------- */
.related-sites { background: var(--gray-light); padding: 30px 20px; }
.related-sites .container { text-align: center; }
.related-sites h5 { font-size: .85rem; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-text); margin-bottom: 10px; }
.related-sites .links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.related-sites .links a { font-size: .85rem; color: var(--teal-dark); font-weight: 600; }

/* ---------- Scroll Top ---------- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--teal);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  cursor: pointer;
  opacity: 0;
  transition: opacity .3s;
  z-index: 800;
}
.scroll-top.visible { opacity: 1; }

/* ---------- Success Message ---------- */
.success-msg {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 14px 18px;
  border-radius: 4px;
  margin-top: 12px;
  font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .callback-card { order: -1; }

  .two-col, .two-col-wide, .contact-grid {
    grid-template-columns: 1fr;
  }

  .promo-tiles { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--teal-dark);
    z-index: 999;
    gap: 0;
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 13px 20px; }
  .dropdown-menu { position: static; box-shadow: none; border-top: none; background: rgba(0,0,0,.15); }
  .dropdown-menu li a { padding: 10px 32px; color: rgba(255,255,255,.85); border-bottom: 1px solid rgba(255,255,255,.06); }
  .dropdown-menu li a:hover { background: rgba(255,255,255,.08); color: var(--white); }
  .nav-menu li.has-dropdown:hover .dropdown-menu { display: none; }
  .nav-menu li.has-dropdown.open .dropdown-menu { display: block; }

  .phone-cta { font-size: 17px; }
  .header-inner { gap: 10px; }

  .hero-content h1 { font-size: 1.9rem; }
  .page-hero h1 { font-size: 1.8rem; }

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

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

  .section-heading h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .logo img { height: 50px; }
  .why-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 16px; }
  .page-hero { padding: 40px 16px; }
  .red-banner .phone-big { font-size: 1.4rem; }
}
