/* =============================================
   A Plus Service Centre — styles.css
   Template A — Dark Amber Automotive Theme
   Accent: #ec9434 (Orange/Amber from logo)
   ============================================= */

/* --------------------------------------------------
   CSS VARIABLES
-------------------------------------------------- */
:root {
  --accent: #ec9434;
  --accent-hover: #efa452;
  --accent-glow: rgba(236, 148, 52, 0.25);
  --bg: #0a0a0a;
  --surface: #1a1a1a;
  --card: #242424;
  --text: #ffffff;
  --text-muted: #999999;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --max-width: 1280px;
  --section-pad: clamp(4rem, 8vw, 8rem);
}

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

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

em {
  color: var(--accent);
  font-style: normal;
}

/* --------------------------------------------------
   DEMO WATERMARK
-------------------------------------------------- */
@keyframes demo-pulse {
  0%, 100% { opacity: 0.28; text-shadow: 0 0 20px var(--accent), 0 0 60px var(--accent), 0 0 120px var(--accent), 0 0 200px var(--accent-glow); }
  50%       { opacity: 0.45; text-shadow: 0 0 30px var(--accent), 0 0 80px var(--accent), 0 0 160px var(--accent), 0 0 280px var(--accent-glow); }
}
.demo-watermark {
  position: fixed;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 120px;
  font-weight: 900;
  color: var(--accent);
  z-index: 9999;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.15em;
  -webkit-text-stroke: 2px var(--accent);
  font-family: 'Oswald', sans-serif;
  animation: demo-pulse 3s ease-in-out infinite;
}

/* --------------------------------------------------
   SCROLL PROGRESS BAR
-------------------------------------------------- */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  z-index: 10000;
  width: 0;
  transition: width 0.1s ease;
}

/* --------------------------------------------------
   BACK TO TOP
-------------------------------------------------- */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--accent-glow);
}

#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
}

/* --------------------------------------------------
   CONTAINER
-------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --------------------------------------------------
   TYPOGRAPHY HELPERS
-------------------------------------------------- */
h1, h2, h3,
.nav-link,
.mobile-nav-link,
.btn,
.stat-number,
.eyebrow,
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #111;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
  color: #111;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-full {
  width: 100%;
}

/* --------------------------------------------------
   REVEAL ANIMATIONS
-------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* --------------------------------------------------
   NAV
-------------------------------------------------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 96px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav-link {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--accent);
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.mobile-nav-close:hover {
  color: var(--accent);
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url('images/hero.jpg') center / cover no-repeat;
}

.hero-container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  text-align: left;
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Trust Strip */
.trust-strip {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-family: 'Roboto', sans-serif;
}

.trust-item i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* --------------------------------------------------
   WHY CHOOSE US
-------------------------------------------------- */
.why-section {
  background: var(--surface);
  padding: var(--section-pad) 0;
}

.why-section h2 {
  text-align: center;
}

.why-section .eyebrow {
  text-align: center;
}

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

.why-card {
  text-align: center;
  padding: 2rem 1rem;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid rgba(232, 160, 32, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent);
  font-size: 2rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.why-card:hover .icon-circle {
  transform: scale(1.08);
  background: rgba(232, 160, 32, 0.35);
}

.why-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------
   SERVICES
-------------------------------------------------- */
.services-section {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.services-section h2,
.services-section .eyebrow {
  text-align: center;
}

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

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border-top: 3px solid transparent;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--accent);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.service-icon-block {
  height: 160px;
  background: linear-gradient(135deg, rgba(232, 160, 32, 0.12), rgba(232, 160, 32, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.service-card:hover .service-icon-block {
  background: linear-gradient(135deg, rgba(232, 160, 32, 0.2), rgba(232, 160, 32, 0.08));
}

.service-body {
  padding: 1.75rem;
}

.service-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.service-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------
   STATS
-------------------------------------------------- */
.stats-section {
  background: var(--surface);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--accent);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* --------------------------------------------------
   GALLERY
-------------------------------------------------- */
.gallery-section {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.gallery-section h2,
.gallery-section .eyebrow {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  grid-auto-rows: 220px;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: #fff;
  padding: 1rem 1.25rem 0.75rem;
  font-size: 0.85rem;
  font-family: 'Roboto', sans-serif;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* --------------------------------------------------
   ABOUT
-------------------------------------------------- */
.about-section {
  background: var(--surface);
  padding: var(--section-pad) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-text .eyebrow {
  text-align: left;
}

.about-text h2 {
  text-align: left;
}

.about-para {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.feature-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}

.feature-list li i {
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  width: 18px;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--accent);
  color: #111;
  padding: 0.75rem 1.25rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

/* --------------------------------------------------
   TESTIMONIALS
-------------------------------------------------- */
.testimonials-section {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.testimonials-section h2,
.testimonials-section .eyebrow {
  text-align: center;
}

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

.testimonial-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(232, 160, 32, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stars {
  color: var(--accent);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

.testimonial-author {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
}

/* --------------------------------------------------
   CONTACT
-------------------------------------------------- */
.contact-section {
  background: var(--bg);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.contact-section h2,
.contact-section .eyebrow {
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid rgba(232, 160, 32, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
  transition: color 0.2s ease;
}

a.contact-value:hover {
  color: var(--accent);
}

.map-wrap {
  margin-top: 0.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--card);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-family: 'Roboto', sans-serif;
}

.required {
  color: var(--accent);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

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

/* Form Thank You */
.form-thanks {
  text-align: center;
  padding: 3rem 1rem;
}

.thanks-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.form-thanks h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.form-thanks p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
}

.footer-inner {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand .footer-logo {
  height: 112px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
  line-height: 1.4;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.footer-contact-list li i {
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 14px;
}

.footer-contact-list a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: 'Roboto', sans-serif;
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */

/* 1280px */
@media (max-width: 1280px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

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

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

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image-wrap {
    order: -1;
  }

  .about-img {
    height: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

/* 768px */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/* 640px */
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* 480px */
@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form-wrap {
    padding: 1.5rem;
  }

  h2 {
    margin-bottom: 1.5rem;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }
}
