/* =========================================================
   NATIONAL GARAGE — كراج الوطني
   FULLY RESPONSIVE - FIXED OVERFLOW ISSUES
   ========================================================= */
:root{
  --red:        #A31621;
  --red-dark:   #7E1019;
  --blue:       #17395C;
  --blue-light: #2C5A8C;
  --charcoal:   #14171B;
  --charcoal-2: #1D2126;
  --steel:      #4A5057;
  --line:       #2A2F35;
  --white:      #FFFFFF;
  --off-white:  #F5F4F1;
  --stone:      #C9C7C1;

  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Roboto', sans-serif;
  --font-ar:      'Cairo', sans-serif;

  --stripe: linear-gradient(100deg, var(--red) 0%, var(--red) 46%, var(--blue) 54%, var(--blue) 100%);
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.15;
}

p {
  margin: 0 0 1em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

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

.arabic {
  font-family: var(--font-ar);
  direction: rtl;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 3px;
}

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

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--stripe);
  flex-shrink: 0;
}

.eyebrow.on-dark {
  color: var(--stone);
}

.section-title {
  font-size: clamp(1.5rem, 4.5vw, 2.9rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--charcoal);
}

.section-title.on-dark {
  color: var(--white);
}

.section-lede {
  max-width: 640px;
  color: var(--steel);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
}

.section-lede.on-dark {
  color: var(--stone);
}

/* -------- buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.65rem, 0.85vw, 0.86rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: clamp(10px, 1.2vw, 16px) clamp(14px, 2vw, 30px);
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
  min-height: 44px;
}

@media (max-width: 480px) {
  .btn {
    white-space: normal;
    font-size: 0.7rem;
    padding: 10px 14px;
    min-height: 40px;
  }
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(163, 22, 33, .6);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(23, 57, 92, .6);
}

.btn-secondary:hover {
  background: var(--blue-light);
}

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

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.btn-outline.dark {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.btn-outline.dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .btn-row {
    gap: 8px;
  }
  .btn-row .btn {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 80px;
  }
}

/* =========================================================
   TOP CONTACT BAR
   ========================================================= */
.topbar {
  background: var(--charcoal);
  color: var(--stone);
  font-size: clamp(0.6rem, 0.85vw, 0.82rem);
  border-bottom: 1px solid var(--line);
  width: 100%;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  padding-top: 4px;
  padding-bottom: 4px;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  gap: clamp(10px, 1.8vw, 22px);
  flex-wrap: wrap;
  align-items: center;
}

.topbar a {
  color: var(--stone);
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.topbar a:hover {
  color: var(--white);
}

.topbar-right {
  display: flex;
  gap: clamp(8px, 1.5vw, 18px);
  align-items: center;
}

.topbar-right .est {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .topbar .container {
    min-height: 32px;
  }
  .topbar-right .est {
    display: none;
  }
  .mobile-only-hide {
    display: none;
  }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(20, 23, 27, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  width: 100%;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(60px, 8vh, 84px);
  gap: 8px;
}

.logo {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 12px);
  color: var(--white);
  flex-shrink: 0;
}

.logo-mark {
  width: clamp(32px, 4.5vw, 44px);
  height: clamp(32px, 4.5vw, 44px);
  flex: none;
  position: relative;
  background: var(--charcoal-2);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--white);
  font-size: clamp(0.75rem, 1.1vw, 1.05rem);
}

.logo-mark::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -4px;
  height: 3px;
  background: var(--stripe);
}

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

.logo-text .en {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: clamp(0.7rem, 1.1vw, 1.05rem);
  text-transform: uppercase;
}

.logo-text .ar {
  font-family: var(--font-ar);
  font-size: clamp(0.5rem, 0.8vw, 0.82rem);
  color: var(--stone);
}

@media (max-width: 400px) {
  .logo-text .en {
    font-size: 0.65rem;
  }
  .logo-text .ar {
    font-size: 0.5rem;
  }
}

.main-nav ul {
  display: flex;
  gap: clamp(14px, 2.5vw, 36px);
}

.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.6rem, 0.8vw, 0.86rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  position: relative;
  padding: 6px 0;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--stripe);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(4px, 0.8vw, 14px);
  flex-shrink: 0;
}

