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

:root {
  --red: #D62828;
  --red-dark: #B71C1C;
  --red-light: #FF5252;
  --black: #111111;
  --dark: #1A1A1A;
  --gray-900: #212121;
  --gray-800: #333333;
  --gray-700: #444444;
  --gray-600: #666666;
  --gray-400: #999999;
  --gray-300: #CCCCCC;
  --gray-200: #E5E5E5;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  color: var(--red);
  display: flex;
  align-items: center;
}

.logo-icon svg {
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-weight: 800;
  font-size: 18px;
  color: var(--black);
}

.logo-tagline {
  font-size: 11px;
  color: var(--gray-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  transition: color var(--transition);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav a:hover {
  color: var(--red);
}

.nav a:hover::after {
  width: 100%;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: background var(--transition);
  flex-shrink: 0;
}

.header-phone:hover {
  background: var(--red-dark);
}

.phone-icon {
  font-size: 16px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== SVG ICON UTILITIES ===== */
.icon {
  flex-shrink: 0;
  vertical-align: middle;
}

.icon-inline {
  display: inline-block;
  vertical-align: -3px;
  margin-right: 4px;
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  justify-content: center;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(214,40,40,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.3);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  font-size: 18px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 100%),
    url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  background-color: var(--dark);
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(214,40,40,0.15);
  color: var(--red-light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(214,40,40,0.3);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-phone-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}

.hero-phone-banner a {
  color: var(--white);
  font-size: 18px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
}

.section-header-light h2 {
  color: var(--white);
}

.section-header-light p {
  color: rgba(255,255,255,0.7);
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 12px;
}

.section-tag-red {
  color: var(--red-light);
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.services-grid .service-card {
  grid-column: span 2;
}

/* Center the last 2 cards: push 4th to col 2, 5th to col 4 */
.services-grid .service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.services-grid .service-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.why-card {
  grid-column: span 2;
}

.why-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.why-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(214,40,40,0.4);
  transform: translateY(-4px);
}

.why-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  color: var(--red-light);
}

.why-icon svg {
  flex-shrink: 0;
}

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 100px 0;
  background: var(--gray-100);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.review-card {
  grid-column: span 2;
}

.review-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.review-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-stars {
  color: #F59E0B;
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-stars svg {
  flex-shrink: 0;
}

.review-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 14px;
  color: var(--black);
}

.review-author span {
  font-size: 12px;
  color: var(--gray-400);
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  aspect-ratio: 1;
}

.about-text .section-tag {
  display: block;
}

.about-text h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about-text p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text .btn {
  margin-top: 12px;
}

/* ===== LOCATION ===== */
.location {
  padding: 100px 0;
  background: var(--dark);
}

.location-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-800);
  min-height: 400px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.location-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
}

.location-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
}

.location-item:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.location-item:first-child {
  padding-top: 0;
}

.location-item:last-child {
  padding-bottom: 0;
}

.location-item-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red-light);
  display: flex;
  align-items: flex-start;
}

.location-item strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 4px;
}

.location-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.location-item a {
  color: var(--red-light);
  font-weight: 600;
}

.location-item a:hover {
  text-decoration: underline;
}

.location-btn {
  margin-top: 20px;
  width: 100%;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-cta-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-cta-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}

.contact-cta-card > p {
  color: var(--gray-600);
  margin-bottom: 20px;
  font-size: 15px;
}

.contact-phone-btn {
  width: 100%;
  margin-bottom: 24px;
  font-size: 20px;
}

.contact-details p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 12px;
  line-height: 1.6;
}

/* ===== FORM ===== */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-form h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--black);
  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(--red);
  box-shadow: 0 0 0 3px rgba(214,40,40,0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  margin-top: 16px;
  background: #E8F5E9;
  color: #2E7D32;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
}

.form-success.show {
  display: block;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--red);
  padding: 60px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--white);
  font-weight: 800;
}

.cta-inner p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-top: 6px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-name {
  color: var(--white);
}

.footer-logo .logo-tagline {
  color: var(--gray-400);
}

.footer-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--red-light);
}

.footer-col p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-col p a {
  display: inline;
  color: var(--red-light);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-600);
}

/* ===== MOBILE CALL BUTTON ===== */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: var(--red);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(214,40,40,0.4);
  transition: all var(--transition);
  align-items: center;
  gap: 8px;
}

.mobile-call-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.mobile-call-btn span {
  font-size: 18px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-photo {
    aspect-ratio: 4/3;
  }

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

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

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

  .services-grid .service-card {
    grid-column: span 1;
  }

  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: span 1;
  }

  /* Center the 5th service card */
  .services-grid .service-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

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

  .why-card,
  .why-card:nth-child(4),
  .why-card:nth-child(5) {
    grid-column: span 1;
  }

  .why-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

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

  .review-card,
  .review-card:nth-child(4),
  .review-card:nth-child(5) {
    grid-column: span 1;
  }

  .review-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    gap: 0;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 16px;
  }

  .nav a::after {
    display: none;
  }

  .header-phone .phone-number {
    display: none;
  }

  .header-phone {
    padding: 10px;
    border-radius: 50%;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: auto;
    padding: 100px 0 80px;
  }

  .hero h1 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-phone-banner {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  /* Section padding reduction on mobile */
  .services,
  .why-us,
  .reviews,
  .about,
  .location,
  .contact {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 14px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-grid .service-card,
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: span 1;
  }

  .service-img {
    height: 160px;
  }

  .service-body {
    padding: 20px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .why-card,
  .why-card:nth-child(4),
  .why-card:nth-child(5) {
    grid-column: span 1;
  }

  /* Center the 5th card on its own row */
  .why-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .why-card {
    padding: 20px 16px;
  }

  .why-icon {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .why-card h3 {
    font-size: 14px;
  }

  .why-card p {
    font-size: 12px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card,
  .review-card:nth-child(4),
  .review-card:nth-child(5) {
    grid-column: span 1;
  }

  .review-card {
    padding: 20px;
  }

  .about-inner {
    gap: 32px;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .about-text p {
    font-size: 14px;
  }

  .location-map {
    min-height: 250px;
  }

  .location-map iframe {
    min-height: 250px;
  }

  .location-card {
    padding: 20px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-cta-card {
    padding: 24px;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-phone-btn {
    font-size: 18px;
  }

  .cta-banner {
    padding: 40px 0;
  }

  .cta-inner {
    text-align: center;
    justify-content: center;
  }

  .cta-inner h2 {
    font-size: 22px;
  }

  .cta-inner .btn {
    width: 100%;
  }

  .footer {
    padding: 40px 0 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }

  .mobile-call-btn {
    display: flex;
    bottom: 16px;
    right: 16px;
  }

  /* Add padding at bottom so floating button doesn't cover content */
  .footer-bottom {
    padding-bottom: 70px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    height: 60px;
    gap: 12px;
  }

  .logo-name {
    font-size: 15px;
  }

  .logo-tagline {
    font-size: 10px;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero::before {
    height: 80px;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 15px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-card:nth-child(5) {
    max-width: 100%;
  }

  .service-img {
    height: 140px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents iOS zoom on focus */
    padding: 14px 16px;
  }
}
