/* ================= Variables ================= */
:root {
  --primary: #c5332a;
  --primary-dark: #9e2922;
  --secondary: #1f1f1f;
  --dark: #1a1a1a;
  --light: #f8f9fb;
  --gray: #6b7280;
  --white: #ffffff;
  --whatsapp: #25d366;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 33, 61, 0.08);
  --shadow-lg: 0 20px 50px rgba(20, 33, 61, 0.15);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary), #ff4d4d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-tag {
  display: inline-block;
  background: rgba(197, 51, 42, 0.1);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
}
.section-head h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--secondary);
}
.section-head p {
  color: var(--gray);
  font-size: 1.02rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(197, 51, 42, 0.35);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}
.btn--call {
  background: var(--secondary);
  color: #fff;
  padding: 12px 22px;
}
.btn--call:hover {
  background: var(--dark);
}
.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn--whatsapp:hover {
  background: #1eb857;
  transform: translateY(-3px);
}
.btn--white {
  background: #fff;
  color: var(--primary);
}
.btn--white:hover {
  transform: translateY(-3px);
}
.btn--full {
  width: 100%;
  justify-content: center;
}

/* ================= Topbar ================= */
.topbar {
  background: var(--secondary);
  color: #dbe4f5;
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar__contact {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.topbar__contact a:hover {
  color: var(--primary);
}

/* ================= Header ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 20px;
}
.logo img {
  height: 102px;
  width: auto;
}

.nav__list {
  display: flex;
  gap: 30px;
}
.nav__link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
  position: relative;
  padding: 6px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: var(--primary);
}
.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.header__cta {
  flex-shrink: 0;
}

.nav__close {
  display: none;
}
.nav__overlay {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 1001;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ================= Hero ================= */
.hero {
  position: relative;
  padding: 150px 0 130px;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1.2s ease,
    transform 6s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(20, 33, 61, 0.88) 0%,
    rgba(20, 33, 61, 0.72) 45%,
    rgba(20, 33, 61, 0.45) 100%
  );
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
}
.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.hero__content {
  max-width: 640px;
}
.hero__content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}
.hero__content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
}
.stat p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.hero-slider__dots {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.hero-slider__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}
.hero-slider__dots span.active {
  background: var(--primary);
  width: 22px;
  border-radius: 5px;
}

/* ================= Marquee ================= */
.marquee {
  background: var(--secondary);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  animation: marquee 25s linear infinite;
}
.marquee__track span {
  opacity: 0.9;
}
.marquee__track span:nth-child(2n) {
  color: var(--primary);
  opacity: 1;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ================= About ================= */
.about {
  padding: 90px 0;
  background: var(--white);
}
.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about__media {
  position: relative;
}
.about__media img {
  border-radius: var(--radius);

  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about__badge i {
  font-size: 1.8rem;
  color: var(--primary);
}
.about__badge strong {
  display: block;
  color: var(--secondary);
  font-size: 1rem;
}
.about__badge span {
  font-size: 0.8rem;
  color: var(--gray);
}

.about__content h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
}
.about__content p {
  color: var(--gray);
  margin-bottom: 24px;
}
.about__points {
  margin-bottom: 30px;
}
.about__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}
.about__points i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ================= Services ================= */
.services {
  padding: 90px 0;
  background: var(--light);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: service-count;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  padding: 0 0 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #eef0f3;
  text-align: center;
  overflow: hidden;
  position: relative;
  counter-increment: service-count;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card__icon {
  width: 100%;
  height: 170px;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: none;
  position: relative;
}
.service-card__icon::before {
  content: counter(service-count, decimal-leading-zero);
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.service-card__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
.service-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__icon img {
  transform: scale(1.1);
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 24px 26px 10px;
}
.service-card p {
  color: var(--gray);
  font-size: 0.92rem;
  margin: 0 26px 22px;
}
.service-card--wide {
  grid-column: span 1;
  background: linear-gradient(135deg, var(--secondary), #3a3a3a);
  color: #fff;
}
.service-card--wide h3,
.service-card--wide p {
  color: #fff;
}
.service-card--wide .service-card__icon::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.service-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 22px;
  margin-top: auto;
}
.btn-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.btn-mini--call {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 14px rgba(197, 51, 42, 0.3);
}
.btn-mini--call:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-mini--enquire {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn-mini--enquire:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
}
.service-card--wide .btn-mini--enquire {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.service-card--wide .btn-mini--enquire:hover {
  background: #fff;
  color: var(--secondary);
  border-color: #fff;
}

/* ================= Brands ================= */
.brands {
  padding: 90px 0;
  background: var(--white);
}
.brands__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.brand-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  aspect-ratio: 4/3;
}
.brand-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* ================= Why Us ================= */
.why {
  padding: 90px 0;
  background: var(--light);
}
.why__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.why__content p {
  color: var(--gray);
  margin-bottom: 34px;
}
.why-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.02rem;
  color: var(--secondary);
  font-weight: 600;
}
.why-checklist i {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  font-size: 0.85rem;
  margin-top: 2px;
}
.why__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* ================= Testimonials ================= */
.testimonials {
  padding: 90px 0;
  background: var(--white);
}
.testimonials__slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 220px;
}
.testi-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
  display: none;
  animation: fadeIn 0.6s ease;
}
.testi-card.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.testi-stars {
  color: #ffb703;
  margin-bottom: 16px;
  font-size: 1rem;
}
.testi-card p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 20px;
}
.testi-card h4 {
  color: var(--secondary);
  font-size: 1rem;
}
.testi-card span {
  color: var(--gray);
  font-size: 0.85rem;
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.testi-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: var(--transition);
}
.testi-dots span.active {
  background: var(--primary);
  width: 28px;
  border-radius: 6px;
}
.testi-rate {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.testi-rate .btn i {
  margin-right: 6px;
}

/* ================= CTA ================= */
.cta {
  background: linear-gradient(120deg, var(--primary), var(--primary-dark));
  padding: 60px 0;
}
.cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  color: #fff;
}
.cta__inner h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.cta__inner p {
  opacity: 0.9;
}
.cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================= Contact ================= */
.contact {
  padding: 90px 0;
  background: var(--light);
}
.contact__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card {
  background: #fff;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.info-card i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 4px;
}
.info-card h4 {
  color: var(--secondary);
  margin-bottom: 4px;
  font-size: 1rem;
}
.info-card p {
  color: var(--gray);
  font-size: 0.9rem;
}
.info-card a:hover {
  color: var(--primary);
}
.contact__socials {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.contact__socials a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: var(--transition);
}
.contact__socials a:hover {
  background: var(--primary);
  transform: translateY(-4px);
}
.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.footer__socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  transition: var(--transition);
}
.footer__socials a:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