.header-actions .btn {
  padding: clamp(6px, 0.8vw, 12px) clamp(10px, 1.5vw, 20px);
  font-size: clamp(0.5rem, 0.65vw, 0.78rem);
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================================================
   MOBILE NAV
   ========================================================= */
.mobile-nav {
  display: none;
  position: fixed;
  inset: clamp(60px, 8vh, 84px) 0 0 0;
  background: var(--charcoal);
  z-index: 999;
  padding: clamp(16px, 4vw, 40px) clamp(14px, 3vw, 28px);
  overflow-y: auto;
  opacity: 0;
  transition: opacity .3s ease;
}

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

body.nav-open {
  overflow: hidden;
}

.mobile-nav.open~.whatsapp-float {
  display: none;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav a {
  display: block;
  padding: clamp(12px, 2vw, 18px) 4px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  border-bottom: 1px solid var(--line);
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
}

.mobile-nav .btn-row {
  margin-top: clamp(16px, 4vw, 32px);
  flex-direction: column;
}

.mobile-nav .btn-row .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  color: var(--white);
  background: var(--charcoal);
  min-height: clamp(420px, 85vh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 12, 14, .96) 0%, rgba(10, 12, 14, .82) 38%, rgba(10, 12, 14, .35) 65%, rgba(20, 23, 27, .55) 100%);
}

.hero-stripe {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8%;
  width: 6px;
  background: var(--stripe);
  opacity: .9;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 8vh, 120px) 0 clamp(80px, 12vh, 90px);
}

.hero-content .arabic {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--stone);
  margin-bottom: 4px;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 7vw, 4.4rem);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.005em;
  max-width: 820px;
}

.hero-content h1 span {
  color: var(--red);
}

.hero-tag {
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  color: var(--stone);
  max-width: 520px;
  margin: clamp(12px, 2.5vw, 22px) 0 clamp(16px, 3vw, 32px);
  border-left: 3px solid var(--blue);
  padding-left: 14px;
}

.hero-meta {
  display: flex;
  gap: clamp(14px, 3vw, 28px);
  flex-wrap: wrap;
  margin-top: clamp(20px, 4vw, 40px);
}

.hero-meta .item {
  display: flex;
  flex-direction: column;
}

.hero-meta .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--white);
}

.hero-meta .num span {
  color: var(--red);
}

.hero-meta .label {
  font-size: clamp(0.5rem, 0.8vw, 0.75rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
  }
  .hero-content {
    padding: clamp(30px, 5vh, 52px) 0 clamp(100px, 12vh, 130px);
  }
  .hero-stripe {
    right: 4%;
    width: 4px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero-tag {
    padding-left: 10px;
    margin: 10px 0 14px;
  }
  .hero-meta {
    gap: 12px;
    margin-top: 16px;
  }
  .hero-meta .num {
    font-size: 1.1rem;
  }
}

/* =========================================================
   PICK & DROP BADGE
   ========================================================= */
.pickdrop-badge {
  position: absolute;
  bottom: clamp(12px, 3vw, 36px);
  right: clamp(12px, 3vw, 24px);
  z-index: 3;
  background: var(--white);
  color: var(--charcoal);
  padding: clamp(10px, 1.5vw, 14px) clamp(12px, 2vw, 20px);
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 12px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, .5);
  max-width: min(280px, 85vw);
}

.pickdrop-badge .ic {
  width: clamp(28px, 4vw, 38px);
  height: clamp(28px, 4vw, 38px);
  background: var(--red);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.pickdrop-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 0.9vw, 0.82rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pickdrop-badge span {
  font-size: clamp(0.55rem, 0.8vw, 0.78rem);
  color: var(--steel);
}

@media (max-width: 720px) {
  .pickdrop-badge {
    left: clamp(12px, 4vw, 24px);
    right: clamp(12px, 4vw, 24px);
    max-width: none;
    bottom: clamp(10px, 2vh, 20px);
  }
}

/* =========================================================
   TWO VEHICLES STRIP
   ========================================================= */
.vehicles-strip {
  background: var(--charcoal-2);
  padding: 0;
  width: 100%;
  overflow: hidden;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 720px) {
  .vehicles-grid {
    grid-template-columns: 1fr;
  }
}

.vehicle-cell {
  position: relative;
  height: clamp(180px, 35vh, 340px);
  overflow: hidden;
}

.vehicle-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.vehicle-cell:hover img {
  transform: scale(1.05);
}

.vehicle-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 12, 14, .85), rgba(10, 12, 14, .05));
}

