/* =========================================================
   GATE LOOK CRAFT — Hibza Sterling Interiors Pvt. Ltd.
   Common stylesheet — used across all pages
   ========================================================= */

:root {
  /* ---- Brand palette ---- */
  --clr-dark: #14171C;
  /* primary charcoal */
  --clr-dark-2: #1E232B;
  /* secondary panel dark */
  --clr-dark-3: #262C35;
  /* card on dark */
  --clr-cream: #F7F4EF;
  /* primary light bg */
  --clr-cream-2: #EFEAE1;
  /* secondary light bg */
  --clr-cream-3: #E7E0D2;
  --clr-gold: #C9A15A;
  /* brass / bronze accent */
  --clr-gold-dark: #A87F3C;
  --clr-gold-light: #E4C88A;
  --clr-text-dark: #20242B;
  --clr-text-light: #F2EFE9;
  --clr-muted: #6B7280;
  --clr-muted-light: #B9BCC2;

  --font-display: 'Jost', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-soft: 0 20px 45px -20px rgba(20, 23, 28, 0.35);
  --shadow-gold: 0 15px 35px -12px rgba(201, 161, 90, 0.45);

  --transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

/* =========================== BASE =========================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text-dark);
  background: var(--clr-cream);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--clr-dark);
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 0;
}

p {
  color: var(--clr-muted);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--clr-gold);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-sm {
  padding: 70px 0;
}

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

  .section-sm {
    padding: 48px 0;
  }
}

.bg-dark-section {
  background: var(--clr-dark);
  color: var(--clr-text-light);
}

.bg-dark-section p {
  color: var(--clr-muted-light);
}

.bg-dark-section h1,
.bg-dark-section h2,
.bg-dark-section h3,
.bg-dark-section h4 {
  color: var(--clr-text-light);
}

.bg-cream-2 {
  background: var(--clr-cream-2);
}

.bg-cream-3 {
  background: var(--clr-cream-3);
}

.container-xl {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Eyebrow label with gate-bar tick mark (signature motif) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clr-gold-dark);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--clr-gold);
  position: relative;
}

.eyebrow::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--clr-gold);
  transform: rotate(45deg);
}

.bg-dark-section .eyebrow {
  color: var(--clr-gold-light);
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.18;
  margin-bottom: 18px;
}

.section-sub {
  max-width: 640px;
  color: var(--clr-muted);
  margin-bottom: 0;
}

.bg-dark-section .section-sub {
  color: var(--clr-muted-light);
}

/* Gate-bar decorative divider — used sparingly */
.bar-divider {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 26px;
  margin: 0 0 20px;
}

.bar-divider span {
  width: 3px;
  background: var(--clr-gold);
  display: block;
}

.bar-divider span:nth-child(1) {
  height: 10px;
}

.bar-divider span:nth-child(2) {
  height: 18px;
}

.bar-divider span:nth-child(3) {
  height: 26px;
}

.bar-divider span:nth-child(4) {
  height: 18px;
}

.bar-divider span:nth-child(5) {
  height: 10px;
}

/* =========================== BUTTONS =========================== */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .93rem;
  letter-spacing: .03em;
  border-radius: var(--radius-sm);
  padding: 13px 30px;
  border: none;
  transition: var(--transition);
}

.btn-gold {
  background: var(--clr-gold);
  color: var(--clr-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--clr-gold-dark);
  color: #fff;
  transform: translateY(-3px);
}

.btn-outline-light-custom {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .55);
  color: var(--clr-text-light);
}

.btn-outline-light-custom:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-dark);
  transform: translateY(-3px);
}

.btn-outline-dark-custom {
  background: transparent;
  border: 1.5px solid rgba(20, 23, 28, .25);
  color: var(--clr-dark);
}

.btn-outline-dark-custom:hover {
  background: var(--clr-dark);
  border-color: var(--clr-dark);
  color: var(--clr-gold-light);
  transform: translateY(-3px);
}

.btn-sm-pill {
  border-radius: 40px;
  padding: 9px 22px;
  font-size: .82rem;
}

