/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #ffffff;
  background: #000000;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== IMAGE PLACEHOLDERS ========== */
.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-color: #1a1a1a;
  background-image: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* WHO WE ARE */
.who-placeholder {
  background-image: url('assets/who-we-are.jpg');
  background-color: #1a1c1f;
}

/* TEAM */
.team-card:nth-child(1) .team-placeholder { background-image: url('assets/team-trevor.jpg'); }
.team-card:nth-child(2) .team-placeholder { background-image: url('assets/team-brian.jpg'); }
.team-card:nth-child(3) .team-placeholder { background-image: url('assets/team-cody.jpg'); }
.team-placeholder { background-color: #1f1f1f; background-position: top center; }

/* SERVICE DETAILS */
#tint .detail-placeholder { background-image: url('assets/detail-tint.jpg'); }
#ceramic-coatings .detail-placeholder { background-image: url('assets/detail-ceramic-coating.jpg'); }
#detailing .detail-placeholder { background-image: url('assets/who-we-are.jpg'); }

/* INSTAGRAM */
.insta-1 { background-image: url('assets/insta-1.jpg'); }
.insta-2 { background-image: url('assets/insta-2.jpg'); }
.insta-3 { background-image: url('assets/insta-3.jpg'); }
.insta-4 { background-image: url('assets/insta-4.jpg'); }
.insta-5 { background-image: url('assets/insta-5.jpg'); }
.insta-6 { background-image: url('assets/insta-6.jpg'); }
.insta-7 { background-image: url('assets/insta-7.jpg'); }
.insta-8 { background-image: url('assets/insta-8.jpg'); }

/* ========== UNIFIED NAV BAR ========== */
.site-nav {
  background: #ffffff;
  height: 64px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.nav-social svg {
  fill: #333;
}

.nav-social a:hover {
  opacity: 1;
}

.nav-phone {
  color: #333;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-phone:hover {
  color: #0E8A45;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 46px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: #555;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 14px;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #0E8A45;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #0E8A45;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* ========== NAV DROPDOWN (Services) ========== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-arrow {
  font-size: 0.65em;
  transition: transform 0.2s ease;
  line-height: 1;
}

.nav-dropdown.open .nav-dropdown-arrow,
.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 12px 22px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-link:hover {
  background: #0E8A45;
  color: #ffffff;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: #333;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile nav open state */
.nav-links.open {
  display: flex;
}

/* Mobile menu toggle animation */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('assets/hero-bg.jpg') center center / cover no-repeat;
  background-color: #111;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
}

.hero-welcome {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 10px;
}

.hero-title {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 4rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #0E8A45;
  color: #ffffff;
  border-color: #0E8A45;
}

.btn-primary:hover {
  background: #0A6B35;
  border-color: #0A6B35;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.2);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline:hover {
  background: #ffffff;
  color: #000000;
}

.btn-dark {
  background: #181B1B;
  color: #ffffff;
  border-color: #181B1B;
}

.btn-dark:hover {
  background: #2a2d2d;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.15);
}

.btn-outline-dark {
  background: transparent;
  color: #333;
  border-color: #333;
}

.btn-outline-dark:hover {
  background: #333;
  color: #fff;
}

.btn-submit {
  background: #ffffff;
  color: #0E8A45;
  border-color: #ffffff;
  width: 100%;
  max-width: 300px;
  font-size: 16px;
}

.btn-submit:hover {
  background: #f0f0f0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ========== SERVICES GRID ========== */
.services-grid {
  background: #181B1B;
  padding: 80px 0;
}

.services-grid.green {
  background: #0E8A45;
}

.services-grid-inner.two-by-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin: 0 auto;
  gap: 20px;
}

.services-grid-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  text-align: center;
  padding: 30px 20px;
}

.service-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.service-icon svg {
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.3));
}

.services-grid-inner.three-col {
  grid-template-columns: repeat(3, 1fr);
}


.service-card h3 {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ========== WHO WE ARE ========== */
.who-we-are {
  background: #24262A;
  overflow: hidden;
}

.who-we-are-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.who-we-are-image {
  position: relative;
}

.who-placeholder {
  min-height: 600px;
}

.who-we-are-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.who-we-are-text h2 {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 2.7rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: #ffffff;
}

.who-we-are-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 2.4;
  margin-bottom: 20px;
}

/* ========== RED SERVICES SECTION ========== */
.services-red {
  background: #0E8A45;
  padding: 60px 0;
}

