/* ============================================================
   ESTEEM AUTOMOBILES - style.css
   Premium Black & Red  |  Immersive Full-Screen Hero
============================================================ */

:root {
  --black: #000000;
  --black-deep: #080808;
  --black-soft: #111111;
  --black-card: #161616;
  --black-border: #1E1E1E;
  --red: #9c040c;
  --red-dark: #B5070F;
  --white: #FFFFFF;
  --gray-light: #B0B0B0;
  --gray-mid: #666666;
  --green: #25D366;
  --green-dark: #1DA851;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-red: 0 0 40px rgba(229, 9, 20, 0.28);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.6);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background: var(--black-deep);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none
}

/* --- Utilities --- */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
}

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

.section-sub {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 560px;
  margin-top: 14px;
  line-height: 1.8;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0)
}

/* ============================================================
   HEADER
============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(6, 6, 6, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.logo-img {
  max-height: 75px;
  width: auto;
  display: block;
}

.logo-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.logo-name span {
  color: var(--red)
}

.logo-tag {
  font-size: .57rem;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  margin-top: 2px;
}

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

.nav-links a {
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  position: relative;
  transition: color .25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--red);
  transition: right .3s ease;
}

.nav-links a:hover {
  color: var(--white)
}

.nav-links a:hover::after {
  right: 0
}

.btn-call-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid var(--red);
  cursor: pointer;
  transition: var(--transition);
}

.btn-call-nav:hover {
  background: transparent;
  color: var(--white);
  box-shadow: var(--shadow-red)
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hamburger.open span:nth-child(2) {
  opacity: 0
}

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

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 85vw;
  max-width: 360px;
  background: var(--black-deep);
  z-index: 1002;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.8);
}

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--black-border);
}

.mobile-logo-img {
  height: 48px;
  width: auto;
}

.mobile-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 16px 28px;
  flex-grow: 1;
  overflow-y: auto;
}

.mobile-menu-links a.mobile-link {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-light);
  padding: 18px 0;
  border-bottom: 1px solid var(--black-border);
  transition: color .25s;
  text-decoration: none;
}

.mobile-menu-links a.mobile-link:hover {
  color: var(--red);
}

.mobile-menu-links .btn-call-nav {
  width: 100%;
  justify-content: center;
  margin-top: 28px;
}

.mobile-social {
  padding: 24px 28px;
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--black-border);
}

.mobile-social a {
  color: var(--gray-light);
  font-size: 1.4rem;
  transition: color 0.3s;
}

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

/* ============================================================
   HERO — IMMERSIVE FULL-SCREEN with GRADIENT MASK
============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ── Full-screen background truck photograph ── */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('image/4.jpeg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* ── Gradient mask: pure black left → fully transparent right ── */
.hero-mask {
  position: absolute;
  inset: 0;
  /*
    Breakpoints:
    0%   → solid near-black (content zone)
    52%  → solid to semi-transparent (blend point)
    72%  → starts to open up — truck becomes visible
    100% → only a very subtle darkening remains
  */
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.97) 0%,
      rgba(0, 0, 0, 0.96) 30%,
      rgba(0, 0, 0, 0.82) 48%,
      rgba(0, 0, 0, 0.35) 64%,
      rgba(0, 0, 0, 0.08) 82%,
      rgba(0, 0, 0, 0.0) 100%);
  z-index: 1;
}

/* Bottom gradient so next section merges cleanly */
.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent 0%, var(--black-deep) 100%);
  z-index: 2;
  pointer-events: none;
}

/* ── Content block — sits on the LEFT in the dark zone ── */
.hero-content {
  position: relative;
  z-index: 3;
  width: 55%;
  padding-left: max(4vw, calc((100vw - 1200px) / 2));
  padding-right: 4vw;
  padding-top: 140px;
  padding-bottom: 120px;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Eyebrow label */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(229, 9, 20, .7)
  }

  50% {
    box-shadow: 0 0 0 7px rgba(229, 9, 20, 0)
  }
}

/* Main headline */
.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 26px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .9);
}

