*,
*::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-size: cover;
  background-position: center;
  background-repeat: 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 .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;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.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;
}

.form-success {
  grid-column: 1 / -1;
  text-align: center;
  color: #22c55e;
  font-weight: 600;
  font-size: 16px;
  padding: 12px;
  background: #dcfce7;
  border-radius: 8px;
  display: none;
}

.form-success.show {
  display: block;
}

.form-btns > * {
  width: 100%;
  min-width: 0;
}

.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);
    gap: 10px;
  }

  .brand-box {
    height: 120px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
    width: 100%;
  }

  .why-left {
    display: block;
  }

  .why-main-img {
    min-height: 260px;
    max-height: 360px;
  }

  .why-badge {
    padding: 22px 18px;
  }

  .why-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card,
  .why-stat-card,
  .why-rating-card {
    min-height: 0 !important;
    width: 100%;
    max-width: 100%;
  }

  .why-expert {
    padding: 32px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-btns {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .enquiry-grid {
    gap: 24px;
    align-items: stretch;
  }

  .enquiry-img {
    height: auto;
    max-height: 340px;
  }

  .enquiry-form-box {
    padding: 28px 18px;
  }

  .about-btns {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .about-btns a {
    flex: 1;
    text-align: center;
  }

  .about-main-img {
    width: 100%;
    height: auto;
  }

  .about-bottom-img {
    width: 100%;
    height: auto;
  }
}

/* ─── ABOUT US PAGE STYLES ─── */
.about-us-page {
  --gold: #d3b037;
  --gold-light: #fffaf2;
  --gold-pale: #fffbf4;
  --bg: #fffefd;
  --text: #3b3b3b;
  --muted: #858585;
  --sub: #909090;
  --link: #494949;
  --dark: #302925;
  --nav-bg: #e6dbd3;
  --footer-bg: #fffaf2;
  --radius-card: 16px;
  --radius-btn: 12px;
  --shadow-card: 0 4px 6px rgba(0, 0, 0, .15);
  --shadow-value: 0 4px 4px rgba(0, 0, 0, .25);
}

.about-us-page .hero {
  position: relative;
  height: 450px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-us-page .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(1px);
  transform: scale(1.03);
}

.about-us-page .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(-70deg, rgba(211, 176, 55, .79) 6%, rgba(117, 112, 95, 1) 58%, rgba(51, 51, 50, .48) 100%);
  opacity: .82;
}

.about-us-page .hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.about-us-page .hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin: 0;
}

.about-us-page .hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: .375px;
  margin-top: 16px;
  line-height: 1.45;
  opacity: .95;
  max-width: 800px;
  margin-inline: auto;
}

.about-us-page .about {
  background: var(--bg);
  overflow: hidden;
  padding: 60px 80px 80px;
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 60px;
  align-items: start;
}

.about-us-page .about__label {
  font-weight: 600;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 1.6px;
  margin-bottom: 18px;
}

.about-us-page .about__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: var(--text);
  letter-spacing: .525px;
  line-height: 1.25;
  margin-bottom: 24px;
}

.about-us-page .about__desc {
  font-size: 22px;
  color: var(--sub);
  letter-spacing: .375px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.about-us-page .about__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.about-us-page .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  height: 54px;
  padding: 0 24px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  letter-spacing: .3px;
  text-decoration: none;
  transition: opacity .2s;
}

.about-us-page .btn-primary:hover {
  opacity: .88;
}

.about-us-page .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 20px;
  font-weight: 500;
  height: 54px;
  padding: 0 24px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  letter-spacing: .3px;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.about-us-page .btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

.about-us-page .about__image {
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 470px;
  margin-top: 46px;
}

.about-us-page .about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-page .values {
  background: var(--bg);
  padding: 60px 80px 80px;
  text-align: center;
}

.about-us-page .section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: .6px;
  margin-bottom: 20px;
}

.about-us-page .section-sub {
  font-size: 26px;
  color: var(--muted);
  letter-spacing: .375px;
  line-height: 1.5;
  margin-bottom: 60px;
}

.about-us-page .values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-us-page .value-card {
  background: var(--gold-pale);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-value);
  padding: 32px 24px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .25s, box-shadow .25s;
}