.vehicle-cell .label {
  position: absolute;
  left: clamp(14px, 3vw, 24px);
  bottom: clamp(14px, 3vw, 20px);
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: clamp(0.65rem, 0.9vw, 0.85rem);
}

.vehicle-cell .label small {
  display: block;
  font-weight: 400;
  color: var(--stone);
  letter-spacing: 0.02em;
  font-size: clamp(0.55rem, 0.7vw, 0.75rem);
  margin-top: 4px;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: clamp(40px, 8vh, 96px) 0;
  width: 100%;
}

.section.tight {
  padding: clamp(28px, 6vh, 72px) 0;
}

.section.dark {
  background: var(--charcoal);
  color: var(--white);
}

.section.charcoal-2 {
  background: var(--charcoal-2);
  color: var(--white);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(28px, 5vh, 56px);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 480px) {
  .section-head {
    margin-bottom: 20px;
  }
}

/* -------- heritage / established since -------- */
.heritage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--charcoal);
  color: #fff;
  width: 100%;
}

@media (max-width: 900px) {
  .heritage {
    grid-template-columns: 1fr;
  }
}

.heritage-media {
  position: relative;
  min-height: clamp(260px, 50vh, 420px);
}

.heritage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.heritage-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 14, .1), rgba(10, 12, 14, .7));
}

.heritage-year {
  position: absolute;
  left: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: clamp(2.2rem, 8vw, 5rem);
  line-height: 1;
}

.heritage-year span {
  display: block;
  font-size: clamp(0.5rem, 0.9vw, 0.85rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
  margin-top: 6px;
}

.heritage-copy {
  padding: clamp(28px, 6vw, 80px) clamp(20px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 900px) {
  .heritage-copy {
    padding: clamp(24px, 5vw, 56px) clamp(16px, 4vw, 28px);
  }
}

/* -------- about split -------- */
.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-media .frame {
  position: absolute;
  top: -18px;
  right: -18px;
  bottom: -18px;
  left: 18px;
  border: 2px solid var(--red);
  z-index: -1;
}

@media (max-width: 900px) {
  .about-media .frame {
    display: none;
  }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(20px, 4vw, 36px);
  border-top: 1px solid var(--line);
}

.about-stats .stat {
  padding: clamp(12px, 2vw, 22px) clamp(8px, 2vw, 16px) 0;
  border-right: 1px solid var(--line);
}

.about-stats .stat:last-child {
  border-right: 0;
}

.about-stats .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  color: var(--red);
}

.about-stats .lbl {
  font-size: clamp(0.5rem, 0.7vw, 0.76rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--steel);
}

@media (max-width: 480px) {
  .about-stats .num {
    font-size: 1.2rem;
  }
  .about-stats .stat {
    padding: 8px 4px 0;
  }
  .about-stats .lbl {
    font-size: 0.5rem;
  }
}

/* -------- service cards -------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  width: 100%;
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card {
  background: var(--white);
  padding: clamp(20px, 3vw, 38px) clamp(14px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.5vw, 14px);
  transition: background .2s ease, transform .2s ease;
  position: relative;
}

.service-card:hover {
  background: var(--charcoal);
  color: #fff;
  transform: translateY(-4px);
}

.service-card .ic {
  width: clamp(36px, 5vw, 52px);
  height: clamp(36px, 5vw, 52px);
  color: var(--red);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: clamp(0.8rem, 1.1vw, 1.02rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.service-card p {
  font-size: clamp(0.7rem, 0.85vw, 0.86rem);
  color: var(--steel);
  margin: 0;
}

.service-card:hover p {
  color: var(--stone);
}

/* -------- service photo cards -------- */
.services-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 22px);
  width: 100%;
}

@media (max-width: 980px) {
  .services-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services-photo-grid {
    grid-template-columns: 1fr;
  }
}

.service-photo-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 12px 30px -18px rgba(0, 0, 0, .35);
}

.service-photo-card .media {
  height: clamp(120px, 20vh, 190px);
  overflow: hidden;
  position: relative;
}