/* =========================== NAVBAR =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  transition: var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(20, 23, 28, .94);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand-custom img {
  height: 70px;
  width: auto;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--clr-text-light);
  line-height: 1;
}

.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .58rem;
  letter-spacing: .28em;
  color: var(--clr-gold-light);
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li a {
  display: block;
  padding: 10px 18px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--clr-text-light);
  position: relative;
}

.main-nav li a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 2px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.main-nav li a:hover::after,
.main-nav li a.active::after {
  transform: scaleX(1);
}

.main-nav li a.active,
.main-nav li a:hover {
  color: var(--clr-gold-light);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  color: var(--clr-text-light);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-phone strong {
  color: var(--clr-gold-light);
}

/* Hamburger */
.nav-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .35);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--clr-text-light);
  display: block;
  transition: var(--transition);
}

.nav-toggle:hover {
  border-color: var(--clr-gold);
}

/* Slide-in mobile menu (right side) */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 14, .55);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1200;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 86vw);
  background: var(--clr-dark);
  border-left: 1px solid rgba(201, 161, 90, .25);
  z-index: 1300;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  padding: 34px 30px;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  margin-left: auto;
}

.mobile-menu-close:hover {
  background: var(--clr-gold);
  color: var(--clr-dark);
  border-color: var(--clr-gold);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 36px 0;
}

.mobile-menu ul li {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-menu ul li a {
  display: block;
  padding: 16px 4px;
  color: var(--clr-text-light);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .02em;
}

.mobile-menu ul li a:hover {
  color: var(--clr-gold-light);
  padding-left: 12px;
}

.mobile-menu .mm-contact {
  color: var(--clr-muted-light);
  font-size: .88rem;
}

.mobile-menu .mm-contact a {
  color: var(--clr-gold-light);
}

.mobile-menu .mm-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.mobile-menu .mm-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.mobile-menu .mm-social a:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-dark);
}

body.menu-open {
  overflow: hidden;
}

/* =========================== HERO / BANNER =========================== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--clr-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 21%);
  background-blend-mode: overlay;
}
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 40px;
}

.hero-slide-content .eyebrow {
  color: var(--clr-gold-light);
}

.hero-slide-content h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 1.08;
  max-width: 780px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide-content p {
  color: rgba(255, 255, 255, .78);
  max-width: 520px;
  font-size: 1.05rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide-content .hero-btns {
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide.active .hero-slide-content h1 {
  animation: heroUp .9s .3s cubic-bezier(.4, 0, .2, 1) forwards;
}

.hero-slide.active .hero-slide-content p {
  animation: heroUp .9s .5s cubic-bezier(.4, 0, .2, 1) forwards;
}

.hero-slide.active .hero-slide-content .hero-btns {
  animation: heroUp .9s .7s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes heroUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gate reveal — signature intro animation, plays once on load */
.gate-reveal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  pointer-events: none;
}

.gate-leaf {
  width: 50%;
  height: 100%;
  background: var(--clr-dark);
  position: relative;
  overflow: hidden;
}

.gate-leaf::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background-image: repeating-linear-gradient(90deg, rgba(201, 161, 90, .55) 0 3px, transparent 3px 46px);
}

.gate-leaf.left {
  animation: openLeft 1.1s .35s cubic-bezier(.6, 0, .2, 1) forwards;
}

.gate-leaf.right {
  animation: openRight 1.1s .35s cubic-bezier(.6, 0, .2, 1) forwards;
}

@keyframes openLeft {
  to {
    transform: translateX(-100%);
  }
}

@keyframes openRight {
  to {
    transform: translateX(100%);
  }
}

.hero-nav-dots {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 12px;
}

.hero-nav-dots button {
  width: 34px;
  height: 4px;
  background: rgba(255, 255, 255, .35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.hero-nav-dots button.active {
  background: var(--clr-gold);
}

.hero-arrows {
  position: absolute;
  z-index: 5;
  bottom: 36px;
  right: 40px;
  display: flex;
  gap: 10px;
}

.hero-arrows button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero-arrows button:hover {
  background: var(--clr-gold);
  color: var(--clr-dark);
  border-color: var(--clr-gold);
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 40px;
  left: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  letter-spacing: .2em;
}

.scroll-cue .line {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, .4);
  overflow: hidden;
  position: relative;
}

.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--clr-gold);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  to {
    top: 100%;
  }
}

