/* ===== All Hours Plumbing - Brand Blue Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0F4571;
  --navy-deep: #004471;
  --navy-light: #1A5A8A;
  --copper: #09A3D5;
  --copper-light: #4CC0E0;
  --copper-dark: #0077AA;
  --cream: #F5F5F5;
  --cream-dark: #EDEDED;
  --slate: #5A5A5A;
  --slate-light: #8A9AAA;
  --white: #FFFFFF;
  --text-dark: #0F4571;
  --text-body: #4B4B4B;
  --text-light: #C8D0D8;
  --shadow-sm: 0 2px 8px rgba(27,42,61,0.08);
  --shadow-md: 0 8px 24px rgba(27,42,61,0.12);
  --shadow-lg: 0 16px 48px rgba(27,42,61,0.16);
  --radius: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--copper);
  color: var(--white);
  padding: 12px 24px;
  z-index: 9999;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1rem; }
a {
  color: var(--copper);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--copper-dark); }
a:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
  border-radius: 2px;
}
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
  display: block;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--copper);
  border: none;
  margin-bottom: 28px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}
.btn:focus-visible {
  outline: 3px solid var(--copper-light);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}
.btn-primary:hover {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-phone { font-size: 1.15rem; padding: 16px 36px; }

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy-deep);
  transition: all var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-top {
  background: var(--copper);
  padding: 6px 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
}
.header-top a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
}
.header-top a:hover { opacity: 0.9; }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img { height: 40px; width: auto; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.logo-text small {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper-light);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta { display: none; }
@media (min-width: 992px) {
  .nav-cta { display: inline-flex; }
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

@media (max-width: 991px) {
  .hamburger { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transition: right var(--transition);
    padding: 24px;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.2rem; }
  .nav-cta-mobile { display: inline-flex; margin-top: 16px; }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
  margin-top: 94px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,26,40,0.95) 0%, rgba(27,42,61,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,135,77,0.15);
  border: 1px solid rgba(200,135,77,0.3);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.6s ease-out both;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeSlideUp 0.6s ease-out 0.15s both;
}
.hero h1 .accent { color: var(--copper-light); }
.hero-sub {
  font-size: 1.2rem;
  color: var(--slate-light);
  margin-bottom: 36px;
  line-height: 1.8;
  animation: fadeSlideUp 0.6s ease-out 0.3s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeSlideUp 0.6s ease-out 0.45s both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeSlideUp 0.6s ease-out 0.6s both;
}
.hero-stat h3 {
  color: var(--copper-light);
  font-size: 2rem;
  font-weight: 800;
}
.hero-stat p {
  color: var(--slate-light);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at top right, rgba(200,135,77,0.08) 0%, transparent 60%);
  z-index: 1;
}

/* --- Sections --- */
.section { padding: 100px 0; }
.section-dark {
  background: var(--navy);
  color: var(--text-light);
}
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark .section-label { color: var(--copper-light); }
.section-cream { background: var(--cream-dark); }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--copper);
  flex-shrink: 0;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.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.05);
}
.service-card-body { padding: 28px; }
.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.service-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { gap: 10px; }

/* --- Services List --- */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.service-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--copper);
  transition: all var(--transition);
}
.service-list-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.service-list-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--copper);
  font-size: 1.1rem;
}
.service-list-item span {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

/* --- About Split --- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-image::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 120px;
  height: 120px;
  border: 4px solid var(--copper);
  border-radius: var(--radius);
  z-index: -1;
}
.about-text p { font-size: 1.05rem; line-height: 1.8; }
.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.about-detail {
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius);
}
.about-detail strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 4px;
}
.about-detail span {
  font-weight: 600;
  color: var(--navy);
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 32px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--copper);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}
.testimonial-card blockquote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--copper-light);
  font-size: 0.95rem;
}
.testimonial-stars {
  color: var(--copper-light);
  margin-bottom: 16px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* --- CTA --- */
.cta-section {
  background: linear-gradient(135deg, var(--copper-dark) 0%, var(--copper) 50%, var(--copper-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-bottom: 32px; position: relative; }
.cta-section .btn { position: relative; }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-list { list-style: none; }
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--copper);
}
.contact-info-item h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--navy);
}
.contact-info-item p { margin: 0; color: var(--text-body); }
.contact-info-item a { color: var(--copper); font-weight: 600; }

/* --- Contact Form --- */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--copper);
  background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- Service Areas --- */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.area-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  transition: all var(--transition);
}
.area-tag:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
}

/* --- Footer --- */
.footer {
  background: var(--navy-deep);
  color: var(--text-light);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer h4 {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--slate-light);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--slate-light);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--copper-light); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--slate);
}
.footer-logo { height: 36px; width: auto; margin-bottom: 16px; }

/* --- Page Header --- */
.page-header {
  background: var(--navy-deep);
  padding: 60px 0 50px;
  margin-top: 94px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(200,135,77,0.1) 0%, transparent 50%);
}
.page-header h1 { color: var(--white); position: relative; }
.page-header p { color: var(--slate-light); font-size: 1.1rem; max-width: 600px; position: relative; }
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--slate-light);
  margin-bottom: 16px;
  position: relative;
}
.breadcrumb a { color: var(--copper-light); }

/* --- Service Detail --- */
.service-detail {
  padding: 48px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.service-detail:nth-child(even) .service-detail-inner { direction: rtl; }
.service-detail:nth-child(even) .service-detail-inner > * { direction: ltr; }
.service-detail img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}
.service-detail h3 { margin-bottom: 12px; }
.service-detail p { font-size: 1rem; line-height: 1.8; }

/* --- Ratings Bar --- */
.ratings-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.rating-item { text-align: center; }
.rating-item .rating-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--copper-light);
  line-height: 1;
}
.rating-item .rating-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--slate-light);
  margin-top: 6px;
}

/* --- Team --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.team-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--copper);
}
.team-card h4 { margin-bottom: 4px; }
.team-card p { color: var(--slate); font-size: 0.85rem; margin: 0; font-weight: 500; }

/* --- Credential badges --- */
.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.credential {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.credential .cred-icon { color: var(--copper); font-size: 1.1rem; }

/* --- Animations --- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero { min-height: 70vh; margin-top: 84px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 24px; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-image::after { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-inner { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-header { margin-top: 84px; }
}
@media (max-width: 500px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 24px; }
  .about-details { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
