/* ========================================================
   AIVAA ELEVATORS — MAIN STYLESHEET
   Color Palette:
   --orange: #E8640A  (primary brand)
   --green:  #2E7D32  (accent / India flag)
   --dark:   #0f0f0f  (backgrounds)
   --gray:   #9ca3af  (wings / secondary)
======================================================== */

:root {
  --orange: #E8640A;
  --orange-dark: #c85000;
  --green: #2E7D32;
  --dark: #0f0f0f;
  --dark2: #1a1a1a;
  --dark3: #111827;
  --gray: #9ca3af;
  --light: #f8f9fa;
  --white: #ffffff;
  --font-main: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-accent: 'Rajdhani', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

/* ---- TOP BAR ---- */
.topbar {
  background: var(--dark2);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 7px 0;
  font-family: var(--font-body);
}
.topbar a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  margin-left: 12px;
  transition: color 0.2s;
}
.topbar a:hover { color: var(--orange); }

/* ---- NAVBAR ---- */
#mainNav {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
  padding: 0;
  transition: all 0.3s;
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.18);
}

.navbar-brand { padding: 10px 0; }
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-text-group { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--orange);
  letter-spacing: 1px;
}
.logo-sub {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.7rem;
  color: #555;
  letter-spacing: 2px;
}

.nav-link {
  font-family: var(--font-accent);
  font-weight: bold;
  font-size: 1.15rem;
  color: #1a1a1a !important;
  padding: 22px 14px !important;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 12px; left: 50%; right: 50%;
  height: 2px;
  background: var(--orange);
  transition: all 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }
.nav-link:hover { color: var(--orange) !important; }

.dropdown-menu {
  border: none;
  border-top: 3px solid var(--orange);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 8px 0;
}
.dropdown-item {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 8px 20px;
  transition: all 0.2s;
}
.dropdown-item:hover {
  background: var(--orange);
  color: #fff !important;
  padding-left: 28px;
}

.btn-orange {
  background: var(--orange);
  color: #fff !important;
  border: none;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,100,10,0.4);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange) !important;
  border: 2px solid var(--orange);
  font-family: var(--font-accent);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: #fff !important;
}
.btn-white {
  background: #fff;
  color: var(--orange) !important;
  font-family: var(--font-accent);
  font-weight: 700;
  border-radius: 4px;
}
.btn-white:hover { background: #f0f0f0; }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff !important;
  font-family: var(--font-accent);
  font-weight: 700;
  border-radius: 4px;
  background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.navbar-toggler { border: 1px solid var(--orange); padding: 3px 5px; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E8640A' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* ---- PAGE SECTIONS ---- */
/*.page-section { min-height: 60vh; }*/

/* ---- HERO SLIDER ---- */
.hero-slider { position: relative; overflow: hidden; }

.carousel-item {
  height: 72vh;
  min-height: 460px;
  position: relative;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Add your real images here */
.slide-1 { background-image: url("images/slider-1.jpg"); }
.slide-2 { background-image: url("images/slider-2.jpg"); }
.slide-3 { background-image: url("images/slider-3.jpg"); }
.slide-4 { background-image: url("images/slider-4.jpg"); }
.slide-5 { background-image: url("images/slider-5.jpg"); }
.slide-6 { background-image: url("images/slider-6.jpg"); }
.slide-7 { background-image: url("images/banner-new-02-09-2026-1.jpg"); }
.slide-8 { background-image: url("images/banner-new-02-09-2026-2.jpg"); }
.slide-9 { background-image: url("images/banner-new-02-09-2026-3.jpg"); }
.slide-10 { background-image: url("images/banner-new-02-09-2026-4.jpg"); }

/* Remove gradient decorative circle */
.slide-1::after,
.slide-2::after,
.slide-3::after,
.slide-4::after {
  display: none;
}

/* Light black overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
      background: rgb(0 0 0 / 45%);
/*  background: rgba(0, 0, 0, 0.78);*/
}

.carousel-caption {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  padding: 0;
  width: 90%;
  max-width: 1140px;
}

.slide-title {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 1px;
      -webkit-text-stroke: 1.5px black;
}

.slide-title span { color: var(--orange); }

.slide-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Smaller prev/next buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 38px;
  height: 38px;
  background: rgba(232,100,10,0.85);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 12px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--orange);
  transform: translateY(-50%) scale(1.05);
}