.service-photo-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-photo-card:hover .media img {
  transform: scale(1.08);
}

.service-photo-card .body {
  padding: clamp(12px, 2vw, 20px) clamp(12px, 2vw, 22px) clamp(14px, 2.5vw, 26px);
}

.service-photo-card h4 {
  font-size: clamp(0.75rem, 1vw, 0.96rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.service-photo-card p {
  font-size: clamp(0.65rem, 0.8vw, 0.84rem);
  color: var(--steel);
  margin: 0;
}

.service-photo-card.icon-only .media {
  height: clamp(120px, 20vh, 190px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--charcoal-2), var(--blue));
}

.service-photo-card.icon-only .media svg {
  width: clamp(36px, 5vw, 52px);
  height: clamp(36px, 5vw, 52px);
  color: #fff;
  opacity: .9;
}

/* -------- why choose us -------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 36px);
  width: 100%;
}

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

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

.why-item {
  border-top: 3px solid var(--red);
  padding-top: clamp(14px, 2vw, 20px);
}

.why-item:nth-child(2) {
  border-top-color: var(--blue);
}
.why-item:nth-child(4) {
  border-top-color: var(--blue);
}

.why-item h3 {
  font-size: clamp(0.85rem, 1.1vw, 1.05rem);
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #fff;
}

.why-item p {
  font-size: clamp(0.75rem, 0.9vw, 0.9rem);
  color: var(--stone);
  margin: 0;
}

/* -------- workshop feature -------- */
.workshop-feature {
  position: relative;
  min-height: clamp(300px, 55vh, 520px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  width: 100%;
}

.workshop-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshop-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 12, 14, .92) 5%, rgba(10, 12, 14, .15) 60%);
}

.workshop-feature .inner {
  position: relative;
  z-index: 2;
  padding: clamp(30px, 6vw, 60px) 0;
}

.workshop-feature .stripe-line {
  width: clamp(40px, 6vw, 80px);
  height: 4px;
  background: var(--stripe);
  margin-bottom: 14px;
}

/* -------- brands strip -------- */
.brands-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(24px, 4vw, 44px) 0;
  width: 100%;
  overflow: hidden;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  width: 100%;
}

@media (max-width: 900px) {
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 560px) {
  .brands-grid {
    display: flex;
    overflow-x: auto;
    gap: 1px;
    border: none;
    background: transparent;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .brands-grid .brand-cell {
    min-width: 110px;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    flex-shrink: 0;
  }
}

.brand-cell {
  background: var(--white);
  aspect-ratio: 2/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--steel);
  letter-spacing: 0.02em;
  font-size: clamp(0.55rem, 0.8vw, 0.82rem);
  text-transform: uppercase;
  filter: grayscale(1);
  opacity: .72;
  transition: opacity .2s, filter .2s;
  text-align: center;
  padding: 4px;
}

.brand-cell:hover {
  opacity: 1;
  filter: grayscale(0);
  color: var(--red);
}

/* -------- pick & drop section -------- */
.pickdrop-section {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--blue);
  width: 100%;
}

.pickdrop-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}

.pickdrop-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(23, 57, 92, .96), rgba(163, 22, 33, .55));
}

.pickdrop-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  padding: clamp(30px, 6vh, 60px) 0;
}

@media (max-width: 900px) {
  .pickdrop-inner {
    grid-template-columns: 1fr;
    padding: clamp(24px, 5vh, 48px) 0;
  }
}

.pickdrop-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 18px);
  margin-top: clamp(12px, 2vw, 20px);
}

.pickdrop-steps .step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pickdrop-steps .n {
  width: clamp(28px, 4vw, 34px);
  height: clamp(28px, 4vw, 34px);
  flex: none;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.65rem, 0.9vw, 0.85rem);
}

/* -------- stats bar -------- */
.stats-bar {
  background: var(--charcoal-2);
  color: #fff;
  padding: clamp(32px, 6vh, 64px) 0;
  width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 3vw, 24px);
  text-align: center;
  width: 100%;
}

@media (max-width: 700px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 4vw, 36px);
  }
}

@media (max-width: 400px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.stats-grid .stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 3.2rem);
  color: var(--white);
}

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