@media (max-width: 767px) {

  .hero-arrows,
  .scroll-cue {
    display: none;
  }
}

/* Page (inner) hero banner used on About/Products/Gallery/Contact */
.page-hero {
  position: relative;
  padding: 190px 0 100px;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 16, 20, .92), rgba(14, 16, 20, .68));
}

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

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.breadcrumb-custom {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin-top: 14px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
}

.breadcrumb-custom a {
  color: var(--clr-gold-light);
}

.breadcrumb-custom li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, .4);
}

.page-hero-bars {
  position: absolute;
  right: 6%;
  top: 0;
  bottom: 0;
  width: 120px;
  display: flex;
  gap: 8px;
  opacity: .5;
  z-index: 1;
}

.page-hero-bars span {
  width: 3px;
  height: 100%;
  background: linear-gradient(var(--clr-gold), transparent);
}

/* =========================== CARDS: SERVICES =========================== */
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 42px 32px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  border-bottom-color: var(--clr-gold);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--clr-cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--clr-gold-dark);
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--clr-gold);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}

.service-card h4 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: .92rem;
  margin-bottom: 0;
}

/* =========================== FEATURED PRODUCTS =========================== */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 100%;
  min-height: 380px;
  box-shadow: var(--shadow-soft);
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 16, 20, .9) 10%, rgba(14, 16, 20, .05) 60%);
}

.product-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 26px;
  color: #fff;
}

.product-card-body .cat {
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--clr-gold-light);
  text-transform: uppercase;
}

.product-card-body h5 {
  color: #fff;
  margin: 6px 0 10px;
  font-size: 1.2rem;
}

.product-card-body a,
.product-card-body>span:last-child {
  color: #fff;
  font-size: .84rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-card-body a i,
.product-card-body>span:last-child i {
  transition: var(--transition);
}

.product-card-body a:hover i {
  transform: translateX(5px);
}

.product-card-body a:hover {
  color: var(--clr-gold-light);
}

.product-card:hover .product-card-body>span:last-child {
  color: var(--clr-gold-light);
}

.product-card:hover .product-card-body>span:last-child i {
  transform: translateX(5px);
}

/* =========================== PROJECTS / PORTFOLIO =========================== */
.project-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.project-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform .6s ease;
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 23, 28, .68);
  display: flex;
  align-items: flex-end;
  padding: 26px;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay .cat {
  color: var(--clr-gold-light);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.project-overlay h5 {
  color: #fff;
  margin-top: 6px;
}

.project-overlay .zoom-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-gold);
  color: var(--clr-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================== TESTIMONIALS =========================== */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.testimonial-card .quote-icon {
  color: var(--clr-gold);
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--clr-text-dark);
  font-size: .98rem;
}

.testimonial-card .stars {
  color: var(--clr-gold);
  margin-bottom: 10px;
  font-size: .85rem;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.t-author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.t-author h6 {
  margin: 0;
  color: var(--clr-dark);
  font-size: .98rem;
}

.t-author span {
  font-size: .8rem;
  color: var(--clr-muted);
}

/* =========================== STATS STRIP =========================== */
.stats-strip {
  background: var(--clr-dark);
}

.stat-item {
  text-align: center;
  padding: 10px;
}

.stat-item .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--clr-gold);
  font-weight: 700;
}

