/* =============================================
   H&A AUTOS — MAIN STYLESHEET
   Font: Nunito (local woff2)
   Palette: White / Light-grey / Secondary / Primary #d10300
============================================= */

/* ---------- FONT FACE ---------- */
@font-face {
  font-family: "Nunito";
  src: url("../font/nunito.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- VARIABLES ---------- */
:root {
  --primary: #d10300;
  --primary-dark: #a80200;
  --secondary: #0d0d0d;
  --dark: #1a1a1a;
  --dark-grey: #2c2c2c;
  --mid-grey: #555555;
  --light-grey: #f8f9fa;
  --border: #e0e0e0;
  --white: #ffffff;
  --green: #25d366;
  --green-dark: #1ebe5d;

  --font: "Nunito", sans-serif;
  --radius: 8px;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 25px rgba(0, 0, 0, 0.12);
  --t: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark-grey);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font);
  color: var(--secondary);
  line-height: 1.25;
}

h2 {
  font-size: clamp(25.6px, 3.5vw, 38.4px);
  font-weight: 800;
}

h3 {
  font-size: clamp(18.4px, 2.5vw, 24px);
  font-weight: 700;
}

h4 {
  font-size: 16.8px;
  font-weight: 700;
}

p {
  font-size: 16px;
  color: var(--mid-grey);
}

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

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

.fw-bold {
  font-weight: 700;
}

.ms-auto {
  margin-left: auto;
}

.lead {
  font-size: 16.8px;
}

.section-title {
  text-align: center;
  font-size: clamp(28.8px, 3vw, 38.4px);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  color: var(--mid-grey);
  font-size: 16.8px;
}

/* ================================================
   HEADER
================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.09);
  transition: box-shadow var(--t);
}

#header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
}

#header .navbar {
  padding-top: 18px;
  padding-bottom: 18px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 0;
}

/* Nav links — desktop */
.navbar-nav {
  align-items: center;
}

.nav-item {
  list-style: none;
}

.nav-btn-item {
  margin-left: 8px;
}

.nav-link,
.navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link {
  display: inline-block !important;
  font-family: var(--font) !important;
  font-weight: 700 !important;
  font-size: 13.12px !important;
  color: var(--dark-grey) !important;
  background: transparent !important;
  padding: 4px 16px !important;
  border-radius: 0 !important;
  border-bottom: none !important;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  transition: color var(--t) !important;
  position: relative;
}

.nav-link::after,
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--t);
}

.nav-link:hover::after,
.nav-link.active::after,
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 32px);
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: transparent !important;
}

/* CTA buttons in header */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white) !important;
  font-family: var(--font);
  font-weight: 700;
  font-size: 12.8px;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--t),
    transform var(--t);
}

.btn-call:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white) !important;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 15px;
  border-radius: var(--radius);
  border: 2px solid var(--green);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--t),
    transform var(--t);
}

.btn-whatsapp:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}

/* Hamburger toggler — hidden on desktop */
.navbar-toggler {
  background: var(--primary) !important;
  border: none !important;
  border-radius: var(--radius);
  padding: 9px 13px;
  color: var(--white);
  font-size: 17.6px;
  line-height: 1;
  cursor: pointer;
  display: none;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none;
}

.navbar-toggler:hover {
  background: var(--primary-dark) !important;
}

/* Drawer header — hidden on desktop */
.nav-drawer-header {
  display: none;
}

/* ================================================
   HERO SECTION
================================================ */
#home {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/main-image.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.93) 0%,
    rgba(255, 255, 255, 0.87) 55%,
    rgba(209, 3, 0, 0.1) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 70px 0;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-size: 13.12px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(209, 3, 0, 0.28);
}

