/* ════════════════════════════════════════════
   BAIT AL MAZAYA  — Main Stylesheet
   Palette: Forest Green #1a5c2a | Gold #c9a227
            White #ffffff | Light #f5f3ee
            Dark  #111a12
   ════════════════════════════════════════════ */

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

:root {
  --green:        #1a5c2a;
  --green-dark:   #113d1b;
  --green-light:  #2a7a3c;
  --gold:         #c9a227;
  --gold-light:   #e0ba4b;
  --white:        #ffffff;
  --light:        #f5f3ee;
  --grey:         #6b7280;
  --dark:         #0f3014;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 40px rgba(0,0,0,0.13);
  --transition:   0.35s cubic-bezier(.4,0,.2,1);
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
}

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



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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-pad { padding: 90px 0; }
.bg-light     { background: var(--light); }
.bg-green     { background: var(--green); }

/* ── Scroll Reveal ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside grids */
.promises-grid .promise-card:nth-child(2) { transition-delay: 0.07s; }
.promises-grid .promise-card:nth-child(3) { transition-delay: 0.14s; }
.promises-grid .promise-card:nth-child(4) { transition-delay: 0.21s; }
.promises-grid .promise-card:nth-child(5) { transition-delay: 0.28s; }
.promises-grid .promise-card:nth-child(6) { transition-delay: 0.35s; }
.products-grid .product-card:nth-child(2) { transition-delay: 0.07s; }
.products-grid .product-card:nth-child(3) { transition-delay: 0.14s; }
.products-grid .product-card:nth-child(4) { transition-delay: 0.21s; }
.products-grid .product-card:nth-child(5) { transition-delay: 0.28s; }
.products-grid .product-card:nth-child(6) { transition-delay: 0.35s; }
.why-grid .why-card:nth-child(2)          { transition-delay: 0.07s; }
.why-grid .why-card:nth-child(3)          { transition-delay: 0.14s; }
.why-grid .why-card:nth-child(4)          { transition-delay: 0.21s; }
.why-grid .why-card:nth-child(5)          { transition-delay: 0.28s; }
.why-grid .why-card:nth-child(6)          { transition-delay: 0.35s; }

/* ── Buttons ───────────────────────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: var(--transition);
}
.btn-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ── Section Headers ───────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-header p {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.75); }

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,0.1);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid rgba(201,162,39,0.25);
}
.section-tag.light {
  color: var(--gold-light);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

/* ── Logo ──────────────────────────────────── */
.logo-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  flex-shrink: 0;

}

.logo-dark{
  background-color: white;
  border-radius: 20%;
  
}


.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--green);
  letter-spacing: 0.04em;
}
.logo-text small {
  font-size: 0.69rem;
  color: var(--grey);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Top Bar ───────────────────────────────── */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 7px 0;
  z-index: 1001;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 7px;
}
.topbar-left i { color: var(--gold); font-size: 0.75rem; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-right a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.72rem;
  transition: var(--transition);
}
.topbar-right a:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ── Navbar ────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  
}



.nav-menu a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--green);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}
.nav-cta { font-size: 0.82rem; padding: 10px 22px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--dark);
  cursor: pointer;
  padding: 4px;
}

/* ── Hero ──────────────────────────────────── */
.hero { position: relative; }
.hero-swiper { width: 100%; }

.hero-slide {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-1 {
  background-image: url('/Assets/Home\ 1.jpg');
}
.slide-2 {
  background-image: url('/Assets/Home\ 2.jpg');
}
.slide-3 {
    background-image: url('/Assets/Home\ 3.jpg');
}



.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(17,58,27,0.82) 0%,
    rgba(17,58,27,0.5) 60%,
    rgba(17,58,27,0.15) 100%);
}

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

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.4);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-content p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

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

/* Hero slide reveal stagger */
.swiper-slide-active .reveal {
  opacity: 1;
  transform: translateY(0);
}
.swiper-slide-active .hero-eyebrow { transition-delay: 0.1s; }
.swiper-slide-active h1            { transition-delay: 0.25s; }
.swiper-slide-active p             { transition-delay: 0.4s; }
.swiper-slide-active .hero-btns    { transition-delay: 0.55s; }

/* Swiper overrides */
.swiper-button-next,
.swiper-button-prev {
  color: var(--white);
  background: rgba(26,92,42,0.6);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: background var(--transition);
  
}
.swiper-button-next:hover,
.swiper-button-prev:hover { background: var(--gold); }
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 1rem; font-weight: 900; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }
.swiper-pagination-bullet { background: rgba(255,255,255,0.6); }

/* ── Promises ──────────────────────────────── */
.promises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.promise-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.promise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.promise-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.promise-icon i { color: var(--gold); font-size: 1.4rem; }
.promise-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.promise-card p { color: var(--grey); line-height: 1.7; font-size: 0.93rem; }

