

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #05060a;
  --bg-2: #080a10;

  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);

  /* Bright orange */
  --orange: #ff5a00;
  --orange-2: #ff8a00;
  --orange-3: #ffb000;

  --glass: rgba(255, 255, 255, 0.06);
  --glass-2: rgba(255, 255, 255, 0.08);

  --stroke: rgba(255, 255, 255, 0.12);
  --stroke-2: rgba(255, 255, 255, 0.16);

  --shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.35);

  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --max: 1150px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;

  background: radial-gradient(
      900px 520px at 70% -10%,
      rgba(255, 90, 0, 0.22),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 10% 10%,
      rgba(255, 138, 0, 0.16),
      transparent 55%
    ),
    radial-gradient(
      700px 420px at 50% 80%,
      rgba(255, 176, 0, 0.1),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg), #03040a 60%, #02030a);
}

section[id] {
  scroll-margin-top: 95px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- Layout ---------- */
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.center {
  text-align: center;
}

.mt-24 {
  margin-top: 24px;
}

.muted {
  color: var(--muted);
}

/* ---------- Top Glow Line ---------- */
.top-line {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--orange),
    var(--orange-2),
    var(--orange-3),
    transparent
  );
  filter: drop-shadow(0 0 18px rgba(255, 90, 0, 0.85));
  opacity: 0.95;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(5, 6, 10, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  height: 95px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.55));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__links a:not(.btn) {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease,
    box-shadow 0.18s ease;
}

.nav__links a:not(.btn):hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}


.nav__toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 10px 12px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);

  /* force vertical stack */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.88);
  margin: 0; /* important */
  border-radius: 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    border-color 0.18s ease, filter 0.18s ease;
  user-select: none;
  white-space: nowrap;
}

.btn--small {
  padding: 10px 14px;
  font-size: 0.92rem;
}

.btn--wide {
  width: 100%;
  padding: 14px 16px;
}

.btn--primary {
  color: #160800;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 18px 40px rgba(255, 90, 0, 0.28),
    0 0 0 6px rgba(255, 90, 0, 0.1);
}

.btn--primary:hover {
  transform: translateY(-2px);
  filter: saturate(1.1);
  box-shadow: 0 22px 55px rgba(255, 90, 0, 0.35),
    0 0 0 8px rgba(255, 138, 0, 0.12);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 90, 0, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.btn--dark {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
}

.btn--dark:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 0, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 92px 0 66px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      900px 480px at 50% 0%,
      rgba(255, 90, 0, 0.28),
      transparent 60%
    ),
    radial-gradient(
      800px 460px at 15% 30%,
      rgba(255, 138, 0, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 55%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
}

.hero__center {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 90, 0, 0.45);
  background: rgba(255, 90, 0, 0.14);
  color: #ffd0b8;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-size: 0.78rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.hero__title {
  margin: 18px 0 10px;
  font-size: clamp(2.2rem, 4.3vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.8px;
}

.hero__sub {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero__actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}


.hero__meta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  flex-wrap: nowrap;
}

.hero__meta p {
  margin: 0;
}

.dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 90, 0, 0.18);
}

/* ---------- Sections ---------- */
.section {
  padding: 78px 0;
  position: relative;
}

.section--dark {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section--texture {
  background: radial-gradient(
      900px 520px at 70% 10%,
      rgba(255, 90, 0, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg-2), #050610);
  overflow: hidden;
}

.section--texture .overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 10px
  );
  opacity: 0.22;
  pointer-events: none;
}

.section__head {
  margin-bottom: 34px;
}

.section__head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  letter-spacing: -0.5px;
}

.section__head p {
  margin: 10px auto 0;
  max-width: 740px;
  color: var(--muted);
}


.tiny-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 34px rgba(255, 90, 0, 0.18);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.tiny-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* ---------- Grids ---------- */
.grid {
  display: grid;
  gap: 16px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ---------- Cards ---------- */
.card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease,
    background 0.18s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 90, 0, 0.18),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 90, 0, 0.4);
  background: linear-gradient(
    180deg,
    rgba(255, 90, 0, 0.1),
    rgba(255, 255, 255, 0.03)
  );
}

.card:hover::before {
  opacity: 1;
}


