/* ============================================
   Tynemouth Roofing — Main Stylesheet
   Colours: Navy, Steel Blue, Slate
   ============================================ */

/* --- CSS Variables --- */
:root {
  --navy: #0b1d3a;
  --navy-light: #122952;
  --steel-blue: #4682b4;
  --steel-blue-light: #5a9fd4;
  --steel-blue-dark: #3a6d96;
  --slate: #6c7a89;
  --slate-light: #8d9baa;
  --slate-dark: #4a5568;
  --white: #ffffff;
  --off-white: #f4f6f8;
  --light-grey: #e8ecf1;
  --text-dark: #1a1a2e;
  --text-body: #3d4f5f;
  --gold: #d4a843;
  --gold-light: #e6c36a;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(11,29,58,0.08);
  --shadow-md: 0 4px 14px rgba(11,29,58,0.12);
  --shadow-lg: 0 10px 30px rgba(11,29,58,0.18);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--steel-blue); transition: color var(--transition); }
a:hover { color: var(--steel-blue-light); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 400;
}

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--grey { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy p { color: var(--white); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Top Bar --- */
.top-bar {
  background: var(--navy);
  color: var(--slate-light);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--gold); font-weight: 600; }
.top-bar a:hover { color: var(--gold-light); }
.top-bar__contact { display: flex; gap: 24px; align-items: center; }
.top-bar__contact svg { width: 16px; height: 16px; margin-right: 6px; vertical-align: middle; fill: var(--steel-blue-light); }

/* --- Header / Navbar --- */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 44px; width: auto; }
.logo__text { font-family: var(--font-heading); font-size: 1.35rem; color: var(--navy); letter-spacing: 0.5px; }
.logo__text span { color: var(--steel-blue); }

/* Nav */
.nav__list { display: flex; gap: 4px; align-items: center; }
.nav__link {
  display: block;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.nav__link:hover, .nav__link--active {
  background: var(--off-white);
  color: var(--steel-blue);
}
.nav__link--cta {
  background: var(--steel-blue);
  color: var(--white) !important;
  font-weight: 600;
}
.nav__link--cta:hover {
  background: var(--steel-blue-dark);
}

/* Dropdown */
.nav__item { position: relative; }
.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 8px 0;
  z-index: 100;
}
.nav__item:hover .nav__dropdown { display: block; }
.nav__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--text-dark);
  transition: background var(--transition);
}
.nav__dropdown a:hover {
  background: var(--off-white);
  color: var(--steel-blue);
}

