/* ═══════════════════════════════════════════════
   BARON AUTO'S CAR SERVICE — STYLESHEET
   Theme: Industrial Racer | Black, Red, White
═══════════════════════════════════════════════ */

/* ── VARIABLES ───────────────────────────────── */
:root {
  --black:      #0a0a0a;
  --dark-1:     #0e0e0e;
  --dark-2:     #111111;
  --dark-3:     #171717;
  --dark-4:     #1e1e1e;
  --dark-5:     #252525;
  --red:        #d42b2b;
  --red-dark:   #a91e1e;
  --red-glow:   rgba(212, 43, 43, 0.25);
  --white:      #ffffff;
  --grey:       #888888;
  --light-grey: #c8c8c8;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --nav-h:      70px;
  --radius:     6px;
  --transition: 0.3s ease;
}

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

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul { list-style: none; }

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ── UTILITIES ───────────────────────────────── */
.red { color: var(--red); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  border-left: 3px solid var(--red);
  padding-left: 0.6rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-label {
  border-left: none;
  padding-left: 0;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
}

.section-sub {
  color: var(--light-grey);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

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

.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

.btn-whatsapp:hover {
  background: #1aab52;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

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

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

@keyframes pulseBorder {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,43,43,0.6); }
  50%       { box-shadow: 0 0 0 10px rgba(212,43,43,0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }


/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom-color: rgba(212,43,43,0.3);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.nav-logo img {
  height: 52px;
  width: auto;
  mix-blend-mode: screen;
  transition: transform var(--transition);
}

.nav-logo:hover img {
  transform: scale(1.04);
}

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

.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--light-grey);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-link.active {
  color: var(--white);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ── MOBILE OVERLAY ──────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.open {
  transform: translateX(0);
}

.overlay-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  color: var(--white);
  font-size: 1.4rem;
  padding: 0.5rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.overlay-close:hover { opacity: 1; }

.overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.overlay-link {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition), background var(--transition);
}

.overlay-link:hover {
  color: var(--red);
  background: rgba(212,43,43,0.06);
}

.overlay-phone {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}


/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Subtle grid texture */
.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 43, 43, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 43, 43, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Diagonal speed slash */
.hero-slash {
  position: absolute;
  right: -5%;
  top: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 35%,
    rgba(212,43,43,0.07) 35%,
    rgba(212,43,43,0.04) 55%,
    transparent 55%
  );
  pointer-events: none;
}

.hero-slash::after {
  content: '';
  position: absolute;
  right: 8%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--red) 30%,
    var(--red) 70%,
    transparent
  );
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-logo {
  flex-shrink: 0;
}

.hero-logo img {
  width: 260px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(212,43,43,0.3));
  transition: filter var(--transition);
}

.hero-logo img:hover {
  filter: drop-shadow(0 0 60px rgba(212,43,43,0.5));
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212,43,43,0.12);
  border: 1px solid rgba(212,43,43,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--light-grey);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-badge i { color: var(--red); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.0;
  margin-bottom: 1.25rem;
}

.hero-sub {
  color: var(--light-grey);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-sub strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: var(--grey);
  font-size: 0.85rem;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--grey);
  font-size: 1.2rem;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
  transition: color var(--transition);
}

.hero-scroll-hint:hover { color: var(--red); }


