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

:root {
  --gold: #d3b037;
  --gold-light: #f1dfc2;
  --cream: #fffbf4;
  --cream2: #fffefd;
  --bg: #fffefd;
  --text-dark: #3b3b3b;
  --text-mid: #575757;
  --text-light: #858585;
  --text-muted: #494949;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: relative;
  z-index: 100;
  background: #e6dbd3;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  gap: 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  z-index: 101;
}

.nav-logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.nav-brand-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #5d5047;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #302925;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  transition: color .2s;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 8px 20px;
  font-size: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: opacity .2s;
}

.nav-cta:hover {
  opacity: .88;
}

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

.nav-hamburger span {
  width: 26px;
  height: 2px;
  background: #302925;
  display: block;
  transition: .3s;
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 700px;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/home banner.png') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .25) 55%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 134px 80px 0;
}

.hero-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 62px;
  color: #fff;
  line-height: 1.1;
  max-width: 630px;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--gold-light);
}

.hero-sub {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  max-width: 580px;
  line-height: 1.5;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-size: 20px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: opacity .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-gold:hover {
  opacity: .88;
}

.btn-gold::after {
  content: ' ↗';
  margin-left: 0;
  opacity: 0;
  max-width: 0;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-gold:hover::after {
  opacity: 1;
  max-width: 20px;
  margin-left: 8px;
  transform: translate(3px, -3px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 12px 28px;
  font-size: 20px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .1);
}

.btn-outline-white::after {
  content: ' ↗';
  margin-left: 0;
  opacity: 0;
  max-width: 0;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-outline-white:hover::after {
  opacity: 1;
  max-width: 20px;
  margin-left: 8px;
  transform: translate(3px, -3px);
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat-num {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
  margin-top: 2px;
}

/* hero image strip */
.hero-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 400px;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
  background: #ffffff;
  border: 16px solid #ffffff;
  border-right: none;
}

.hero-strip-inner {
  display: flex;
  gap: 16px;
  padding-right: 16px;
  animation: scrollLeft 10s linear infinite;
  will-change: transform;
  height: 100%;
}

.hero-strip-inner img {
  height: 100%;
  width: 280px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 12px;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── SECTION WRAPPER ── */
section {
  background: var(--bg);
}

.section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 80px;
}

/* ── CATEGORIES ── */
#categories {
  background: #fff;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cat-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.cat-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ── ABOUT ── */
#about {
  background: var(--bg);
}

.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.about-left {}

.section-tag {
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 36px;
}

.card-vision,
.card-mission {
  background: #f7f3f0;
  border-radius: 8px;
  padding: 28px 24px 28px 104px;
  position: relative;
  margin-bottom: 24px;
  min-height: 140px;
}

.card-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #000;
  margin-bottom: 10px;
}

.card-body {
  font-size: 16px;
  color: #474747;
  line-height: 1.6;
}

.about-right {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
}

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

.about-bottom-left {}

.about-bottom-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
}

.about-bottom-right {}

.about-bottom-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 30px;
}

.about-desc {
  font-size: 24px;
  font-weight: 500;
  color: #909090;
  line-height: 1.7;
  margin-bottom: 40px;
}