.hero-title-red {
  color: var(--red);
  display: block;
  margin-top: 8px;
  text-shadow: 0 0 80px rgba(229, 9, 20, .5);
}

/* Description */
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.85;
  max-width: 550px;
  margin-bottom: 36px;
}

.hero-desc strong {
  color: var(--white);
  font-weight: 600;
}

/* CTA buttons */
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid var(--red);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-red::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-dark);
  transform: translateX(-100%);
  transition: transform .35s ease;
}

.btn-red:hover::before {
  transform: translateX(0)
}

.btn-red span,
.btn-red i {
  position: relative;
  z-index: 1
}

.btn-red:hover {
  box-shadow: 0 8px 32px rgba(229, 9, 20, .55);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: transparent;
  color: var(--green);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid var(--green);
  cursor: pointer;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .4);
  transform: translateY(-2px);
}

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 28px;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-num span {
  color: var(--red)
}

.stat-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}

.stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .12)
}

/* ============================================================
   PRICING
============================================================ */
.pricing {
  padding: 100px 0;
  background: var(--black-soft);
  position: relative;
  overflow: hidden
}

.pricing::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent)
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px
}

.pricing-header .section-label {
  justify-content: center
}

.pricing-header .section-sub {
  margin-inline: auto;
  text-align: center
}

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

.price-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background .35s
}

.price-card:hover {
  border-color: rgba(229, 9, 20, .4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-red)
}

.price-card:hover::before {
  background: var(--red)
}

.price-card.featured {
  border-color: var(--red);
  background: linear-gradient(135deg, #1a0a0b 0%, var(--black-card) 100%)
}

.price-card.featured::before {
  background: var(--red)
}

.featured-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase
}

.price-icon {
  width: 52px;
  height: 52px;
  background: rgba(229, 9, 20, .12);
  border: 1px solid rgba(229, 9, 20, .2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--red)
}

.price-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white)
}

.price-amount {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1
}

.price-amount sup {
  font-size: 1.1rem;
  vertical-align: super;
  color: var(--red)
}

.price-period {
  font-size: .75rem;
  color: var(--gray-mid);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-desc {
  font-size: .88rem;
  color: var(--gray-light);
  line-height: 1.7
}

.price-desc strong {
  color: var(--white);
  font-weight: 600;
}

.addon-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.addon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--gray-light);
}

.addon-list li i {
  color: var(--red);
  font-size: .8rem;
}

.addon-list li strong {
  color: var(--white);
  font-weight: 700;
  margin-left: auto;
}

.requirements-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px
}

.req-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition)
}

.req-card:hover {
  border-color: rgba(229, 9, 20, .3)
}

.req-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(229, 9, 20, .1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem
}

.req-card h4 {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 4px
}

.req-card p {
  font-size: .8rem;
  color: var(--gray-light);
  line-height: 1.6
}

.disclaimer {
  background: rgba(255, 200, 0, .05);
  border: 1px solid rgba(255, 200, 0, .15);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: .75rem;
  color: var(--gray-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px
}

.disclaimer i {
  color: #FFC107;
  font-size: .85rem;
  margin-top: 2px;
  min-width: 14px
}

/* ============================================================
   GALLERY
============================================================ */
.gallery {
  padding: 100px 0;
  background: var(--black-deep)
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px
}

.gallery-header .section-label {
  justify-content: center
}

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

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

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
  display: block;
  filter: brightness(.88);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.02)
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .82) 100%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1
}

.gallery-overlay span {
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
}

.gallery-item:nth-child(4) {
  grid-column: span 2
}

.gallery-item:nth-child(4) img {
  height: 280px
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
  padding: 100px 0;
  background: var(--black-soft);
  position: relative
}

.contact::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

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

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: rgba(229, 9, 20, .35);
  transform: translateX(5px)
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(229, 9, 20, .12);
  border: 1px solid rgba(229, 9, 20, .2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--red);
}

.contact-item h4 {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
  font-size: .93rem;
  color: var(--white);
  line-height: 1.6
}

.contact-item a:hover {
  color: var(--red)
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 20px
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  padding: 4px 0;
}