.stat-item .lbl {
  color: var(--clr-muted-light);
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* =========================== CTA BAND =========================== */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(120deg, var(--clr-dark) 0%, #262c35 100%);
  padding: 60px 50px;
  color: #fff;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 161, 90, .35), transparent 70%);
}

.cta-band h3 {
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.cta-band p {
  color: var(--clr-muted-light);
}

/* =========================== FOOTER =========================== */
.site-footer {
  background: var(--clr-dark);
  color: var(--clr-muted-light);
  padding-top: 80px;
}

.site-footer h6 {
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: .05em;
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* .site-footer ul li {
  margin-bottom: 10px;
} */

.site-footer ul li a {
  color: var(--clr-muted-light);
  font-size: .92rem;
}

.site-footer ul li a:hover {
  color: var(--clr-gold-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 50px;
  padding: 22px 0;
  font-size: .85rem;
}

.footer-bottom a {
  color: var(--clr-gold-light);
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-dark);
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-contact-item i {
  color: var(--clr-gold);
  margin-top: 3px;
}

.footer-newsletter input {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  border-radius: 40px 0 0 40px;
  padding: 12px 20px;
  font-size: .88rem;
}

.footer-newsletter input:focus {
  outline: none;
  box-shadow: none;
  background: rgba(255, 255, 255, .1);
}

.footer-newsletter button {
  border-radius: 0 40px 40px 0;
}

/* =========================== STICKY CONTACT BUTTONS =========================== */
.sticky-actions {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sticky-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .3);
  position: relative;
}

.sticky-btn.call {
  background: var(--clr-gold-dark);
}

.sticky-btn.whatsapp {
  background: #25D366;
}

.sticky-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .5);
  animation: pulseRing 2.2s infinite;
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .45);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.sticky-btn:hover {
  transform: scale(1.08);
  color: #fff;
}

.sticky-label {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--clr-dark);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: .78rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sticky-btn:hover .sticky-label {
  opacity: 1;
  visibility: visible;
}

/* Back to top */
.back-to-top {
  position: fixed;
  left: 22px;
  bottom: 26px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-dark);
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--clr-gold);
  color: var(--clr-dark);
}

/* =========================== PRODUCT TABS (Products page) =========================== */
.product-tabs .nav-pills {
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.product-tabs .nav-link {
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .02em;
  color: var(--clr-dark);
  background: #fff;
  border: 1.5px solid var(--clr-cream-3);
  border-radius: 40px;
  padding: 13px 26px;
  transition: var(--transition);
}

.product-tabs .nav-link i {
  margin-right: 8px;
  color: var(--clr-gold-dark);
}

.product-tabs .nav-link.active,
.product-tabs .nav-link:hover {
  background: var(--clr-dark);
  color: #fff;
  border-color: var(--clr-dark);
}

.product-tabs .nav-link.active i,
.product-tabs .nav-link:hover i {
  color: var(--clr-gold);
}

.tab-intro {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

/* Masonry layout — handles images of any size/aspect ratio gracefully */
.gallery-masonry {
  column-count: 1;
  column-gap: 24px;
}

.gallery-masonry-item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  /* margin-bottom: 24px; */
  display: inline-block;
  width: 100%;
}

@media (min-width: 576px) {
  .gallery-masonry {
    column-count: 2;
  }
}

@media (min-width: 1200px) {
  .gallery-masonry {
    column-count: 4;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform .6s ease;
}

/* Inside the masonry gallery, let each image keep its own natural aspect ratio */
.gallery-masonry .gallery-item img {
  height: auto;
  object-fit: initial;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 23, 28, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .g-overlay {
  opacity: 1;
}

.gallery-item .g-overlay i {
  color: #fff;
  font-size: 1.6rem;
  border: 1px solid rgba(255, 255, 255, .6);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item .g-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-size: .82rem;
  letter-spacing: .05em;
  background: rgba(20, 23, 28, .55);
  padding: 5px 12px;
  border-radius: 20px;
}

/* Filter buttons (gallery) */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.filter-bar button {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 10px 22px;
  border-radius: 40px;
  border: 1.5px solid var(--clr-cream-3);
  background: #fff;
  color: var(--clr-dark);
  transition: var(--transition);
  cursor: pointer;
}

.filter-bar button.active,
.filter-bar button:hover {
  background: var(--clr-dark);
  color: #fff;
  border-color: var(--clr-dark);
}

/* Video cards */
.video-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.video-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.video-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 161, 90, .92);
  color: var(--clr-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.video-card .v-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .8), transparent);
  color: #fff;
  font-size: .9rem;
}