.services-red-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.red-service-card {
  text-align: center;
  padding: 30px 15px;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.red-service-card:hover {
  background: rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.red-service-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.red-service-card h4 {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ========== STATS SECTION ========== */
.stats-section {
  background: #24262A;
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: linear-gradient(135deg, rgba(14, 138, 69, 0.92), rgba(10, 107, 53, 0.88)),
              url('assets/testimonials-bg.jpg') center center / cover no-repeat;
  background-color: #0E8A45;
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  position: relative;
  padding: 40px 30px 30px;
}

.quote-mark {
  font-family: 'Georgia', serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.25);
  position: absolute;
  top: -20px;
  left: 20px;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
}

/* ========== TEAM SECTION ========== */
.team-section {
  background: #181B1B;
  padding: 80px 0;
}

.section-title {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
}

.section-title.light {
  color: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 2px;
}

.team-placeholder {
  min-height: 100%;
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
}

.team-card h3 {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.team-card p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ========== SERVICE DETAIL SECTIONS ========== */
.service-detail {
  background: #181B1B;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.service-detail-image {
  position: relative;
  overflow: hidden;
}

.detail-placeholder {
  min-height: 500px;
}

.service-detail-text {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-text h2 {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: #ffffff;
}

.service-detail-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 20px;
}

.service-detail-text .btn {
  align-self: flex-start;
  margin-top: 10px;
}

/* Reverse layout */
.service-detail.reverse .service-detail-inner {
  direction: rtl;
}

.service-detail.reverse .service-detail-inner > * {
  direction: ltr;
}

/* ========== INSTAGRAM SECTION ========== */
.instagram-section {
  background: #f5f5f5;
  padding: 80px 0;
}

.instagram-section .section-title {
  color: #333;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.insta-card {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.insta-card:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

.insta-placeholder {
  min-height: 100%;
}

.insta-placeholder::after {
  content: '';
}


.instagram-cta {
  text-align: center;
}

/* ========== CONTACT FORM ========== */
.contact-section {
  background: #0E8A45;
  padding: 80px 0;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-group.full {
  width: 100%;
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  color: #ffffff;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option {
  background: #0E8A45;
  color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.full:last-child {
  text-align: center;
  margin-top: 10px;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #ffffff;
  padding-top: 60px;
  border-top: 1px solid #e5e5e5;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.footer-logo-img {
  max-width: 250px;
  opacity: 0.8;
}

.footer-info {
  color: #666;
  font-size: 0.95rem;
  line-height: 2;
}

.footer-info a {
  color: #666;
  transition: color 0.3s ease;
}

.footer-info a:hover {
  color: #0E8A45;
}

.footer-address {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding: 20px 0;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #999;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-links a {
  color: #999;
}

.footer-links a:hover {
  color: #0E8A45;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social a {
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  opacity: 1;
}

.footer-social svg {
  fill: #333;
}

/* ========== RESPONSIVE: TABLET ========== */
@media (max-width: 1024px) {
  .services-grid-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-red-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .who-we-are-text {
    padding: 50px 40px;
  }

  .who-we-are-text h2 {
    font-size: 2.2rem;
  }

  .service-detail-text {
    padding: 40px 30px;
  }

  .service-detail-text h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 850px) {
  .nav-inner {
    gap: 12px;
  }

  .nav-link {
    font-size: 11px;
    padding: 8px 8px;
    letter-spacing: 0.5px;
  }

  .nav-phone {
    font-size: 12px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-welcome {
    font-size: 2rem;
  }

  .hero {
    min-height: 65vh;
  }

  .who-we-are-inner {
    grid-template-columns: 1fr;
  }

  .who-we-are-image {
    order: 2;
  }

  .who-we-are-text {
    order: 1;
    padding: 40px 30px;
  }

  .who-placeholder {
    min-height: 300px;
  }

  .service-detail-inner {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse .service-detail-inner {
    direction: ltr;
  }

  .detail-placeholder {
    min-height: 250px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-red-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-logo-img {
    max-width: 200px;
  }
}

/* ========== RESPONSIVE: MOBILE ========== */
@media (max-width: 550px) {
  .nav-logo {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
  }

  .nav-link::after {
    display: none;
  }

  /* Dropdown on mobile: expand inline, no overlay */
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    background: #f5f5f5;
    border-radius: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 500px;
    transform: none;
  }

  .nav-dropdown-link {
    padding: 12px 40px;
    font-size: 13px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    min-height: 450px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-welcome {
    font-size: 1.75rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

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

  .services-red-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }

  .who-we-are-text {
    padding: 30px 20px;
  }

  .who-we-are-text h2 {
    font-size: 1.75rem;
  }

  .who-we-are-text p {
    font-size: 0.92rem;
    line-height: 1.9;
  }

  /* Service details: text first on mobile */
  .service-detail-inner {
    display: flex;
    flex-direction: column;
  }

  .service-detail-text {
    padding: 30px 20px;
    order: 1;
  }

  .service-detail-image {
    order: 2;
  }

  .service-detail-text h2 {
    font-size: 1.5rem;
  }

  .detail-placeholder {
    min-height: 220px;
  }

  /* Testimonials tighter on mobile */
  .testimonials {
    padding: 60px 0;
  }

  .testimonial-card {
    padding: 30px 15px 20px;
  }

  .quote-mark {
    font-size: 4rem;
    top: -10px;
    left: 10px;
  }

  .testimonial-card p {
    font-size: 0.95rem;
  }

  /* Footer tighter */
  .footer-inner {
    padding: 0 20px 30px;
  }

  .footer-logo-img {
    max-width: 180px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Contact form */
  .contact-section {
    padding: 50px 0;
  }

  .contact-form {
    padding: 0 10px;
  }

  /* Green banner tighter */
  .services-red {
    padding: 40px 0;
  }

  .red-service-card {
    padding: 20px 10px;
  }

  .contact-section {
    padding: 50px 0;
  }
}
