/* ============================================
   COMMUNITY CARE SOLUTIONS - Main Stylesheet
   Brand Color: #48a6a7 (Monochromatic Palette)
   Fonts: Poppins + Lora
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --primary:     #48a6a7;
  --primary-dark:#00393D;
  --primary-mid: #2d7a7b;
  --primary-light:#80CFD7;
  --primary-pale:#D3F9FD;
  --bg-light:    #E3EEEE;
  --bg-pale:     #f0fafa;
  --white:       #ffffff;
  --dark:        #232626;
  --text:        #636B6B;
  --border:      #D3DBDC;
  --font-head:   'Poppins', sans-serif;
  --font-body:   'Lora', serif;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(72,166,167,0.10);
  --shadow-lg:   0 8px 40px rgba(72,166,167,0.18);
  --transition:  0.3s ease;
  --max-width:   1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--primary); transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== SECTION SPACING ===== */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 500; letter-spacing: -1px; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 500; letter-spacing: -0.8px; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 500; }
h4 { font-size: 1.3rem; font-weight: 500; }
p { margin-bottom: 1rem; }

.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}
.section-title { color: var(--dark); margin-bottom: 16px; }
.section-subtitle { color: var(--text); font-size: 1.05rem; max-width: 560px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(72,166,167,0.35);
}
.btn-outline {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  text-align: center;
}
.btn-white:hover {
  background: var(--primary-pale);
  color: var(--primary-dark);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.navbar-logo img { height: 44px; width: auto; }
.navbar-logo span {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-nav a {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all var(--transition);
}
.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--primary-dark);
  background: var(--bg-light);
}
.navbar-nav .btn { margin-left: 8px; padding: 10px 24px; color: white; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  padding-top: 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url('../images/hero-main.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,40,40,0.70) 0%,
    rgba(10,40,40,0.41) 50%,
    rgba(10,40,40,0.10) 100%
  );
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0;
  padding-left: 65px;
  max-width: 53%;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.hero h1 { color: #ffffff; margin-bottom: 24px; font-size: 4.5rem; line-height: 1.2; width: 143%;  }
.hero h1 span { color: #ffffff; }
.hero-desc { font-size: 15px; color: rgba(255,255,255,0.88); margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}
.hero-image {
  display: none;
}
.hero-image-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
}
.hero-image-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-image-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}
.hero-image-badge-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}
.hero-image-badge-text span { font-size: 12px; color: var(--text); }

/* ===== ABOUT SECTION ===== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 500px;
}
.about-img-1 {
  width: 65%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.about-img-2 {
  width: 55%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: 8px;
  left: 23%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  border-radius: 16px;
  padding: 16px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  z-index: 2;
}
.about-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
}
.about-badge span { font-size: 12px; opacity: 0.85; }
.about-content .section-subtitle { margin-bottom: 32px; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}
.about-feature-text h4 { font-size: 1rem; margin-bottom: 4px; color: var(--dark); }
.about-feature-text p { font-size: 14px; margin: 0; color: var(--text); }

/* ===== SERVICES ===== */
.services { background: var(--bg-pale); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  width: 180px;
  min-width: 180px;
  height: 160px;
  object-fit: cover;
}
.service-card-body { padding: 24px; flex: 1; }
.service-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card-body p { font-size: 14px; margin-bottom: 16px; color: var(--text); }
.service-card-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-card-link:hover { color: var(--primary-dark); gap: 10px; }

/* ===== WHY CHOOSE US ===== */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  margin-top: 2px;
}
.why-item h4 { font-size: 1rem; margin-bottom: 4px; color: var(--dark); }
.why-item p { font-size: 14px; margin: 0; }
.why-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-pale); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-text {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.testimonial-author span {
  font-size: 12px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== FAQ ===== */
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.faq-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-pale); }
.faq-question.active { background: var(--primary); color: var(--white); }
.faq-question.active .faq-icon { transform: rotate(180deg); }
.faq-icon { transition: transform var(--transition); flex-shrink: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 50%, var(--primary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%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-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}
.cta-text h2 { color: var(--white); margin-bottom: 12px; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-brand img { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--primary); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.footer-contact-item i { color: var(--primary-light); margin-top: 2px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--bg-pale) 0%, var(--bg-light) 100%);
  text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--text);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--border); }

/* ===== CONTACT FORM ===== */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}
.contact-info-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-info-text span { font-size: 14px; color: var(--text); }
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(72,166,167,0.12);
  background: var(--bg-pale);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ===== TEAM CARDS ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-4px); }
.team-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--primary); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}
.fade-in-up.delay-1 { animation-delay: 0.1s; }
.fade-in-up.delay-2 { animation-delay: 0.2s; }
.fade-in-up.delay-3 { animation-delay: 0.3s; }
.fade-in-up.delay-4 { animation-delay: 0.4s; }

/* Service row mobile images — hidden by default, shown only on mobile */
.service-img-mobile { display: none; }

/* About home page mobile image — hidden by default, shown only on mobile */
.about-img-mobile-home { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; max-width: 100%; padding-left: 20px; }
  .hero-inner { text-align: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 300px; }
  .about-img-1 { width: 60%; }
  .about-img-2 { width: 50%; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-image { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  /* Prevent horizontal overflow globally */
  html, body { overflow-x: hidden; }

  .container { padding: 0 20px; }
  .section { padding: 60px 0; }

  /* Navbar */
  .navbar-nav { display: none; position: fixed; top: 80px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--border); gap: 4px; box-shadow: var(--shadow); }
  .navbar-nav.open { display: flex; }
  .navbar-nav a { width: 100%; padding: 12px 16px; border-radius: 8px; }
  .nav-toggle { display: flex; }

  /* Hero — push text down so faces are visible at top */
  .hero { background-position: 83% top; min-height: 100svh; align-items: flex-end; }
  .hero-inner { padding-left: 0; padding-bottom: 48px; max-width: 100%; text-align: center; }

  /* About home — show mobile image, hide stacked images */
  .about-img-mobile-home { display: block; }
  .about-images { display: none; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); width: 100%; letter-spacing: -0.5px; }
  .hero-desc { font-size: 14px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 32px; padding-top: 28px; }
  .hero-stat-number { font-size: 1.7rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { flex-direction: column; }
  .service-card-img { width: 100%; height: 200px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Services page — stack rows vertically, show mobile images */
  .service-row {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin-bottom: 48px !important;
  }
  .service-img-desktop { display: none !important; }
  .service-img-mobile { display: block; margin: 16px 0 24px; }
  .service-text { display: block; }

  /* About images — simplify to single image on mobile */
  .about-images { height: auto; margin-bottom: 32px; }
  .about-img-1 { display: none; }
  .about-img-2 {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 16px;
    border: none;
    box-shadow: none;
    object-fit: cover;
    object-position: top center;
  }

  /* Page hero (inner pages) */
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
}