.about-us-page .value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.about-us-page .value-icon {
  background: var(--gold);
  border-radius: 8px;
  width: 70px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-us-page .value-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.about-us-page .value-name {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: .3px;
}

.about-us-page .value-desc {
  font-size: 15px;
  color: #5c5c5c;
  letter-spacing: .225px;
  line-height: 1.65;
}

.about-us-page .stats {
  background: var(--gold);
  padding: 0 80px;
  height: 248px;
  display: flex;
  align-items: center;
}

.about-us-page .stats__grid {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.about-us-page .stat {
  text-align: center;
  color: #fff;
}

.about-us-page .stat__number {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 60px;
  letter-spacing: .8px;
  line-height: 1;
}

.about-us-page .stat__label {
  font-weight: 500;
  font-size: 22px;
  letter-spacing: .3px;
  margin-top: 8px;
}

.about-us-page .serve {
  background: var(--bg);
  padding: 60px 80px 80px;
  text-align: center;
}

.about-us-page .serve__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-us-page .serve-card {
  background: var(--gold-pale);
  box-shadow: var(--shadow-card);
  padding: 24px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform .25s;
  min-height: 200px;
  justify-content: center;
}

.about-us-page .serve-card:hover {
  transform: translateY(-4px);
}

.about-us-page .serve-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.about-us-page .serve-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: .2px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.4;
}

.about-us-page .enquire {
  position: relative;
  height: 365px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-us-page .enquire__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(10px);
  transform: scale(1.06);
}

.about-us-page .enquire__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .2);
}

.about-us-page .enquire__content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.about-us-page .enquire__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: .55px;
  margin-bottom: 16px;
}

.about-us-page .enquire__sub {
  font-weight: 500;
  font-size: 28px;
  letter-spacing: .4px;
  margin-bottom: 40px;
}

.about-us-page .enquire__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.about-us-page .fade-up {
  opacity: 0;
  animation: fadeUp .7s ease forwards;
}

.about-us-page .delay-1 {
  animation-delay: .1s;
}

.about-us-page .delay-2 {
  animation-delay: .2s;
}

.about-us-page .delay-3 {
  animation-delay: .3s;
}

.about-us-page .delay-4 {
  animation-delay: .4s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .about-us-page .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-us-page .serve__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-us-page .about {
    grid-template-columns: 1fr;
  }

  .about-us-page .about__image {
    height: 320px;
  }
}

@media (max-width: 700px) {

  .about-us-page .about,
  .about-us-page .values,
  .about-us-page .serve,
  .about-us-page .stats {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-us-page .values__grid {
    grid-template-columns: 1fr;
  }

  .about-us-page .serve__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-us-page .stats {
    height: auto;
    padding-top: 32px;
    padding-bottom: 32px;
    align-items: stretch;
  }

  .about-us-page .stats__grid {
    flex-direction: column;
    gap: 32px;
  }

  .about-us-page .stat__number {
    font-size: 48px;
  }

  .about-us-page .stat__label {
    font-size: 18px;
  }
}

/* ─── OUR PRODUCTS PAGE ─── */
.products-page {
  --gold: #d3b037;
  --gold-border: #d3b037;
  --bg: #fffefd;
  --bg-card: #fffbf4;
  --text-dark: #3b3b3b;
  --text-mid: #575757;
  --text-muted: #878787;
  --text-grey: #494949;
}

.products-page .hero {
  position: relative;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
}

.products-page .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(1px);
  transform: scale(1.03);
}

.products-page .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(-70deg, rgba(211, 176, 55, .79) 6%, rgba(117, 112, 95, 1) 58%, rgba(51, 51, 50, .48) 100%);
  opacity: .82;
}

.products-page .hero-content {
  position: relative;
  z-index: 1;
}

.products-page .hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin: 0;
}

.products-page .hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .375px;
  margin-top: 16px;
  opacity: .95;
  max-width: 800px;
  line-height: 1.45;
  margin-inline: auto;
}

.products-page .cat-bar {
  background: var(--bg);
  padding: 36px 80px;
  border-bottom: 1px solid #f0ede8;
}