/* =========================== ABOUT PAGE =========================== */
.about-img-wrap {
  position: relative;
}

.about-img-wrap .float-card {
  position: absolute;
  bottom: -50px;
  right: -15px;
  background: var(--clr-dark);
  color: #fff;
  padding: 26px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  max-width: 230px;
}

.about-img-wrap .float-card .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--clr-gold);
}

@media (max-width:767px) {
  .about-img-wrap .float-card {
    right: 0;
    bottom: -20px;
    padding: 18px 20px;
  }
}

.value-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--clr-cream-3);
}

.value-item:last-child {
  border-bottom: none;
}

.value-item .vi-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 50%;
  background: var(--clr-cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold-dark);
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--clr-cream-3);
}

.timeline-item {
  position: relative;
  padding-bottom: 34px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clr-gold);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--clr-gold);
}

.timeline-item h6 {
  color: var(--clr-dark);
  margin-bottom: 6px;
}

.timeline-item .yr {
  color: var(--clr-gold-dark);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .05em;
}

/* Team */
.team-card {
  text-align: center;
}

.team-card .img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}

.team-card .img-wrap img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.team-card:hover .img-wrap img {
  transform: scale(1.06);
}

.team-card h5 {
  margin-bottom: 4px;
}

.team-card span {
  color: var(--clr-gold-dark);
  font-size: .85rem;
}

/* =========================== CONTACT PAGE =========================== */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  border-top: 3px solid var(--clr-gold);
}

.contact-info-card .ci-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--clr-cream-2);
  color: var(--clr-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.contact-form {
  background: #fff;
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1.5px solid var(--clr-cream-3);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: .92rem;
  background: var(--clr-cream);
  margin-bottom: 18px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(201, 161, 90, .18);
  background: #fff;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  line-height: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

/* =========================== MEGA MENU (desktop) =========================== */
.mega-dropdown {
  position: relative;
}

.mega-dropdown>a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-dropdown>a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: .62rem;
  margin-left: 2px;
  transition: var(--transition);
}

.mega-dropdown:hover>a::after,
.mega-dropdown.mega-open>a::after {
  transform: rotate(180deg);
}

.mega-menu {
  position: fixed;
  left: 50%;
  top: 78px;
  transform: translateX(-50%) translateY(10px);
  width: min(980px, 94vw);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .35);
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
  z-index: 1100;
}

.site-header.scrolled .mega-menu {
  top: 62px;
}

.mega-dropdown:hover .mega-menu,
.mega-dropdown.mega-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-col img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
  transition: transform .5s ease, filter .5s ease;
}

.mega-col:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.mega-col h6 {
  color: var(--clr-dark);
  font-family: var(--font-display);
  font-size: .9rem;
  margin-bottom: 10px;
  letter-spacing: .01em;
}

.mega-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-col ul li {
  margin-bottom: 8px;
}

.mega-col ul li a {
  color: var(--clr-muted);
  font-size: .83rem;
  display: inline-block;
}

.mega-col ul li a:hover {
  color: var(--clr-gold-dark);
  padding-left: 4px;
}

.mega-menu-footer {
  grid-column: 1 / -1;
  border-top: 1px solid var(--clr-cream-3);
  padding-top: 18px;
  text-align: center;
  margin-top: 4px;
}

@media (max-width: 1199px) {
  .mega-menu {
    grid-template-columns: repeat(3, 1fr);
    width: 92vw;
  }
}

/* Mobile submenu (slide-in menu) */
.mm-has-sub .mm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mm-sub-toggle {
  background: transparent;
  border: none;
  color: var(--clr-text-light);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
}

.mm-sub-toggle i {
  transition: var(--transition);
}

.mm-sub-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.mm-sublist {
  list-style: none;
  padding: 4px 0 10px 14px;
  margin: 0;
  border: none !important;
}

.mm-sublist li {
  border-bottom: none !important;
}