.hero-title {
  font-size: clamp(28px, 3vw, 43.2px);
  font-weight: 900;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-title span {
  color: var(--primary);
}

.hero-tagline {
  font-size: clamp(15.2px, 1.6vw, 17.6px);
  color: var(--dark-grey);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.hero-services-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-services-strip span {
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 13.12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
}

.hero-intro {
  max-width: 680px;
  margin: 0 0 32px 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 22px 26px;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
}

.hero-intro p {
  color: var(--dark-grey);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ================================================
   BUTTONS
================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 13.44px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background var(--t),
    transform var(--t),
    box-shadow var(--t);
  white-space: nowrap;
  text-decoration: none;
}

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

.btn-danger:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-success:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-dark:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-sm {
  padding: 6px 14px;
  font-size: 12.48px;
}

.btn-outline-red {
  background: transparent;
  color: var(--primary) !important;
  border-color: var(--primary);
  font-size: 13.44px;
  padding: 9px 20px;
}

.btn-outline-red:hover {
  background: var(--primary);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-directions {
  background: var(--dark);
  color: var(--white) !important;
  border-color: var(--dark);
}

.btn-directions:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-directions i {
  color: var(--white) !important;
}

/* ================================================
   SERVICES SECTION
================================================ */
.services-section {
  background: var(--light-grey);
  padding: 80px 0;
}

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

.svc-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--t),
    box-shadow var(--t),
    border-color var(--t);
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.svc-img {
  position: relative;
  overflow: hidden;
  height: 230px;
  flex-shrink: 0;
  background: var(--light-grey);
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.svc-card:hover .svc-img img {
  transform: scale(1.03);
}

.svc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  color: var(--primary);
  font-size: 11.52px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  border: solid 2px var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

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

.svc-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.svc-icon--green {
  background: var(--green);
}

.svc-body h3 {
  font-size: 17.6px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.svc-body p {
  font-size: 14.72px;
  line-height: 1.75;
  color: var(--mid-grey);
  margin-bottom: 18px;
  flex: 1;
}

.svc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 13.12px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition:
    gap var(--t),
    color var(--t);
  margin-top: auto;
}

.svc-btn i {
  font-size: 11.52px;
  transition: transform var(--t);
}

.svc-btn:hover {
  color: var(--primary-dark);
  gap: 12px;
}

.svc-btn:hover i {
  transform: translateX(3px);
}

.svc-btn--green {
  color: var(--green);
}

.svc-btn--green:hover {
  color: var(--green-dark);
}

/* ================================================
   WHY CHOOSE SECTION
================================================ */
.why-choose-section {
  background: var(--light-grey);
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.why-card {
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--t);
}

.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20.8px;
  margin: 0 auto 16px;
}

.why-card h4 {
  color: var(--secondary);
  font-size: 16px;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--mid-grey);
  font-size: 14.4px;
  line-height: 1.6;
  margin: 0;
}

.why-highlight {
  text-align: center;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 12px;
  padding: 28px 36px;
  max-width: 800px;
  margin: 48px auto 0;
  box-shadow: var(--shadow-md);
}

.why-highlight p {
  color: var(--dark-grey);
  font-size: 17.6px;
  font-style: italic;
  font-weight: 600;
  margin: 0;
}

.why-highlight p::before {
  content: "\201C";
  color: var(--primary);
  font-size: 25.6px;
}

.why-highlight p::after {
  content: "\201D";
  color: var(--primary);
  font-size: 25.6px;
}

/* ================================================
   ABOUT SECTION
================================================ */
.about-section {
  background: var(--light-grey);
  padding: 80px 0;
}

.about-divider {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 12px auto 0;
}

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

.about-lead {
  font-size: 16.8px;
  color: var(--mid-grey);
  line-height: 1.85;
  margin-bottom: 28px;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.about-chips span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 13.12px;
  font-weight: 700;
  color: var(--dark-grey);
  padding: 5px 14px;
  white-space: nowrap;
}

.about-chips span i {
  color: var(--primary);
  font-size: 12px;
}

.about-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-img-top img,
.about-img-bottom img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease;
  display: block;
}

.about-img-top img:hover,
.about-img-bottom img:hover {
  transform: scale(1.02);
}

.about-img-bottom {
  position: relative;
}

.about-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary);
  color: var(--white);
  font-size: 12.8px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(209, 3, 0, 0.35);
}

.about-tag i {
  font-size: 12px;
}

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

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--shadow);
  border: 2px solid var(--light-grey);
  position: sticky;
  top: 100px;
}

.contact-info-logo {
  margin-bottom: 26px;
}

/* Full-width address row — text wraps without being squeezed */
.contact-detail--full .contact-detail-text {
  flex: 1;
  min-width: 0;
}

.contact-detail--full .contact-detail-text a {
  white-space: normal;
  word-break: break-word;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 13.12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--mid-grey);
  margin-bottom: 3px;
}

.contact-detail-text a,
.contact-detail-text span {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.contact-detail-text a:hover {
  color: var(--primary);
}

.contact-action-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
}

.contact-action-btns .btn {
  justify-content: center;
  width: 100%;
}

.contact-form-wrap {
  background: var(--light-grey);
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
}

.contact-form-wrap h3 {
  margin-bottom: 24px;
  color: var(--secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13.6px;
  font-weight: 700;
  color: var(--dark-grey);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font);
  font-size: 15.2px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark-grey);
  outline: none;
  width: 100%;
  transition:
    border-color var(--t),
    box-shadow var(--t);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(209, 3, 0, 0.1);
}

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

.form-submit-btn {
  width: 50%;
  justify-content: center;
  padding: 8px 16px;
  font-size: 14px;
  margin-top: 6px;
}
.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