.products-page .cat-tabs {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  flex-wrap: nowrap;
  padding-bottom: 12px;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.products-page .cat-tabs::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

.products-page .cat-tab {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.products-page .cat-tab.active,
.products-page .cat-tab:hover {
  background: var(--gold);
  color: #fff;
}

.products-page .products-wrap {
  background: var(--bg);
  padding: 40px 80px 60px;
}

.products-page .category-section {
  margin-bottom: 56px;
}

.products-page .category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.products-page .category-title {
  font-size: 30px;
  font-weight: 500;
  color: #111;
  letter-spacing: .4px;
}

.products-page .view-all {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 22px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
}

.products-page .view-all:hover {
  opacity: .75;
}

.products-page .view-all svg {
  width: 26px;
  height: 26px;
}

.products-page .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.products-page .product-card {
  background: var(--bg-card);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: transform .2s, box-shadow .2s;
  min-height: 384px;
}

.products-page .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.products-page .product-img {
  width: 100%;
  height: 180px;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

.products-page .product-body {
  padding: 12px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.products-page .product-name {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 8px;
}

.products-page .product-desc {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  flex: 1;
}

.products-page .enquire-btn {
  margin-top: auto;
}

.products-page .enquire-btn {
  margin-top: 16px;
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
  cursor: pointer;
  transition: opacity .2s;
}

.products-page .enquire-btn:hover {
  opacity: .85;
}

.products-page .form-label {
  font-size: 20px;
  color: #111;
  font-weight: 400;
}

.products-page .form-label span {
  color: #ff5f5f;
}

.products-page .form-input,
.products-page .form-select,
.products-page .form-textarea {
  background: var(--bg);
  border: 1px solid #c6c5c5;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 18px;
  color: #3e3e3e;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color .2s;
}

.products-page .form-input::placeholder,
.products-page .form-textarea::placeholder {
  color: #939393;
}

.products-page .form-input:focus,
.products-page .form-select:focus,
.products-page .form-textarea:focus {
  border-color: var(--gold);
}

.products-page .form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.products-page .form-textarea {
  resize: none;
  height: 140px;
}

.products-page .form-msg {
  margin-bottom: 28px;
}

.products-page .form-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.products-page .btn-submit {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 500;
  padding: 16px;
  cursor: pointer;
  transition: opacity .2s;
}

.products-page .btn-submit:hover {
  opacity: .85;
}

.products-page .btn-wa {
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 500;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .2s, color .2s;
}

.products-page .btn-wa:hover {
  background: var(--gold);
  color: #fff;
}

.products-page .btn-wa svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.products-page .category-section {
  transition: opacity .3s;
}

.products-page .category-section.hidden {
  display: none;
}

@media (max-width: 900px) {
  .products-page .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-page .enquiry-section {
    grid-template-columns: 1fr;
  }

  .products-page .enquiry-img {
    width: 100%;
    height: 260px;
  }

  .products-page .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .products-page .navbar {
    padding: 0 20px;
  }

  .products-page .products-wrap,
  .products-page .cat-bar {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 700px) {
  .products-grid,
  .products-page .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card,
  .products-page .product-card {
    width: 100%;
  }

  .product-img,
  .products-page .product-img {
    width: 100%;
    height: 220px;
    min-height: 220px;
    max-height: 220px;
    object-fit: cover;
  }

  .product-body,
  .products-page .product-body {
    padding: 18px 16px 20px;
  }

  .product-name {
    font-size: 20px;
  }

  .product-desc {
    font-size: 15px;
  }

  .btn-view,
  .products-page .enquire-btn {
    font-size: 18px;
    padding: 12px 16px;
  }

  .form-btns {
    grid-template-columns: 1fr;
  }
}

/* ── HOME HERO RESPONSIVE ── */
@media (max-width: 900px) {
  #hero {
    height: auto;
    min-height: 620px;
    padding-bottom: 20px;
  }

  #hero .hero-content {
    padding: 100px 24px 200px;
    text-align: center;
  }

  .hero-title {
    font-size: 38px;
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-sub {
    font-size: 18px;
    max-width: 100%;
    margin-inline: auto;
    margin-bottom: 28px;
  }

  .hero-btns {
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
  }

  .hero-stats {
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .stat-num {
    font-size: 24px;
  }

  .stat-label {
    font-size: 13px;
  }

  .hero-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 180px;
    margin: 0;
    border-radius: 14px 14px 0 0;
    background: #fff;
    border: 10px solid #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    z-index: 5;
  }

  .hero-strip-inner img {
    width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-btns {
    flex-direction: column;
    padding: 0 20px;
  }

  .btn-gold,
  .btn-outline-white {
    width: 100%;
    font-size: 18px;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-strip {
    height: 140px;
    border-width: 8px;
  }

  .hero-strip-inner img {
    width: 120px;
    height: 130px;
  }

  #hero .hero-content {
    padding-bottom: 160px;
  }
}

/* ─── CONTACT PAGE ─── */
.contact-page {
  --gold: #d3b037;
  --bg: #fffefd;
  --bg-card: #fffbf4;
  --text-dark: #3b3b3b;
  --text-grey: #494949;
  --text-muted: #858585;
}

.contact-page .hero {
  position: relative;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
}

.contact-page .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: blur(1px);
  transform: scale(1.03);
}

.contact-page .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(-70deg, rgba(211, 176, 55, .79) 6%, rgba(117, 112, 95, 1) 58%, rgba(51, 51, 50, .48) 100%);
  opacity: .82;
}

.contact-page .hero-content {
  position: relative;
  z-index: 1;
}

.contact-page .hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin: 0;
}

.contact-page .hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .375px;
  margin-top: 16px;
  opacity: .95;
  max-width: 800px;
  line-height: 1.45;
  margin-inline: auto;
}

.contact-page .contact-info-section {
  background: var(--bg);
  padding: 60px 80px 50px;
  text-align: center;
}

.contact-page .contact-info-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 44px;
  color: var(--text-dark);
  letter-spacing: .6px;
  margin-bottom: 20px;
}