/* Mobile responsive height reduce */
@media (max-width: 768px) {
  .carousel-item {
    height: 62vh;
    min-height: 380px;
  }

  .carousel-caption {
    width: 92%;
    top: 52%;
  }

  .slide-title {
    font-size: 2rem;
  }

  .slide-sub {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .slide-btns .btn {
    font-size: 0.82rem;
    padding: 8px 12px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 32px;
    height: 32px;
    margin: 0 6px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 14px;
    height: 14px;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 58vh;
    min-height: 340px;
  }

  .slide-title {
    font-size: 1.65rem;
  }

  .slide-sub {
    font-size: 0.85rem;
  }

  .slide-badge {
    font-size: 0.68rem;
    padding: 4px 12px;
    margin-bottom: 12px;
  }
}

/* ---- STATS STRIP ---- */
.stats-strip { background: var(--dark2); }
.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 3px; width: 0;
  background: var(--orange);
  transition: width 1s ease;
}
.stat-item.visible::before { width: 100%; }
.stat-num {
  font-family: var(--font-main);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ---- COMMON SECTIONS ---- */
.section-pad { padding: 80px 0; }
.bg-dark-section { background: var(--dark3); }
.text-orange { color: var(--orange) !important; }

.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  border-left: 3px solid var(--orange);
  padding-left: 10px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.section-title.light { color: #fff; }
.section-body { color: #555; line-height: 1.7; margin-bottom: 14px; }

/* ---- ABOUT TEASER IMG GRID ---- */
.about-img-grid {
  position: relative;
/*  height: 380px;*/
}
.aimg { position: absolute; border-radius: 8px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.aimg-inner { width: 100%; height: 100%; }
/*.aimg-1 { width: 56%; height: 60%; top: 0; left: 0; }*/
.aimg-2 { width: 40%; height: 48%; top: 8%; right: 0; }
.aimg-3 { width: 44%; height: 46%; bottom: 0; left: 8%; }
.orange-badge-card {
  position: absolute;
  bottom: 0; right: 8%;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232,100,10,0.4);
}
.obc-num { font-family: var(--font-main); font-size: 2rem; font-weight: 900; line-height: 1; }
.obc-txt { font-size: 0.78rem; opacity: 0.9; margin-top: 4px; }

.feat-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.feat-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: #444;
  width: calc(50% - 5px);
}
.feat-item i { color: var(--green); font-size: 0.9rem; }

/* ---- PRODUCT CARDS ---- */
.prod-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 28px 22px;
  transition: all 0.3s;
  height: 100%;
}
.prod-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.prod-icon {
/*  width: 60px; height: 60px;*/
  background: rgba(232,100,10,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.prod-card:hover .prod-icon { background: var(--orange); color: #fff; }
.prod-card h5 { font-family: var(--font-main); font-weight: 700; font-size: 1.15rem; color: #fff; margin-bottom: 10px; }
.prod-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.prod-link {
  color: var(--orange);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.prod-link:hover { color: #fff; }
.prod-link i { transition: transform 0.3s; }
.prod-link:hover i { transform: translateX(4px); }

/* ---- WHY CARDS ---- */
.why-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 22px 18px;
  transition: all 0.3s;
}
.why-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(232,100,10,0.12);
  transform: translateY(-3px);
}
.why-icon {
  width: 48px; height: 48px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
  margin-bottom: 12px;
}
.why-card h6 { font-family: var(--font-accent); font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.why-card p { font-size: 0.85rem; color: #666; margin: 0; line-height: 1.5; }

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}
.testi-stars { color: var(--orange); font-size: 1.4rem; margin-bottom: 16px; }
.testi-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}
.testi-author {
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.testi-author strong { display: block; color: #fff; font-family: var(--font-accent); font-size: 1rem; }
.testi-author span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.testi-indicators { display: flex; justify-content: center; gap: 8px; }
.testi-indicators button {
  width: 5px !important; height: 5px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.2) !important;
}
.testi-indicators button.active { background: var(--orange) !important; }

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 50px 0;
}
.cta-band h3 {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 8px;
}
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; }

/* ---- INNER BANNER ---- */
.inner-banner {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 60%, #2d1200 100%);
/*  min-height: 250px;*/
  min-height: 160px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 36px;
  position: relative;
  overflow: hidden;
}
.inner-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,100,10,0.15) 0%, transparent 70%);
}
.ib-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}
.inner-banner h1 {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  position: relative;
}
.inner-banner .breadcrumb { margin: 0; background: none; padding: 0; position: relative; }
.inner-banner .breadcrumb-item a { color: var(--orange); text-decoration: none; }
.inner-banner .breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.inner-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ---- ABOUT PAGE ---- */
.mini-stat {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  transition: all 0.3s;
}
.mini-stat:hover { border-color: var(--orange); }
.ms-num {
  display: block;
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
}
.ms-lbl { font-size: 0.82rem; color: #666; }

.vision-cards { display: flex; flex-direction: column; gap: 16px; }
.vc-item {
  background: #f8f9fa;
  border-left: 4px solid #ddd;
  border-radius: 0 10px 10px 0;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.vc-item.orange { border-color: var(--orange); background: rgba(232,100,10,0.05); }
.vc-item.green { border-color: var(--green); background: rgba(46,125,50,0.05); }
.vc-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.vc-item.green .vc-icon { background: var(--green); }
.vc-item h5 { font-family: var(--font-accent); font-weight: 700; margin-bottom: 6px; font-size: 1rem; }
.vc-item p { font-size: 0.88rem; color: #555; margin: 0; line-height: 1.5; }

.cert-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.cert-badge:hover { border-color: var(--orange); color: var(--orange); }

.team-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px 22px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid #e9ecef;
}
.team-card:hover { border-color: var(--orange); transform: translateY(-5px); box-shadow: 0 12px 30px rgba(232,100,10,0.12); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  color: #fff;
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.team-card h5 { font-family: var(--font-accent); font-weight: 700; margin-bottom: 4px; }
.team-card span { color: var(--orange); font-size: 0.85rem; font-weight: 600; display: block; margin-bottom: 12px; }
.team-card p { font-size: 0.85rem; color: #666; margin: 0; }

/* ---- PRODUCTS PAGE ---- */
.prod-visual {
  border-radius: 16px;
/*  height: 320px;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}
.pv-1 { background: linear-gradient(135deg, #E8640A, #c85000); }
.pv-2 { background: linear-gradient(135deg, #1a1a1a, #333); }
.pv-3 { background: linear-gradient(135deg, #2E7D32, #1b5e20); }
.pv-4 { background: linear-gradient(135deg, #0d6efd, #0851c0); }
.prod-visual span {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
}

.prod-title {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 14px;
}
.spec-row {
  font-size: 0.88rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}
.spec-row i { color: var(--green); font-size: 0.85rem; }

/* ---- SERVICES PAGE ---- */
.service-card {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #e9ecef;
  transition: background 0.3s;
}
.service-card:hover::before { background: var(--orange); }
.service-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(232,100,10,0.1); }
.service-card.featured { border-color: var(--orange); }
.service-card.featured::before { background: var(--orange); }
.sc-num {
  font-family: var(--font-main);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(232,100,10,0.1);
  line-height: 1;
  margin-bottom: -10px;
}
.sc-icon { color: var(--orange); font-size: 1.6rem; margin-bottom: 12px; }
.service-card h5 { font-family: var(--font-accent); font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: #555; line-height: 1.6; margin-bottom: 14px; }
.sc-list { list-style: none; padding: 0; margin: 0; }
.sc-list li {
  font-size: 0.83rem;
  color: #555;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sc-list li::before { content: '→'; color: var(--orange); font-size: 0.85rem; }

.amc-card {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.amc-card:hover { border-color: var(--orange); transform: translateY(-5px); }
.amc-card.featured { border-color: var(--orange); }
.amc-badge {
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-accent);
  letter-spacing: 1px;
  text-align: center;
  padding: 6px;
  text-transform: uppercase;
}
.amc-header {
  background: var(--dark2);
  color: #fff;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.3rem;
  text-align: center;
  padding: 18px;
  letter-spacing: 1px;
}
.amc-card.featured .amc-header { background: var(--orange); }
.amc-body { padding: 24px 22px; }
.amc-body ul { list-style: none; padding: 0; margin: 0; }
.amc-body ul li {
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.88rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}
.amc-body ul li .fa-check { color: var(--green); }
.amc-body ul li.disabled { color: #bbb; }
.amc-body ul li .fa-times { color: #ccc; }

/* ---- GALLERY PAGE ---- */
.gal-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.gal-btn {
  background: none;
  border: 2px solid #ddd;
  color: #555;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
}
.gal-btn.active, .gal-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.gal-card {
  background: var(--gi-bg);
  border-radius: 12px;
  height: 240px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.9);
  transition: transform 0.3s;
}
.gal-card:hover { transform: scale(1.02); }
.gi-content { padding: 20px; position: relative; z-index: 2; }
.gi-content h6 { font-family: var(--font-accent); font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.gi-content small { opacity: 0.75; font-size: 0.82rem; }
.gi-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 12px;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.gal-card:hover .gi-overlay { transform: translateY(0); }
.gal-item { transition: all 0.4s; }
.gal-item.hidden { display: none; }

/* ---- CONTACT PAGE ---- */
.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(232,100,10,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}
.ci-item strong { font-family: var(--font-accent); font-size: 0.95rem; font-weight: 700; display: block; margin-bottom: 2px; }
.ci-item p { font-size: 0.88rem; color: #666; margin: 0; line-height: 1.5; }

.contact-form-card {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.contact-form-card h4 {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: #1a1a1a;
}
.contact-form-card label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 5px;
  display: block;
}
.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,100,10,0.1);
}

.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s;
}
.social-btn:hover { transform: translateY(-3px); color: #fff; }
.social-btn.fb { background: #1877f2; }
.social-btn.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.li { background: #0077b5; }
.social-btn.wa { background: #25d366; }

.map-section {
  background: #f8f9fa;
  border-top: 3px solid var(--orange);
}
.map-placeholder {
  text-align: center;
  padding: 60px 20px;
}
.map-placeholder h5 { font-family: var(--font-accent); font-weight: 700; font-size: 1.1rem; margin: 12px 0 6px; }

/* ---- FOOTER ---- */
.site-footer { background: #0a0a0a; }
.footer-top { padding: 60px 0 40px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--orange);
  letter-spacing: 1px;
}
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.footer-cert-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.fcb {
  background: rgba(232,100,10,0.15);
  border: 1px solid rgba(232,100,10,0.3);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-accent);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.footer-heading {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--orange);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.2s;
  display: inline-block;
}
.footer-links a:hover { color: var(--orange); padding-left: 6px; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.84rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-list i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }

.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }

.footer-bottom {
  padding: 18px 0;
  background: #050505;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  margin: 0;
}
.footer-bottom a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--orange); }

/* ---- FLOATING ELEMENTS ---- */
.wa-float {
  position: fixed;
  bottom: 25px; left: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff !important;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 999;
  text-decoration: none;
/*  animation: waFloat 3s ease-in-out infinite;*/
}

.call-fab{ position: fixed; bottom: 90px; left: 24px; z-index: 9999; width: 56px; height: 56px; border-radius: 50%; background: #0d6efd; color: white; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); animation: waPulse 2.5s infinite; transition: transform 0.3s; }
.call-fab:hover { transform: scale(1.12); color: white; }

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

.back-top {
  position: fixed;
  bottom: 96px; right: 24px;
  width: 44px; height: 44px;
  background: var(--orange);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 998;
  display: flex; align-items: center; justify-content: center;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--orange-dark); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  /*.carousel-item { height: 90vh; min-height: 500px; }
  .carousel-caption { width: 94%; }
  .slide-title { font-size: 2.2rem; }
  .slide-overlay {
    background: rgba(0,0,0,0.75);
  }*/
  .section-pad { padding: 55px 0; }
/*  .about-img-grid { height: 260px; }*/
  .nav-link::after { display: none; }
  .nav-link { padding: 10px 16px !important; }
  .contact-form-card { padding: 22px; }
  .amc-card { margin-bottom: 10px; }
  .feat-item { width: 100%; }
}

@media (max-width: 576px) {
  /*.slide-title { font-size: 1.8rem; }
  .slide-sub { font-size: 0.9rem; }
  .slide-btns .btn { font-size: 0.85rem; padding: 8px 14px; }*/
  .stat-num { font-size: 2rem; }
}

.carousel-item2{
  height: auto !important;
  min-height: auto !important;
}

.carousel-indicators [data-bs-target]{
  border-top: 0px solid transparent; ;
}

.lifts-222{
  width: 100%;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #a7a7a7;
}

.njsun{
  text-align: center;
  margin-bottom: 1em;
}

.lift-below{
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin-top: 0.5em;
}

@media screen and (min-width: 200px) and (max-width: 767px) {

.logo-wrap img{
      width: 100% !important;
}

}

@media (max-width: 991.98px) {
  /* Allow layout items to wrap into a new row when the menu expands */
  #mainNav .container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  /* Restrain brand width and prevent flex shrinking */
  #mainNav .navbar-brand {
    max-width: 70%;
    margin-right: 0;
    flex-shrink: 0;
  }

  /* Ensure the logo image scales down cleanly */
  #mainNav .logo-wrap img {
/*    max-height: 45px;*/
    width: auto;
    object-fit: contain;
  }

  /* Force the expanded menu full-width onto its own line below the logo header */
  #mainNav .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
  }

  /* Optional: Align menu text nicely on mobile */
  #mainNav .navbar-nav {
    text-align: left;
    padding-top: 1rem;
  }
}


/*@media screen and (min-width: 992px) and (max-width: 1100px) {

.nav-link{
  padding: 22px 05px !important;
}

}


@media screen and (min-width: 1101px) and (max-width: 1300px) {

.nav-link{
  padding: 22px 10px !important;
}

}*/


@media (min-width: 992px) and (max-width: 1100px) {
  /* Scale down the logo image slightly */
  #mainNav .logo-wrap img {
/*    max-height: 40px;*/
    width: auto;
  }

  /* Prevent menu items from wrapping text onto two lines */
  #mainNav .nav-link {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  /* Reduce spacing around the call button */
  #mainNav .ms-lg-3 {
    margin-left: 0.5rem !important;
  }

  /* Compact padding for the Call Now button */
  #mainNav .btn-orange {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }
}

@media screen and (min-width: 1101px) and (max-width: 1300px) {

.nav-link{
  padding: 22px 10px !important;
}

}