/* Hamburger */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,29,58,0.92) 0%, rgba(18,41,82,0.75) 100%);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 60px 0;
}
.hero__badge {
  display: inline-block;
  background: rgba(70,130,180,0.2);
  border: 1px solid rgba(70,130,180,0.4);
  color: var(--steel-blue-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.btn--primary {
  background: var(--steel-blue);
  color: var(--white);
  border-color: var(--steel-blue);
}
.btn--primary:hover {
  background: var(--steel-blue-dark);
  border-color: var(--steel-blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 20px; font-size: 0.88rem; }
.btn svg { width: 18px; height: 18px; }

/* --- Feature Cards (USPs) --- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: -60px; position: relative; z-index: 10; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--steel-blue);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(70,130,180,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.feature-card__icon svg { width: 28px; height: 28px; fill: var(--steel-blue); }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--slate); }

/* --- Service Grid --- */
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--light-grey);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card__img {
  height: 200px;
  overflow: hidden;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card__body { padding: 24px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card h3 a { color: var(--navy); }
.service-card h3 a:hover { color: var(--steel-blue); }
.service-card p { font-size: 0.9rem; color: var(--slate); margin-bottom: 14px; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--steel-blue);
}
.service-card__link:hover { gap: 10px; }
.service-card__link svg { width: 16px; height: 16px; }

/* --- Section Headers --- */
.section-header { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--slate); }
.section-header .divider {
  width: 60px;
  height: 3px;
  background: var(--steel-blue);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* --- About Section --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { font-size: 2rem; margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; }
.about-content .btn { margin-top: 10px; }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-grey);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--steel-blue);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.testimonial-card p { font-style: italic; margin-bottom: 16px; padding-top: 20px; font-size: 0.95rem; }
.testimonial-card__author {
  font-weight: 600;
  color: var(--navy);
  font-style: normal;
  font-size: 0.9rem;
}
.testimonial-card__stars { color: var(--gold); font-size: 1rem; margin-bottom: 8px; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 { font-size: 2rem; color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { margin: 0 8px; }

/* --- Areas Grid --- */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--light-grey);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
}
.area-card:hover {
  border-color: var(--steel-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.area-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(70,130,180,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.area-card__icon svg { width: 22px; height: 22px; fill: var(--steel-blue); }
.area-card h3 { font-size: 1rem; margin-bottom: 4px; }
.area-card h3 a { color: var(--navy); }
.area-card h3 a:hover { color: var(--steel-blue); }
.area-card p { font-size: 0.82rem; color: var(--slate); }

/* --- Breadcrumb --- */
.breadcrumb {
  background: var(--off-white);
  padding: 14px 0;
  border-bottom: 1px solid var(--light-grey);
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.breadcrumb__list li { display: flex; align-items: center; gap: 8px; }
.breadcrumb__list li + li::before { content: '/'; color: var(--slate-light); }
.breadcrumb__list a { color: var(--steel-blue); }
.breadcrumb__list span { color: var(--slate); }

/* --- Page Hero (interior pages) --- */
.page-hero {
  background: var(--navy);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><path d="M0 0h80v80H0z" fill="none"/><path d="M0 80V60h20v20zm40-40h20v20H40zm-20-20h20v20H20z" fill="rgba(255,255,255,0.02)"/></svg>');
  background-size: 80px 80px;
}
.page-hero h1 { color: var(--white); font-size: 2.4rem; position: relative; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-top: 10px; position: relative; }

/* --- Content --- */
.content-section { padding: 60px 0; }
.content-section h2 { font-size: 1.8rem; margin-bottom: 20px; }
.content-section h3 { font-size: 1.3rem; margin-bottom: 14px; margin-top: 28px; }
.content-section p { margin-bottom: 16px; }
.content-section ul { padding-left: 20px; margin-bottom: 16px; }
.content-section ul li { margin-bottom: 8px; position: relative; padding-left: 20px; }
.content-section ul li::before { content: '✓'; color: var(--steel-blue); position: absolute; left: 0; font-weight: 700; }
.content-two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }

/* Sidebar */
.sidebar-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid var(--light-grey);
}
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--steel-blue); }
.sidebar-card ul li { padding-left: 0; }
.sidebar-card ul li::before { display: none; }
.sidebar-card ul li a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-grey);
  color: var(--text-dark);
  font-size: 0.9rem;
}
.sidebar-card ul li a:hover { color: var(--steel-blue); padding-left: 6px; }
.sidebar-card--cta {
  background: var(--navy);
  border-color: var(--navy);
}
.sidebar-card--cta h3 { color: var(--white); border-bottom-color: var(--steel-blue); }
.sidebar-card--cta p { color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.sidebar-card--cta .phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.sidebar-card--cta .phone-link svg { width: 22px; height: 22px; fill: var(--gold); }

/* --- Contact Form --- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--steel-blue);
  box-shadow: 0 0 0 3px rgba(70,130,180,0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-info-item svg { width: 22px; height: 22px; fill: var(--steel-blue-light); flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { display: block; color: var(--white); margin-bottom: 4px; font-size: 0.9rem; }
.contact-info-item span, .contact-info-item a { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.contact-info-item a:hover { color: var(--gold); }

/* --- Google Map --- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 30px 0;
}
.map-container iframe { width: 100%; height: 350px; border: 0; display: block; }

/* --- Links Page --- */
.links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  transition: all var(--transition);
  background: var(--white);
}
.link-item:hover {
  border-color: var(--steel-blue);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.link-item svg { width: 18px; height: 18px; fill: var(--steel-blue); flex-shrink: 0; }
.link-item span { color: var(--text-dark); font-size: 0.92rem; }

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--steel-blue);
}
.footer p { font-size: 0.9rem; line-height: 1.7; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition), padding-left var(--transition);
}
.footer ul li a:hover { color: var(--steel-blue-light); padding-left: 4px; }
.footer__about p { margin-bottom: 16px; }
.footer__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold) !important;
  font-size: 1.1rem;
  font-weight: 700;
}
.footer__phone svg { width: 20px; height: 20px; fill: var(--gold); }
.footer__email { color: var(--steel-blue-light) !important; font-size: 0.9rem; display: inline-block; margin-top: 8px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 0.82rem;
}
.footer__bottom a { color: var(--steel-blue-light); }

/* --- Thank You Page --- */
.thank-you { text-align: center; padding: 80px 0; }
.thank-you__icon { font-size: 4rem; margin-bottom: 20px; }
.thank-you h1 { margin-bottom: 16px; }
.thank-you p { max-width: 500px; margin: 0 auto 28px; }

/* --- Privacy / Generic Content --- */
.privacy-content h2 { margin-top: 32px; }
.privacy-content h3 { margin-top: 24px; }

/* --- Sitemap Page --- */
.sitemap-columns { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 32px; }
.sitemap-columns h3 { font-size: 1.1rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--steel-blue); }
.sitemap-columns ul li { margin-bottom: 8px; }
.sitemap-columns ul li a { color: var(--text-dark); font-size: 0.92rem; }
.sitemap-columns ul li a:hover { color: var(--steel-blue); }

/* --- Location Page --- */
.location-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-bottom: 40px; }
.location-intro img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.history-section { background: var(--off-white); padding: 40px; border-radius: var(--radius-lg); margin: 40px 0; }
.history-section h2 { margin-bottom: 16px; }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .location-intro { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav__toggle { display: block; }
  .nav__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    gap: 0;
  }
  .nav__list.active { display: flex; }
  .nav__link { width: 100%; padding: 12px 16px; }
  .nav__dropdown {
    position: static;
    box-shadow: none;
    padding-left: 16px;
    display: none;
    background: var(--off-white);
    border-radius: var(--radius);
    margin-top: 4px;
  }
  .nav__item.open .nav__dropdown { display: block; }
  .hero h1 { font-size: 2rem; }
  .hero { min-height: 400px; }
  .features { grid-template-columns: 1fr; margin-top: -30px; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .section-header h2 { font-size: 1.7rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .cta-banner h2 { font-size: 1.5rem; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; justify-content: center; }
  .page-hero h1 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .links-grid { grid-template-columns: 1fr; }
  .sitemap-columns { grid-template-columns: 1fr; }
}