/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about {
  background: var(--dark-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  border-left: 4px solid var(--red);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: normal;
}

.about-body {
  color: var(--light-grey);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.about-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  border-color: rgba(212,43,43,0.4);
  box-shadow: 0 4px 20px rgba(212,43,43,0.1);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--grey);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-promise {
  grid-column: span 2;
  background: rgba(212,43,43,0.07);
  border: 1px solid rgba(212,43,43,0.25);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-promise i {
  font-size: 1.5rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.about-promise strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.about-promise p {
  color: var(--light-grey);
  font-size: 0.875rem;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services {
  background: var(--dark-1);
}

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

.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid transparent;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all 0.35s ease;
  cursor: default;
}

.service-card:hover {
  border-top-color: var(--red);
  background: var(--dark-4);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,43,43,0.15);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(212,43,43,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
  color: var(--red);
  transition: background var(--transition), transform var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(212,43,43,0.2);
  transform: scale(1.05);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.65;
}

.services-footer {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--grey);
  font-size: 0.95rem;
}

.services-footer a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

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


/* ═══════════════════════════════════════════════
   WHY CHOOSE ME
═══════════════════════════════════════════════ */
.why {
  background: var(--dark-2);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition);
}

.why-item:last-child {
  border-bottom: none;
}

.why-icon {
  width: 42px;
  height: 42px;
  background: rgba(212,43,43,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  transition: background var(--transition);
}

.why-item:hover .why-icon {
  background: rgba(212,43,43,0.2);
}

.why-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.why-item p {
  color: var(--grey);
  font-size: 0.875rem;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials {
  background: var(--dark-1);
}

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

.testimonial-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.35s ease;
}

.testimonial-card:hover {
  border-color: rgba(212,43,43,0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}

.stars {
  display: flex;
  gap: 0.2rem;
  color: #f5a623;
  font-size: 0.9rem;
}

.testimonial-card blockquote {
  color: var(--light-grey);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  position: relative;
  padding-top: 0.5rem;
}

.testimonial-card blockquote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--red);
  opacity: 0.25;
  line-height: 0;
  position: absolute;
  top: 1rem;
  left: -0.5rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 0.9rem;
}

.reviewer span {
  font-size: 0.78rem;
  color: var(--grey);
}


/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact {
  background: var(--dark-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-phone-panel {
  background: var(--dark-3);
  border: 1px solid rgba(212,43,43,0.2);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}

.phone-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-phone-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color var(--transition), text-shadow var(--transition);
  margin-bottom: 0.5rem;
  animation: pulseBorder 3s ease-in-out infinite;
}

.contact-phone-number:hover {
  color: var(--white);
  text-shadow: 0 0 30px var(--red);
}

.phone-hint {
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 1rem;
}

.contact-details {
  margin-top: 1.75rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--light-grey);
}

.contact-detail-item i {
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* Form */
.contact-form-panel {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light-grey);
  margin-bottom: 0.45rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--dark-5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.975rem;
  padding: 0.8rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(212,43,43,0.15);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 0.75rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success i {
  font-size: 3rem;
  color: #25D366;
  margin-bottom: 1rem;
  display: block;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--grey);
}


/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  height: 70px;
  width: auto;
  mix-blend-mode: screen;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--grey);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li {
  color: var(--grey);
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-col ul li a {
  color: var(--grey);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-col ul li i {
  margin-top: 0.15rem;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-credit {
  padding: 0.75rem 0 1rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-credit p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

.footer-credit a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

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


/* ═══════════════════════════════════════════════
   FLOATING CALL BUTTON
═══════════════════════════════════════════════ */
.float-call {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  background: var(--red);
  color: var(--white);
  border-radius: 50px;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(212,43,43,0.5);
  transition: all 0.3s ease;
  animation: pulseBorder 2.5s ease-in-out infinite;
}

.float-call i {
  font-size: 0.95rem;
}

.float-call:hover {
  background: var(--red-dark);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 36px rgba(212,43,43,0.6);
}

/* Hide the text on mobile (just show icon in a circle) */
@media (max-width: 480px) {
  .float-call span {
    display: none;
  }

  .float-call {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .float-call i {
    font-size: 1.1rem;
  }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════ */
@media (max-width: 900px) {

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-logo {
    display: flex;
    justify-content: center;
  }

  .hero-logo img {
    width: 200px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

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

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

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

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

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

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

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


/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════ */
@media (max-width: 600px) {

  .section {
    padding: 4rem 0;
  }

  .hero-logo img {
    width: 180px;
  }

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

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

  .about-card-stack {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-badge {
    font-size: 0.7rem;
  }

  .contact-phone-panel,
  .contact-form-panel {
    padding: 1.75rem 1.25rem;
  }
}