.mm-sublist .mm-cat-label {
  color: var(--clr-gold-light);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 10px 0 4px;
}

.mm-sublist a {
  padding: 7px 4px !important;
  font-size: .92rem !important;
  font-family: var(--font-body) !important;
  color: var(--clr-muted-light) !important;
}

.mm-sublist a:hover {
  color: var(--clr-gold-light) !important;
}

/* =========================== ABOUT VIDEO BLOCK (Home) =========================== */
.about-video-wrap {
  position: relative;
  padding: 10px 26px 30px 0;
}

.about-video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid #fff;
  outline: 2px solid var(--clr-cream-3);
}

.about-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 16, 20, .55), rgba(14, 16, 20, 0) 45%);
  z-index: 1;
}

.about-video-poster {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.about-video-frame:hover .about-video-poster {
  transform: scale(1.04);
}

.about-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  z-index: 2;
  background: rgba(201, 161, 90, .95);
  color: var(--clr-dark);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0 0 0 rgba(201, 161, 90, .55);
  animation: pulseRing 2.4s infinite;
  cursor: pointer;
}

.about-video-play:hover {
  background: var(--clr-gold-dark);
  color: #fff;
}

.about-video-chip {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
  font-size: .8rem;
  letter-spacing: .04em;
  background: rgba(20, 23, 28, .55);
  backdrop-filter: blur(4px);
  padding: 7px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-video-dots {
  position: absolute;
  right: -4px;
  bottom: -4px;
  display: grid;
  grid-template-columns: repeat(3, 10px);
  gap: 6px;
  z-index: -1;
}

.about-video-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-gold);
  opacity: .7;
}

.about-quote {
  border-left: 3px solid var(--clr-gold);
  padding: 4px 0 4px 18px;
  margin: 20px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--clr-dark);
}

.about-quote span {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .8rem;
  color: var(--clr-muted);
  margin-top: 8px;
}

@media (max-width: 767px) {
  .about-video-wrap {
    padding: 6px 14px 24px 0;
  }

  .about-video-poster {
    height: 320px;
  }
}

/* =========================== WHY CHOOSE US (bg image section) =========================== */
.why-choose-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  inset: 0;
 background: linear-gradient(120deg, rgb(14 16 20 / 58%) 25%, rgba(14, 16, 20, .75));
}

.why-choose-section .content {
  position: relative;
  z-index: 2;
}

.why-feature {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  height: 100%;
  backdrop-filter: blur(3px);
  transition: var(--transition);
}

.why-feature:hover {
  background: rgba(201, 161, 90, .12);
  border-color: var(--clr-gold);
  transform: translateY(-6px);
}

.why-feature .why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 161, 90, .16);
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.why-feature h5 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.why-feature p {
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .why-choose-section {
    background-attachment: scroll;
  }
}

/* =========================== PROCESS SECTION (bg image section) =========================== */
.process-section {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--clr-cream-2) 0%, rgba(247, 244, 239, .94) 100%);
}

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

.process-step {
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.process-step .step-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--clr-gold);
  color: var(--clr-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}

.process-step h5 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: .88rem;
  margin-bottom: 0;
}

.process-steps-row {
  position: relative;
}

.process-steps-row::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--clr-gold) 0 10px, transparent 10px 20px);
  z-index: 1;
}

@media (max-width: 767px) {
  .process-steps-row::before {
    display: none;
  }
}

.mega-menu-flat {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 10px;
}

.mega-col-flat {
  display: block;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.mega-col-flat img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: transform .5s ease, filter .5s ease;
}

.mega-col-flat h6 {
  color: var(--clr-dark);
  font-family: var(--font-display);
  font-size: .88rem;
  margin-bottom: 6px;
  letter-spacing: .01em;
}

.mega-col-flat:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.mega-col-flat:hover h6 {
  color: var(--clr-gold-dark);
}

@media (max-width: 1199px) {
  .mega-menu-flat {
    grid-template-columns: repeat(3, 1fr);
  }

  .mega-menu {
    grid-template-columns: none;
  }
}