.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  box-shadow: 0 10px 30px rgba(255, 90, 0, 0.18);
}

.card__icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card--soft {
  background: rgba(255, 255, 255, 0.05);
}

.quote {
  margin: 0;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.who {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 650;
}

/* ---------- Range (Products) ---------- */
.range {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.range:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 90, 0, 0.42);
}

.range__top {
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.range__img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.06);
}

.range__body {
  padding: 18px;
}

.range__body h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
}

.range__body p {
  margin: 0;
  color: var(--muted);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery__item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-soft);
  transform: translateZ(0);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.gallery__item img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.08);
}

.gallery__item:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(255, 90, 0, 0.42);
}

/* ---------- Quote (Form) ---------- */
.quote {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, #06070c, #03040a);
}

.quote__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      980px 460px at 50% 0%,
      rgba(255, 90, 0, 0.3),
      transparent 62%
    ),
    radial-gradient(
      800px 420px at 20% 55%,
      rgba(255, 138, 0, 0.16),
      transparent 60%
    );
  pointer-events: none;
}

.quote__inner {
  position: relative;
}


.wa-badge {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 34px rgba(255, 90, 0, 0.18);
}

.form {
  margin: 26px auto 0;
  max-width: 880px;
  padding: 20px;
  border-radius: calc(var(--radius-xl) + 6px);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field label {
  display: block;
  font-weight: 850;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 8px;
}

.field label span {
  color: var(--orange-2);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.92);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 90, 0, 0.62);
  box-shadow: 0 0 0 7px rgba(255, 90, 0, 0.16);
  background: rgba(0, 0, 0, 0.45);
}

.form__note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.95rem;
  text-align: center;
}


#items {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.quote-item {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.quote-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.quote-item__title {
  margin: 0;
  font-weight: 850;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.92);
}


.btn--tiny {
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 0.9rem;
}

/* ---------- Footer ---------- */
.footer {
  padding: 64px 0 20px;
  background: linear-gradient(180deg, #04050a, #02030a);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
  padding-bottom: 22px;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.72);
  margin: 10px 0 0;
}

.footer__mark {
  height: 44px;
  width: auto;
  opacity: 0.95;
}

.footer__col h4 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.footer__col a,
.footer__col p {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer__col a:hover {
  color: #fff;
}


.social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social a {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 34px rgba(255, 90, 0, 0.16);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.social a svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.social a:hover {
  transform: translateY(-2px);
  filter: saturate(1.1);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer__links {
  display: flex;
  gap: 14px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.62);
}

.footer__links a:hover {
  color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border-radius: var(--radius-xl);
    background: rgba(5, 6, 10, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a:not(.btn) {
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    padding: 76px 0 50px;
  }

  /* ✅ Mobile hero meta  */
  .hero__meta {
    justify-content: center;
    align-items: flex-start; 
  }

  .hero__meta p {
    text-align: center;
    line-height: 1.45;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .grid--3 {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery__item img {
    height: 210px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand__logo {
    height: 70px;
  }
}

/* ---------- Full Gallery page ---------- */
.gallery--full .gallery__item {
  width: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
}

.lightbox.is-open {
  display: block;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.lightbox__panel {
  position: absolute;
  inset: 22px;
  display: grid;
  place-items: center;
}

.lightbox__img {
  max-width: min(1100px, 92vw);
  max-height: 85vh;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.7);
  background: rgba(255, 255, 255, 0.04);
}

.lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.45);
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease,
    background 0.18s ease;
}

.lightbox__close:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 0, 0.6);
  background: rgba(255, 90, 0, 0.14);
}

/* =========================
      TESTIMONIALS
   ========================= */

#testimonials .grid {
  gap: 16px;
  align-items: stretch;
}

#testimonials .card--soft {
  height: auto !important;
  min-height: 0 !important;
  padding: 18px 18px !important;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);

  display: flex !important;
  flex-direction: column;
  justify-content: flex-start !important;
  text-align: left;
}

#testimonials .quote {
  margin: 0 0 12px 0 !important;
  padding: 0 !important;

  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.9);

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

#testimonials .who {
  margin: 0 !important;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  font-size: 0.85rem !important;
  opacity: 0.85;
}