.stats-grid .stat .lbl {
  font-size: clamp(0.5rem, 0.7vw, 0.78rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-top: 4px;
}

/* -------- CTA band -------- */
.cta-band {
  background: var(--red);
  color: #fff;
  padding: clamp(36px, 8vh, 70px) 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--stripe);
  opacity: .18;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(16px, 4vw, 30px);
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-size: clamp(1.1rem, 3.4vw, 2.4rem);
  text-transform: uppercase;
  max-width: 560px;
}

.cta-band .btn-primary {
  background: var(--charcoal);
}

.cta-band .btn-primary:hover {
  background: #000;
}

.cta-band .btn-outline {
  border-color: rgba(255, 255, 255, .7);
}

@media (max-width: 600px) {
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-inner .btn-row {
    justify-content: center;
  }
}

/* -------- contact preview -------- */
.contact-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--charcoal-2);
  color: #fff;
  width: 100%;
}

@media (max-width: 900px) {
  .contact-preview {
    grid-template-columns: 1fr;
  }
}

.contact-preview .info {
  padding: clamp(24px, 6vw, 70px) clamp(16px, 4vw, 56px);
}

.contact-preview .map-block {
  position: relative;
  min-height: clamp(200px, 40vh, 340px);
}

.contact-preview .map-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.contact-preview .map-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 23, 27, .55), rgba(20, 23, 27, .1));
}

.contact-rows {
  margin-top: clamp(14px, 3vw, 26px);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2vw, 18px);
}

.contact-row {
  display: flex;
  gap: clamp(10px, 2vw, 16px);
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(10px, 2vw, 18px);
}

.contact-row .ic {
  width: clamp(16px, 2vw, 22px);
  height: clamp(16px, 2vw, 22px);
  color: var(--red);
  flex: none;
  margin-top: 3px;
}

.contact-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 0.8vw, 0.78rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2px;
}

/* -------- page hero (about/services/contact) -------- */
.page-hero {
  position: relative;
  color: #fff;
  padding: clamp(80px, 18vh, 150px) 0 clamp(36px, 6vh, 70px);
  background: var(--charcoal);
  overflow: hidden;
  width: 100%;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 12, 14, .95), rgba(10, 12, 14, .55));
}