.hours-row .day {
  color: var(--gray-light)
}

.hours-row .time {
  color: var(--white);
  font-weight: 600
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--black-border);
  box-shadow: var(--shadow-card);
  height: 100%;
  min-height: 480px;
  position: sticky;
  top: 90px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
  display: block
}

.cta-banner {
  margin-top: 60px;
  background: linear-gradient(135deg, #180404 0%, #0e0e0e 50%, #180404 100%);
  border: 1px solid rgba(229, 9, 20, .28);
  border-radius: var(--radius-lg);
  padding: 46px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
}

.cta-banner h2 span {
  color: var(--red)
}

.cta-banner p {
  font-size: .88rem;
  color: var(--gray-light);
  margin-top: 8px
}

.cta-banner-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  padding: 60px 0 28px
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--black-border);
  margin-bottom: 28px;
}

.footer-brand p {
  font-size: .84rem;
  color: var(--gray-mid);
  margin-top: 14px;
  line-height: 1.8;
  max-width: 255px
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px
}

.footer-social a {
  width: 37px;
  height: 37px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-mid);
  font-size: .84rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white)
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-links a {
  font-size: .84rem;
  color: var(--gray-mid);
  transition: color .25s;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-links a i {
  font-size: .63rem;
  color: var(--red)
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .8rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

.footer-contact-list li i {
  color: var(--red);
  font-size: .78rem;
  margin-top: 3px
}

.footer-contact-list li a {
  color: var(--gray-mid);
  transition: color .25s
}

.footer-contact-list li a:hover {
  color: var(--white)
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.footer-bottom p {
  font-size: .76rem;
  color: var(--gray-mid)
}

.footer-domain {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase
}

.footer-domain a,
.footer-bottom a {
  color: var(--red)
}

/* WhatsApp Float */
.float-whatsapp {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.float-whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
  background-color: #20b858;
  color: #fff;
}

/* Scroll to top */
#scrollTop {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 44px;
  height: 44px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(229, 9, 20, .5);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
}

#scrollTop.show {
  opacity: 1;
  transform: translateY(0)
}

#scrollTop:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(229, 9, 20, .65)
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media(max-width:1024px) {
  .hero-content {
    width: 60%;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
}

@media(max-width:768px) {

  /* Header */
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .btn-call-nav.desktop-only {
    display: none
  }

  /* Hero stacks: content takes full width, image shows through top */
  .hero {
    min-height: 100vh;
    align-items: flex-end;
  }

  .hero-bg {
    background-position: 80% center;
  }

  /* On mobile the mask becomes top-dark, bottom clear */
  .hero-mask {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.8) 30%,
        rgba(0, 0, 0, 0.98) 55%,
        rgba(0, 0, 0, 0.98) 100%);
  }

  .hero-content {
    width: 100%;
    margin-left: 0;
    padding: 150px 6vw 140px;
  }

  .float-whatsapp {
    width: 48px;
    height: 48px;
    bottom: 20px;
    left: 20px;
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem)
  }

  .hero-desc {
    font-size: .95rem
  }

  .hero-cta {
    flex-direction: column
  }

  .btn-red,
  .btn-whatsapp {
    width: 100%;
    justify-content: center
  }

  .hero-stats {
    gap: 18px;
    flex-wrap: wrap
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .req-card {
    padding: 20px;
  }

  .price-card {
    padding: 30px 24px;
  }

  .disclaimer {
    flex-direction: column;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr
  }

  .gallery-item:nth-child(4) {
    grid-column: span 2
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr
  }

  .map-wrapper {
    position: static;
    min-height: 300px
  }

  .map-wrapper iframe {
    min-height: 300px
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 34px 24px
  }

  .cta-banner-btns {
    flex-direction: column;
    width: 100%
  }

  .cta-banner-btns a {
    width: 100%;
    justify-content: center
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 26px
  }

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

  .hours-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {
  .gallery-grid {
    grid-template-columns: 1fr
  }

  .gallery-item:nth-child(4) {
    grid-column: span 1
  }

  .hero-stats {
    gap: 14px
  }
}