.about-btns {
  display: flex;
  gap: 24px;
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 12px;
  padding: 12px 28px;
  font-size: 20px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.btn-outline-gold:hover {
  background: rgba(211, 176, 55, .08);
}

.btn-outline-gold::after {
  content: ' ↗';
  margin-left: 0;
  opacity: 0;
  max-width: 0;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover::after {
  opacity: 1;
  max-width: 20px;
  margin-left: 8px;
  transform: translate(3px, -3px);
}

/* ── PRODUCTS ── */
#products {
  background: var(--bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.product-card {
  background: #fffbf4;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-info {
  padding: 20px 24px 24px;
}

.product-name {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 16px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-view {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px;
  font-size: 20px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all .3s ease;
}

.btn-view:hover {
  opacity: .88;
  box-shadow: 0 4px 15px rgba(211, 176, 55, 0.3);
}

.btn-view::after {
  content: ' ↗';
  margin-left: 0;
  opacity: 0;
  max-width: 0;
  font-size: 22px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-view:hover::after {
  opacity: 1;
  max-width: 25px;
  margin-left: 8px;
  transform: translate(3px, -3px);
}

/* ── WHY CHOOSE US ── */
#why {
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 60px;
}

.why-left {
  position: relative;
  display: flex;
}

.why-main-img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  border-radius: 12px;
}

.why-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(8px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 0 12px 12px;
  padding: 30px 40px;
  color: #fff;
  text-align: center;
}

.why-badge-title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.why-badge-desc {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.5;
  color: #eeeeee;
}

.why-right {}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  height: 100%;
}

.why-expert {
  grid-column: 1 / -1;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background: #fffbf5;
}

.why-expert .why-card-title {
  font-size: 32px;
  margin-bottom: 16px;
}

.why-expert .why-card-body {
  max-width: 580px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.why-card {
  background: #fffbf5;
  border: 1px solid #dadada;
  border-radius: 12px;
  padding: 28px 22px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

.why-card-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #d9d9d9;
}

.dot.active {
  background: var(--gold);
}

.why-card-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* stat cards */
.why-stat-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.why-stat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.why-stat-overlay {
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
}

.why-stat-num {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.why-stat-desc {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.why-rating-card {
  background: #fffbf5;
  border: 1px solid #dadada;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.why-rating-num {
  font-size: 56px;
  font-weight: 700;
  color: #555;
}

.why-rating-star {
  font-size: 38px;
  color: var(--gold);
}

.why-rating-sub {
  font-size: 16px;
  color: #767676;
  text-align: center;
}

/* ── ENQUIRY ── */
#enquiry {
  background: var(--bg);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
  margin-top: 60px;
}

.enquiry-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 16px;
}

.enquiry-form-box {
  background: #fffbf4;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .15);
  padding: 36px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 18px;
  color: #000;
}

.form-label span {
  color: #ff5f5f;
}

.form-input,
.form-select,
.form-textarea {
  background: #fffefd;
  border: 1px solid #c6c5c5;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  color: #3e3e3e;
  outline: none;
  width: 100%;
  transition: border-color .2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #939393;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

.form-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  border-radius: 12px;
  padding: 14px;
  font-size: 20px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}

.btn-whatsapp:hover {
  background: rgba(211, 176, 55, .06);
}

.wa-icon {
  width: 28px;
  height: 28px;
}

/* ── BRANDS ── */
#brands {
  background: var(--bg);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
}

.brand-box {
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: transform .2s;
}

.brand-box:hover {
  transform: scale(1.03);
}

.brand-box img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* ── REVIEWS ── */
#reviews {
  background: var(--bg);
}

.reviews-carousel {
  position: relative;
  margin-top: 60px;
}

.swiper.reviewsSwiper {
  width: 100%;
  overflow: hidden;
}

.reviews-track {
  display: flex;
}

.review-card {
  height: 350px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  padding: 35px 28px;
  position: relative;
  transition: transform .4s ease-out, opacity .4s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #f6f6f6;
  opacity: 0.5;
  transform: scale(0.9);
}

.swiper-slide-active.review-card {
  background: #fffdf9;
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  z-index: 2;
  border: 1px solid #f2ece4;
  opacity: 1;
}

.review-stars {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 4px;
  transition: font-size 0.4s ease;
}

.swiper-slide-active.review-card .review-stars {
  font-size: 26px;
}

.star-gray {
  color: #d0d0d0;
}

.review-text {
  font-size: 14px;
  color: #8f8f8f;
  line-height: 1.7;
  margin-bottom: 24px;
  text-align: center;
  transition: all 0.4s ease;
}

.swiper-slide-active.review-card .review-text {
  font-size: 16px;
  color: #666;
}

.review-name {
  font-size: 15px;
  font-weight: 600;
  color: #666;
  text-align: center;
  transition: all 0.4s ease;
}

.swiper-slide-active.review-card .review-name {
  font-size: 18px;
  color: #111;
}

.reviews-nav {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.reviews-nav .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #d9d9d9;
  cursor: pointer;
  transition: background .2s;
  opacity: 1;
  margin: 0 !important;
}

.reviews-nav .swiper-pagination-bullet-active {
  background: var(--gold);
}

/* ── FOOTER ── */
footer {
  background: #fffaf2;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 60px 80px;
}

.footer-brand {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #454545;
  margin-bottom: 16px;
}

.footer-about {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .06);
  color: #444;
  font-size: 16px;
  text-decoration: none;
  transition: background .2s;
}

.footer-social a:hover {
  background: var(--gold);
  color: #fff;
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}

.footer-links li a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-contact-item .icon {
  font-size: 18px;
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
}

.footer-contact-item p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-copy {
  background: var(--gold);
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copy-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
  font-family: 'Figtree', sans-serif;
}

.copy-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #fff;
  font-family: 'Figtree', sans-serif;
  text-transform: uppercase;
}

.copy-right a {
  color: #fff;
  text-decoration: none;
}

.copy-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, .5);
}

/* section heading helper */
.text-center {
  text-align: center;
}

.section-sub {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
  text-decoration: none;
  transition: transform .2s;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 32px;
  }
}

@media (max-width: 820px) {
  nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    margin-left: auto;
  }

  .nav-brand-text {
    font-size: 16px;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: #e6dbd3;
    padding: 20px 24px;
    gap: 4px;
  }

  .section-inner {
    padding: 60px 24px;
  }

  .categories-grid {
    padding: 40px 24px;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .about-top,
  .about-bottom,
  .why-grid,
  .enquiry-grid,
  .reviews-track {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .footer-copy {
    padding: 18px 24px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  #hero {
    height: 800px;
  }

  .hero-content {
    padding: 100px 24px 0;
    text-align: center;
  }

  .hero-title {
    font-size: 42px;
    margin: 0 auto 20px;
  }

  .hero-sub {
    font-size: 18px;
    margin: 0 auto 36px;
  }

  .hero-btns {
    justify-content: center;
    margin-bottom: 40px;
  }

  .hero-strip {
    display: block;
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: 0px;
    width: auto;
    height: 180px;
    border-radius: 14px 14px 0px 0px;
    background: #ffffff;
    border: 10px solid #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  }

  .hero-strip-inner img {
    width: 140px;
    border-radius: 12px;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-btns {
    grid-template-columns: 1fr;
  }
}