.page-hero .inner {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  font-size: clamp(0.6rem, 0.8vw, 0.8rem);
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.breadcrumb a {
  color: var(--stone);
}

.breadcrumb a:hover {
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(1.4rem, 5vw, 3.2rem);
  text-transform: uppercase;
  font-weight: 800;
}

/* -------- about page specific -------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
  width: 100%;
}

@media (max-width: 900px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  background: #fff;
  padding: clamp(20px, 3vw, 34px) clamp(14px, 2.5vw, 28px);
  border-top: 3px solid var(--red);
  box-shadow: 0 12px 30px -20px rgba(0, 0, 0, .3);
}

.value-card:nth-child(2) {
  border-top-color: var(--blue);
}

.value-card h3 {
  font-size: clamp(0.85rem, 1.1vw, 1.05rem);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.value-card p {
  font-size: clamp(0.75rem, 0.9vw, 0.9rem);
  color: var(--steel);
  margin: 0;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--line);
  margin-left: 10px;
}

.timeline .tl-item {
  position: relative;
  padding: 0 0 clamp(24px, 4vw, 40px) clamp(20px, 3vw, 34px);
}

.timeline .tl-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 2px;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
}

.timeline .tl-item .yr {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--red);
  font-size: clamp(0.85rem, 1.1vw, 1.1rem);
}

.timeline .tl-item p {
  color: var(--steel);
  margin-top: 4px;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
  width: 100%;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  position: relative;
  overflow: hidden;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 12, 14, .85), transparent 55%);
}

.team-card .cap {
  position: absolute;
  left: clamp(12px, 2vw, 20px);
  bottom: clamp(12px, 2vw, 16px);
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(0.7rem, 0.9vw, 0.9rem);
}

.team-card .cap small {
  display: block;
  color: var(--stone);
  font-weight: 400;
  font-size: clamp(0.55rem, 0.7vw, 0.75rem);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
}

/* -------- contact page -------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  width: 100%;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: #fff;
  box-shadow: 0 20px 50px -28px rgba(0, 0, 0, .35);
  padding: clamp(18px, 3vw, 34px);
}

.contact-card .contact-rows {
  color: var(--charcoal);
}

.contact-card .contact-row {
  border-bottom: 1px solid #E7E5E0;
}

.contact-card .contact-row strong {
  color: var(--steel);
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: clamp(240px, 50vh, 420px);
  border: 0;
  filter: grayscale(.15) contrast(1.05);
}

@media (max-width: 900px) {
  .map-embed {
    min-height: 240px;
  }
}

.form-block {
  background: var(--charcoal-2);
  padding: clamp(18px, 4vw, 40px);
  color: #fff;
  margin-top: clamp(18px, 3vw, 32px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.5vw, 16px);
  margin-bottom: 14px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-block input,
.form-block select,
.form-block textarea {
  width: 100%;
  background: var(--charcoal);
  border: 1px solid var(--line);
  color: #fff;
  padding: clamp(8px, 1.2vw, 14px) clamp(10px, 1.5vw, 16px);
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 0.9vw, 0.92rem);
}

.form-block label {
  font-size: clamp(0.55rem, 0.7vw, 0.75rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stone);
  display: block;
  margin-bottom: 4px;
}

.form-block textarea {
  resize: vertical;
  min-height: clamp(60px, 12vh, 120px);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #0E1013;
  color: var(--stone);
  padding: clamp(36px, 6vh, 70px) 0 0;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(20px, 3vw, 40px);
  padding-bottom: clamp(24px, 5vh, 50px);
  border-bottom: 1px solid var(--line);
  width: 100%;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.footer-grid h4 {
  color: #fff;
  font-size: clamp(0.7rem, 0.85vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: clamp(12px, 2vw, 18px);
}

.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 1vw, 10px);
}

.footer-grid a {
  font-size: clamp(0.7rem, 0.85vw, 0.88rem);
  color: var(--stone);
}

.footer-grid a:hover {
  color: #fff;
}

.footer-about p {
  font-size: clamp(0.7rem, 0.85vw, 0.88rem);
  color: var(--stone);
  max-width: 280px;
}

@media (max-width: 560px) {
  .footer-about p {
    max-width: none;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(14px, 3vw, 26px) 0;
  font-size: clamp(0.55rem, 0.75vw, 0.8rem);
  color: var(--steel);
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.whatsapp-float {
  position: fixed;
  right: clamp(10px, 2vw, 22px);
  bottom: clamp(10px, 2vh, 22px);
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: clamp(8px, 1.2vw, 14px) clamp(12px, 2vw, 18px);
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .5);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.6rem, 0.8vw, 0.82rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 40px;
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-float .pulse {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: #25D366;
  animation: wa-pulse 2.6s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0% {
    opacity: .55;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.whatsapp-float svg {
  width: clamp(16px, 2vw, 22px);
  height: clamp(16px, 2vw, 22px);
  flex: none;
}

.whatsapp-float .wa-text {
  display: inline;
}

@media (max-width: 640px) {
  .whatsapp-float {
    padding: clamp(8px, 1.5vw, 12px);
    border-radius: 50%;
    min-width: 48px;
    min-height: 48px;
    justify-content: center;
  }
  .whatsapp-float .wa-text {
    display: none;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */

/* Tablet and below - show hamburger */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .header-actions .btn-outline {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small tablet */
@media (max-width: 760px) {
  .topbar .container {
    min-height: 30px;
  }
  .mobile-only-hide {
    display: none;
  }
  .section {
    padding: clamp(32px, 5vh, 48px) 0;
  }
  .section.tight {
    padding: clamp(20px, 4vh, 36px) 0;
  }
  .section-head {
    margin-bottom: clamp(18px, 3vh, 28px);
  }
  .stats-bar {
    padding: clamp(24px, 5vh, 40px) 0;
  }
  .workshop-feature {
    min-height: clamp(240px, 40vh, 320px);
  }
  .page-hero {
    padding: clamp(60px, 10vh, 90px) 0 clamp(28px, 4vh, 44px);
  }
}

/* Mobile */
@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-photo-grid {
    grid-template-columns: 1fr;
  }
  .contact-preview {
    grid-template-columns: 1fr;
  }
}

/* Small phone */
@media (max-width: 420px) {
  .topbar {
    font-size: 0.6rem;
  }
  .topbar-right .est {
    display: none;
  }
  .topbar-left {
    gap: 8px;
  }
  .container {
    padding: 0 12px;
  }
  .logo {
    gap: 4px;
  }
  .logo-mark {
    width: 28px;
    height: 28px;
    font-size: 0.65rem;
  }
  .logo-text .en {
    font-size: 0.6rem;
  }
  .logo-text .ar {
    font-size: 0.45rem;
  }
  .header-actions {
    gap: 3px;
  }
  .header-actions .btn {
    padding: 4px 8px;
    font-size: 0.5rem;
    min-height: 28px;
  }
  .header-actions .btn-outline {
    display: none;
  }
  .mobile-nav {
    inset: clamp(50px, 10vh, 62px) 0 0 0;
  }
  .mobile-nav a {
    font-size: 0.85rem;
    padding: 10px 4px;
  }
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .hero-tag {
    font-size: 0.7rem;
  }
  .hero-meta .num {
    font-size: 0.95rem;
  }
  .hero-meta .label {
    font-size: 0.45rem;
  }
  .section-title {
    font-size: 1.2rem;
  }
  .contact-card {
    padding: 14px 12px;
  }
  .form-block {
    padding: 14px 12px;
  }
  .map-embed {
    min-height: 160px;
  }
  .btn-row .btn {
    font-size: 0.6rem;
    padding: 8px 10px;
    min-height: 32px;
  }
  .about-stats .num {
    font-size: 1rem;
  }
  .about-stats .lbl {
    font-size: 0.45rem;
  }
  .stats-grid .stat .num {
    font-size: 1.2rem;
  }
}

/* Fix for any hidden overflow */
section,
div,
header,
footer,
main {
  max-width: 100%;
  overflow-wrap: break-word;
}

/* Ensure images don't overflow */
img,
svg,
video {
  max-width: 100%;
  height: auto;
}

/* Fix for service card icons on mobile */
.service-card .ic {
  min-width: 32px;
}

/* Ensure buttons are tappable on mobile */
button,
a.btn {
  touch-action: manipulation;
}
/* =========================================================
   MOBILE NAV - FIXED FOR ALL PAGES
   ========================================================= */

/* Hamburger - always visible on mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px 6px;
  flex-shrink: 0;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white, #ffffff);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}

/* Hamburger animation to X */
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* For mobile browsers */
  background: var(--charcoal, #14171B);
  z-index: 1000;
  padding: 80px 24px 30px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.open {
  display: block !important;
  opacity: 1 !important;
}

/* Body scroll lock */
body.nav-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Mobile nav links */
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-nav ul li {
  list-style: none;
}

.mobile-nav ul li a {
  display: block;
  padding: 16px 6px;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white, #ffffff);
  border-bottom: 1px solid var(--line, #2A2F35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a:active {
  color: var(--red, #A31621);
}

.mobile-nav ul li a.active {
  color: var(--red, #A31621);
}

.mobile-nav .btn-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line, #2A2F35);
}

.mobile-nav .btn-row .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  text-align: center;
}

/* Hide WhatsApp float when mobile menu is open */
body.nav-open .whatsapp-float {
  display: none !important;
}

/* =========================================================
   RESPONSIVE: Show hamburger on mobile
   ========================================================= */
@media (max-width: 900px) {
  .main-nav {
    display: none !important;
  }
  
  .header-actions .btn-outline {
    display: none !important;
  }
  
  .hamburger {
    display: flex !important;
  }
  
  .site-header .container {
    height: 64px;
  }
}

@media (max-width: 480px) {
  .mobile-nav {
    padding: 70px 16px 20px;
  }
  
  .mobile-nav ul li a {
    font-size: 0.95rem;
    padding: 14px 4px;
  }
  
  .site-header .container {
    height: 56px;
  }
  
  .hamburger span {
    width: 22px;
    height: 2px;
  }
  
  .hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  
  .hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 380px) {
  .mobile-nav {
    padding: 60px 12px 16px;
  }
  
  .mobile-nav ul li a {
    font-size: 0.85rem;
    padding: 12px 4px;
  }
  
  .site-header .container {
    height: 48px;
  }
  
  .hamburger span {
    width: 20px;
    height: 1.8px;
  }
}