.contact__form {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact__form h3 {
  color: var(--secondary);
  margin-bottom: 22px;
  font-size: 1.3rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  transition: var(--transition);
  background: var(--light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.form-note {
  margin-top: 14px;
  font-size: 0.88rem;
  text-align: center;
  color: var(--whatsapp);
  font-weight: 600;
  min-height: 20px;
}

.map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

/* ================= Footer ================= */
.footer {
  background: var(--dark);
  color: #cbd5e1;
  padding: 60px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__brand img {
  height: 121px;
  margin-bottom: 16px;

  padding: 6px 10px;
  border-radius: 8px;
}
.footer__brand p {
  font-size: 0.88rem;
  color: #94a3b8;
}
.footer__col h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 1rem;
}
.footer__col ul li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #94a3b8;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer__col ul li i {
  color: var(--primary);
  margin-top: 3px;
}
.footer__col a:hover {
  color: var(--primary);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: #64748b;
}

/* ================= Floating Buttons ================= */
.float-btn {
  position: fixed;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  transition: var(--transition);
}
.float-btn--whatsapp {
  background: var(--whatsapp);
  bottom: 96px;
  animation: pulse 2s infinite;
}
.float-btn--call {
  background: var(--primary);
  bottom: 24px;
}
.float-btn:hover {
  transform: scale(1.1);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 168px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 900;
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--primary);
}

/* ================= Animations ================= */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-aos].aos-in {
  opacity: 1;
  transform: translateY(0);
}

/* ================= Responsive ================= */
@media (max-width: 991px) {
  .about__inner,
  .why__inner,
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .about__media,
  .why__media {
    order: -1;
  }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .hero__content p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .topbar__msg {
    display: none;
  }
  .header__cta {
    display: none;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.35s ease;
    padding: 100px 30px 30px;
    z-index: 1100;
    overflow-y: auto;
  }
  .nav.active {
    right: 0;
  }
  .nav__list {
    flex-direction: column;
    gap: 22px;
  }
  .nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--light, #f2f2f2);
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--dark);
    cursor: pointer;
  }
  .nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
  }
  .nav__overlay.active {
    display: block;
  }
  .hamburger {
    display: flex;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    padding: 110px 0 70px;
    min-height: 480px;
  }
  .hero__content h1 {
    font-size: 2.1rem;
  }
  .hero__stats {
    gap: 24px;
  }
  .stat h3 {
    font-size: 1.7rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }
  .brands__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .cta__inner {
    text-align: center;
    justify-content: center;
  }
  .section-head h2 {
    font-size: 1.7rem;
  }
  .marquee {
    display: none;
  }
}

/* Enquiry Popup */
.enquiry-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.enquiry-popup--active {
  display: flex;
}
.enquiry-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.enquiry-popup__box {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  padding: 32px 24px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  animation: enquiryPopupIn 0.25s ease;
}
@keyframes enquiryPopupIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.enquiry-popup__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
}
.enquiry-popup__close:hover {
  color: var(--primary);
}
.enquiry-popup__title {
  margin: 0 0 6px;
  font-size: 1.3rem;
  color: var(--dark);
  text-align: center;
}
.enquiry-popup__subtitle {
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}
.enquiry-popup .form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
}
.enquiry-popup .form-control:focus {
  border-color: var(--primary);
}
.enquiry-popup .btn-block {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
body.no-scroll {
  overflow: hidden;
}

@media (max-width: 480px) {
  .topbar__contact {
    gap: 12px;
    font-size: 0.78rem;
  }
  .hero__content h1 {
    font-size: 1.7rem;
  }
  .btn {
    padding: 12px 20px;
    font-size: 0.88rem;
  }
}