.contact-page .contact-info-section .sub {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 48px;
}

.contact-page .contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  max-width: 1200px;
  margin-inline: auto;
}

.contact-page .contact-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}

.contact-page .contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.contact-page .contact-icon-box {
  background: var(--gold);
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page .contact-icon-box svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.contact-page .contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.contact-page .info-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #111;
  letter-spacing: .1px;
}

.contact-page .info-value {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #666;
  line-height: 1.3;
}

/* Responsive adjustments for cards */
@media (max-width: 1200px) {
  .contact-page .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .contact-page .contact-cards {
    grid-template-columns: 1fr;
  }
}

.contact-page .quote-section {
  background: var(--bg);
  padding: 60px 80px;
  display: grid;
  grid-template-columns: 545px 1fr;
  gap: 64px;
  align-items: stretch;
}

.contact-page .quote-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-page .quote-form-box {
  background: var(--bg-card);
  border-radius: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .15);
  padding: 33px 40px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-page .quote-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contact-page .quote-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #474747;
  line-height: 1.3;
  letter-spacing: .525px;
  margin-bottom: 32px;
}

.contact-page .quote-img {
  width: 100%;
  height: 498px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.contact-page .quote-form-box {
  background: var(--bg-card);
  border-radius: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .15);
  padding: 33px 40px 40px;
}

.contact-page .quote-form-title {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 34px;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: .45px;
  margin-bottom: 36px;
}

.contact-page .form-fields {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 36px;
}

.contact-page .form-input,
.contact-page .form-select,
.contact-page .form-textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #c6c5c5;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  color: #3e3e3e;
  outline: none;
  transition: border-color .2s;
}

.contact-page .form-input::placeholder,
.contact-page .form-textarea::placeholder {
  color: #838799;
}

.contact-page .form-input:focus,
.contact-page .form-select:focus,
.contact-page .form-textarea:focus {
  border-color: var(--gold);
}

.contact-page .phone-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid #c6c5c5;
  border-radius: 12px;
  overflow: hidden;
}

.contact-page .phone-prefix {
  padding: 14px 14px;
  font-size: 20px;
  color: #838799;
  font-family: 'DM Sans', sans-serif;
  border-right: 1px solid #c6c5c5;
  white-space: nowrap;
}

.contact-page .phone-wrap input {
  border: none;
  border-radius: 0;
  outline: none;
  flex: 1;
  padding: 14px 14px;
  font-size: 20px;
  font-family: 'DM Sans', sans-serif;
  color: #3e3e3e;
}

.contact-page .phone-wrap input::placeholder {
  color: #838799;
}

.contact-page .form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

.contact-page .form-textarea {
  resize: none;
  height: 120px;
}

.contact-page .btn-submit {
  display: block;
  margin: 0 auto;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 500;
  padding: 14px 0;
  width: 334px;
  cursor: pointer;
  transition: opacity .2s;
  letter-spacing: .3px;
}

.contact-page .btn-submit:hover {
  opacity: .85;
}

.contact-page .map-section {
  background: var(--bg);
  padding: 40px 80px 60px;
}

.contact-page .map-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 450px;
}

.contact-page .map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contact-page .map-popup {
  position: absolute;
  top: 24px;
  left: 28px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .15);
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 300px;
  z-index: 2;
}

.contact-page .map-popup img {
  width: 79px;
  height: 85px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.contact-page .map-popup-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  margin-bottom: 4px;
}

.contact-page .map-popup-rating {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #737373;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.contact-page .map-popup-rating .star {
  color: #facc15;
  font-size: 13px;
}

.contact-page .map-popup-open {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #12a223;
}

.contact-page .map-zoom {
  position: absolute;
  right: 20px;
  bottom: 50px;
  z-index: 2;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.contact-page .map-zoom button {
  background: #fff;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.contact-page .map-zoom button:hover {
  background: #f5f5f5;
}

.contact-page .map-zoom-divider {
  height: 1px;
  background: #ddd;
}

@media (max-width: 900px) {
  .contact-page .quote-section {
    grid-template-columns: 1fr;
  }

  .contact-page .quote-img {
    height: 260px;
  }

  .contact-page .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-page .navbar,
  .contact-page .map-section,
  .contact-page .contact-info-section,
  .contact-page .quote-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}