/* =========================== ACCORDION THEME =========================== */
.accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--clr-dark);
  background: #fff;
  padding: 20px 24px;
}

.accordion-button:not(.collapsed) {
  background: var(--clr-dark);
  color: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(201, 161, 90, .25);
  border-color: var(--clr-gold);
}

.accordion-button::after {
  filter: none;
}

.accordion-body {
  font-size: .94rem;
  color: var(--clr-muted);
  padding: 22px 24px;
}

/* =========================== PRODUCT DETAIL PAGE =========================== */
.pd-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 16px;
}

.pd-main-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.pd-thumbs {
  display: flex;
  gap: 12px;
}

.pd-thumbs img {
  width: 100%;
  height: 82px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: .65;
  border: 2px solid transparent;
  transition: var(--transition);
}

.pd-thumbs img:hover,
.pd-thumbs img.active {
  opacity: 1;
  border-color: var(--clr-gold);
}

.pd-category-badge {
  display: inline-block;
  background: var(--clr-cream-2);
  color: var(--clr-gold-dark);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.pd-feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pd-feature-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: .95rem;
  color: var(--clr-text-dark);
}

.pd-feature-list li i {
  color: var(--clr-gold-dark);
  margin-top: 4px;
}

.pd-specs {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.pd-specs tr {
  border-bottom: 1px solid var(--clr-cream-3);
}

.pd-specs td {
  padding: 13px 6px;
  font-size: .92rem;
}

.pd-specs td:first-child {
  color: var(--clr-muted);
  width: 42%;
}

.pd-specs td:last-child {
  color: var(--clr-dark);
  font-weight: 500;
}

.pd-inquiry-box {
  background: var(--clr-dark);
  border-radius: var(--radius-lg);
  padding: 30px;
  color: #fff;
}

.pd-inquiry-box h5 {
  color: #fff;
}

.pd-inquiry-box p {
  color: var(--clr-muted-light);
  font-size: .88rem;
}

.btn-whatsapp-full {
  background: #25D366;
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-whatsapp-full:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
}

.btn-call-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.btn-call-outline:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-dark);
}

.related-product-card {
  text-align: center;
}

.related-product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.related-product-card:hover img {
  transform: translateY(-6px);
}

.related-product-card h6 {
  margin-bottom: 4px;
}

.related-product-card a {
  color: var(--clr-dark);
}

.related-product-card a:hover {
  color: var(--clr-gold-dark);
}

/* =========================== MISC UTIL =========================== */
.text-gold {
  color: var(--clr-gold-dark) !important;
}

.rounded-xl {
  border-radius: var(--radius-lg) !important;
}

.shadow-soft {
  box-shadow: var(--shadow-soft) !important;
}

.badge-gold {
  background: var(--clr-gold);
  color: #fff;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: .72rem;
  letter-spacing: .06em;
}

/* AOS-like fade utility fallback (in case AOS CDN unavailable) */
[data-aos] {
  opacity: 1;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--clr-dark);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  font-family: var(--font-display);
  color: var(--clr-gold);
  font-size: 1.1rem;
  letter-spacing: .3em;
  position: relative;
}

.loader-bars {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  justify-content: center;
}

.loader-bars span {
  width: 4px;
  height: 28px;
  background: var(--clr-gold);
  animation: loaderBar 1s ease-in-out infinite;
}

.loader-bars span:nth-child(2) {
  animation-delay: .1s;
}

.loader-bars span:nth-child(3) {
  animation-delay: .2s;
}

.loader-bars span:nth-child(4) {
  animation-delay: .3s;
}

@keyframes loaderBar {

  0%,
  100% {
    transform: scaleY(.4);
  }

  50% {
    transform: scaleY(1);
  }
}

@media (max-width: 991px) {

  .main-nav,
  .header-cta-group .header-phone,
  .header-cta-group .btn {
    display: none;
  }
}


/* Custom Styles */

.video-card{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    cursor:pointer;
}

.video-thumb{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:70px;
    height:70px;
    background:rgba(0,0,0,.55);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}