#formMessage .alert {
  padding: 16px;
  border-radius: var(--radius);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#formMessage .alert-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
#formMessage .alert-danger {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

/* Spinner for submit button */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-spin {
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

/* ================================================
   MAP
================================================ */
.map-section {
  line-height: 0;
  font-size: 0;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* ================================================
   FOOTER
================================================ */
#footer {
  background: var(--secondary);
}

.footer-top {
  padding: 56px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-contact-lines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.4px;
  text-decoration: none;
  transition: color var(--t);
}

.footer-contact-line:hover {
  color: var(--white);
}

.footer-contact-line i {
  color: var(--primary);
  font-size: 13px;
  flex-shrink: 0;
}

.footer-contact-line span {
  line-height: 1.5;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.35);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13.28px;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--t);
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* ================================================
   SCROLL TO TOP
================================================ */
#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(209, 3, 0, 0.45);
  transition:
    background var(--t),
    transform var(--t),
    box-shadow var(--t);
}

#scrollToTop.show {
  display: flex;
}

#scrollToTop:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(209, 3, 0, 0.55);
}

/* ================================================
   ANIMATIONS
================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   RESPONSIVE
   Breakpoints:
   ≥ 992px  → desktop  (default styles above)
   ≤ 991px  → tablet + mobile (drawer nav)
   ≤ 767px  → mobile only extras
   ≤ 480px  → small mobile
================================================ */

/* ── ≤ 991px : tablet & mobile — layout + drawer nav ── */
@media (max-width: 991px) {
  /* --- Layout --- */
  #home {
    margin-top: 72px;
  }

  .hero-content {
    padding: 50px 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-tagline {
    font-size: 15.2px;
  }

  .hero-intro {
    padding: 18px 20px;
  }

  .hero-intro p {
    font-size: 15.2px;
  }

  .hero-services-strip {
    justify-content: center;
  }

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

  .svc-img {
    height: 190px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    flex-direction: row;
  }

  .about-img-top,
  .about-img-bottom {
    flex: 1;
  }

  .about-img-top img,
  .about-img-bottom img {
    height: 200px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-info {
    position: static;
  }

  .footer-contact-lines {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* --- Drawer nav --- */
  .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-drawer-header {
    display: flex;
  }

  #header .navbar-collapse {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: flex !important;
    flex-direction: column;
    padding: 0;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  #header .navbar-collapse.show {
    left: 0;
  }

  .nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 2px solid var(--light-grey);
    flex-shrink: 0;
  }

  .nav-drawer-close {
    background: none;
    border: none;
    font-size: 22.4px;
    color: var(--dark-grey);
    cursor: pointer;
    padding: 4px 6px;
    line-height: 1;
    transition: color var(--t);
  }

  .nav-drawer-close:hover {
    color: var(--primary);
  }

  #header .navbar-collapse .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
    align-items: flex-start;
    padding: 8px 0;
  }

  #header .navbar-collapse .nav-link {
    display: block !important;
    width: 100%;
    padding: 14px 24px !important;
    border-bottom: 1px solid var(--light-grey);
    font-size: 14.08px !important;
    letter-spacing: 0.8px;
    color: var(--dark-grey) !important;
  }

  #header .navbar-collapse .nav-link::after {
    display: none;
  }

  #header .navbar-collapse .nav-link:hover {
    color: var(--primary) !important;
    background: var(--light-grey) !important;
  }

  #header .navbar-collapse .nav-btn-item {
    width: 100%;
    padding: 6px 16px;
    margin: 0;
  }

  #header .navbar-collapse .nav-btn-item:first-of-type {
    margin-top: 8px;
  }

  #header .navbar-collapse .btn-call,
  #header .navbar-collapse .btn-whatsapp {
    width: 100%;
    justify-content: center;
    font-size: 14.08px;
    padding: 12px 16px;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1998;
    transition: opacity 0.3s ease;
  }

  .nav-overlay.show {
    display: block;
  }

  #scrollToTop {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: 20px;
    font-size: 14.08px;
  }
}

/* ── ≤ 767px : mobile only ── */
@media (max-width: 767px) {
  .hero-title {
    font-size: 26.4px;
  }

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

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

  .about-btns {
    flex-direction: column;
  }

  .about-btns .btn {
    width: 100%;
    justify-content: center;
  }

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

  .contact-form-wrap {
    padding: 24px 18px;
  }
}

/* ── ≤ 480px : small mobile ── */
@media (max-width: 480px) {
  .section-title {
    font-size: 25.6px;
  }

  .hero-title {
    font-size: 23.2px;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

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

  .why-highlight {
    padding: 22px 20px;
  }

  .about-images {
    flex-direction: column;
  }

  .about-img-top img,
  .about-img-bottom img {
    height: 200px;
  }
}