/* ── Products ──────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-img {
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.product-img i {
  color: var(--gold);
  font-size: 3rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}
.product-info { padding: 22px 24px; }
.product-info h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.product-info p { color: var(--grey); font-size: 0.88rem; line-height: 1.6; }
.products-cta {
  text-align: center;
  margin-top: 44px;
}
/* ── Who We Are ────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.who-visual {
  position: relative;
  width: 100%;
}

/* Main Landscape Image */
.who-img-main {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--green-light), var(--green-dark));
  background-image: url('/Assets/big\ truck\ solo.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}


/* Small Accent Image */
.who-img-accent {
  position: absolute;
  bottom: -30px;
  right: -25px;

  width: 220px;
  height: 150px;

  border-radius: var(--radius-lg);

  background-image: url('/Assets/Small\ truck\ solo.png');
  background-size: cover;
  background-position: center;

  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}


.who-badge {
  position: absolute;
  top: -18px;
  left: -18px;
  z-index: 3;

  background: var(--gold);
  color: var(--dark);

  border-radius: var(--radius);

padding: 18px; 
  text-align: center;
  box-shadow: 0 6px 24px rgba(201,162,39,0.4);
}


.badge-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.6rem;
}


.badge-label {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
}


.who-content { }

.who-content .section-tag {
  margin-bottom: 14px;
}


.who-content h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}


.who-content p {
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.95rem;
}


.who-checklist {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.who-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;

  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;

  color: var(--dark);
}


.who-checklist li i {
  color: var(--green);
  font-size: 1rem;
}


/* ── Why Us ────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: background var(--transition), transform var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.why-card > i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.why-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p { color: rgba(255,255,255,0.7); line-height: 1.65; font-size: 0.88rem; }

/* ── Testimonials ──────────────────────────── */
.testi-swiper { padding-bottom: 50px !important;  }
.testi-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testi-google { color: #4285F4; font-size: 1.5rem; }
.stars { color: #f59e0b; font-size: 0.85rem; display: flex; gap: 2px; }
.testi-card p {
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testi-card p::before { content: '\201C'; color: var(--gold); font-size: 1.5rem; line-height: 0.5; vertical-align: -6px; margin-right: 2px; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
}
.testi-author small {
  color: var(--grey);
  font-size: 0.75rem;
}
.testi-pagination .swiper-pagination-bullet-active { background: var(--green) !important; }











/* ── CTA Section ───────────────────────────── */
.cta-section { background: var(--green-dark); }
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(120deg, var(--green), var(--green-light));
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -40%; right: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-content { position: relative; z-index: 1; max-width: 640px; }
.cta-content .section-tag { margin-bottom: 14px; }
.cta-content h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
}
.cta-content p {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-size: 0.97rem;
  margin-bottom: 28px;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-deco {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.cta-deco > i {
  font-size: 7rem;
  color: rgba(255,255,255,0.1);
  display: block;
}

/* ── FAQ ───────────────────────────────────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item.open  { border-color: var(--green); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.faq-item.open .faq-q { color: var(--green); }
.faq-q i {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.35s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 24px 20px;
  color: var(--grey);
  line-height: 1.7;
  font-size: 0.92rem;
}

/* ── Footer ────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 64px 0 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo .logo-text strong { color: var(--white); }
.footer-logo .logo-text small  { color: rgba(255,255,255,0.5); }
.brand-col p { font-size: 0.87rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.8rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--dark); }
.footer-col h5 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.87rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.contact-list li i { color: var(--gold); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.contact-list li a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.contact-list li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .promises-grid  { grid-template-columns: repeat(2, 1fr); }
  .products-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-top     { grid-template-columns: 1fr 1fr; }
  .who-grid       { gap: 40px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }

  /* Topbar */
  .topbar-inner { flex-direction: column; gap: 6px; text-align: center; font-size: 0.74rem; }
  .topbar-right{
    display: none;
  }

  /* Navbar */
  .nav-toggle { display: block; }
  .nav-cta.nav-cta { display: none; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    gap: 4px;
    border-top: 1px solid rgba(0,0,0,0.07);
  } 
  .nav-menu.open { display: flex; font-size: 40px;}
  .nav-menu a { padding: 11px 14px; border-radius: 8px; font-size: 20px; }
  .nav-menu a::after { display: none; }

  /* Hero */
  .hero-slide { min-height: 70vh; }
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(17,58,27,0.75) 0%,
      rgba(17,58,27,0.65) 100%);
  }
  .hero-content { max-width: 100%; }

  /* Grids */
  .promises-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .who-grid      { grid-template-columns: 1fr; gap: 32px; }

  .who-visual { order: -1; }
  .who-img-accent { 
  bottom: -40px;
  right: -15px;
  width: 180px;
  height: 110px;
   }

   .badge-num{
    font-size: 20px;
   }

   .badge-label {
  font-family: var(--font-head);
  font-size:10px;
  font-weight: 700;
  text-transform: uppercase;
}

  .who-badge { top: -22px; left: -14px;
  padding: 14px;}

  .who-img-main {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--green-light), var(--green-dark));
  background-image: url('/Assets/big\ truck\ solo.png');
   background-size: cover;
  background-position: center;
  overflow: hidden; }

  .cta-box { flex-direction: column; padding: 40px 28px; text-align: center; }
  .cta-deco { display: none; }
  .cta-actions { justify-content: center; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .swiper-button-next,
.swiper-button-prev {
  display: none;
}
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-cta, .btn-outline { width: 100%; justify-content: center; }
  .hero-slide { min-height: 80vh; }
}
