
    :root {
      --primary: #c53532;
      --primary-dark: #705f5c;
      --text: #222;
      --muted: #666;
      --bg: #f5f5f7;
      --border: #e2e2e6;
      --radius-lg: 14px;
      --radius-md: 10px;
      --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.07);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    body {
      background: #fff;
      color: var(--text);
      line-height: 1.6;
      scroll-behavior: smooth;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0.7rem 1.3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    /* ===========================
   MOBILE LEFT SLIDE MENU
    =========================== */

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.6rem;
      cursor: pointer;
    }

    

    /* Overlay */
    .mobile-menu-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.45);
      opacity: 0;
      visibility: hidden;
      transition: 0.3s ease;
      z-index: 998;
    }

    /* Side menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 280px;
      height: 100vh;
      background: #ffffff;
      padding: 1.5rem;
      transform: translateX(-100%);
      transition: 0.35s ease;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    /* Active states */
    .mobile-menu.open {
      transform: translateX(0);
    }

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

    /* Close button */
    .mobile-menu-close {
      background: none;
      border: none;
      font-size: 1.4rem;
      align-self: flex-end;
      cursor: pointer;
    }

    /* Menu links */
    .mobile-menu a {
      text-decoration: none;
      color: #111;
      font-weight: 500;
      padding: 0.6rem 0;
      border-bottom: 1px solid #eee;
    }

    /* CTA */
    .menu-cta {
      margin-top: auto;
      background: var(--accent, #c53532);
      color: #fff !important;
      text-align: center;
      padding: 0.8rem;
      border-radius: 6px;
      font-weight: 600;
    }


    .logo-img {
      background: #fff;
      padding: 4px;
    }

    .logo-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

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

    .logo-mark {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      /* background: radial-gradient(circle at 0 0, #f5e2bd, #c5892f); */
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2b1b08;
      font-weight: 700;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .logo-text-main {
      font-weight: 650;
      letter-spacing: 0.04em;
      font-size: 1rem;
      text-transform: uppercase;
    }

    .logo-text-sub {
      font-size: 0.72rem;
      color: var(--muted);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      font-size: 0.9rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .nav-links a {
      padding-bottom: 0.2rem;
      border-bottom: 2px solid transparent;
      color: #333;
      cursor: pointer;
    }

    .nav-links a.active {
      border-color: var(--primary);
      color: var(--primary-dark);
    }

    .nav-links a:hover {
      color: var(--primary-dark);
    }

    .nav-cta {
      padding: 0.5rem 1rem;
      border-radius: 999px;
      border: 1px solid var(--primary);
      background: #fff7eb;
      color: var(--primary-dark);
      font-size: 0.83rem;
      font-weight: 500;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    main {
      max-width: 1180px;
      margin: 0 auto;
      padding: 1.8rem 1.3rem 3rem;
    }

    section {
      scroll-margin-top: 80px;
    }

    /* HERO */

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: center;
      padding: 1.5rem 0 2.5rem;
    }

    /* HOME IMAGE SECTIONS */

.home-gallery,
.home-production {
  padding: 2.5rem 0 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #f9fafb;
}

.gallery-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.gallery-text {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Production images */

.production-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.production-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.production-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

/* MOBILE ACCORDION SPECS */
.accordion-specs {
  display: none;
}

.accordion-specs details {
  border: 1px solid #e2e2e6;
  border-radius: 10px;
  margin-bottom: 0.8rem;
  background: #fff;
}

.accordion-specs summary {
  padding: 0.9rem 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.accordion-specs summary::marker {
  display: none;
}

.accordion-content {
  padding: 0.9rem 1rem;
  border-top: 1px solid #e2e2e6;
}

.accordion-content ul {
  padding-left: 1rem;
  font-size: 0.85rem;
}

.accordion-content li {
  margin-bottom: 0.4rem;
}

.accordion-img {
  width: 100%;
  max-width: 220px;
  display: block;
  margin: 0 auto 0.8rem;
  border-radius: 8px;
  border: 1px solid #e2e2e6;
}

@media (max-width: 768px) {
  .table-wrapper {
    display: none;
  }

  .accordion-specs {
    display: block;
  }
}

.production-caption {
  padding: 0.6rem 0.8rem 0.8rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* responsive tweaks */
@media (max-width: 900px) {
  .gallery-grid,
  .production-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .gallery-grid,
  .production-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


    /* TOP BANNER */

.hero-banner {
  position: relative;
  margin: 1.5rem 0 2rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  background: #0f172a;
}

.hero-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.75), rgba(0,0,0,0.05));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.8rem 2.2rem;
  color: #f9fafb;
}

.hero-banner-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.35rem;
}

.hero-banner-title {
  font-size: 1.9rem;
  font-weight: 650;
  margin-bottom: 0.4rem;
}

.hero-banner-title span {
  color: #facc15;
}

.hero-banner-text {
  font-size: 0.92rem;
  opacity: 0.9;
  max-width: 30rem;
  margin-bottom: 0.8rem;
}

.hero-banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-banner-tag {
  font-size: 0.75rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(248, 250, 252, 0.3);
}

/* smaller height on mobile */
@media (max-width: 720px) {
  .hero-banner img {
    height: 230px;
  }
  .hero-banner-overlay {
    padding: 1.2rem 1.4rem;
  }
  .hero-banner-title {
    font-size: 1.5rem;
  }
}


    .hero-kicker {
      text-transform: uppercase;
      font-size: 0.8rem;
      letter-spacing: 0.14em;
      color: var(--primary-dark);
      margin-bottom: 0.5rem;
    }

    .hero-title {
      font-size: 2.4rem;
      line-height: 1.1;
      margin-bottom: 0.8rem;
    }

    /* SCROLL TO TOP BUTTON */
#scrollTopBtn {
  position: fixed;
  right: 18px;
  bottom: 90px; /* above WhatsApp button */
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #f0a53b);
  color: #fff;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(197, 137, 47, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 150;
}

#scrollTopBtn:hover {
  transform: translateY(0) scale(1.05);
  box-shadow: 0 14px 30px rgba(197, 137, 47, 0.6);
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 720px) {
  #scrollTopBtn {
    right: 14px;
    bottom: 85px;
  }
}


    .hero-title span {
      color: var(--primary-dark);
    }

    .hero-text {
      font-size: 0.98rem;
      color: var(--muted);
      margin-bottom: 1.1rem;
      max-width: 36rem;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-bottom: 1.5rem;
    }

    .badge {
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      font-size: 0.75rem;
      background: #fff;
      color: #555;
    }

    .badge-gold {
      border-color: rgba(197, 137, 47, 0.4);
      background: #fff6e5;
      color: var(--primary-dark);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
    }

    .btn {
      padding: 0.72rem 1.2rem;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 0.9rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), #f0a53b);
      color: #fff;
      box-shadow: 0 10px 25px rgba(197, 137, 47, 0.35);
    }

    .btn-outline {
      border-color: var(--border);
      background: #fff;
      color: #444;
    }

    .hero-media {
      background: var(--bg);
      border-radius: var(--radius-lg);
      padding: 0.7rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--border);
    }

    .hero-media-inner {
      position: relative;
      border-radius: calc(var(--radius-lg) - 4px);
      overflow: hidden;
    }

    .hero-media-inner img {
      width: 100%;
      display: block;
      height: 320px;
      object-fit: cover;
    }

    .hero-label {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: rgba(0,0,0,0.7);
      color: #fff;
      padding: 0.4rem 0.7rem;
      border-radius: 999px;
      font-size: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }

    /* GENERIC SECTIONS */

    .section-head {
      margin-bottom: 1.7rem;
    }

    .section-kicker {
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--primary-dark);
      margin-bottom: 0.25rem;
    }

    .section-title {
      font-size: 1.6rem;
      margin-bottom: 0.3rem;
    }

    .section-subtitle {
      color: var(--muted);
      font-size: 0.96rem;
      max-width: 40rem;
    }

    .grid {
      display: grid;
      gap: 1.4rem;
    }

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

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

    .card {
      background: #fff;
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      padding: 1rem;
    }

    .card-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 0.5rem;
    }

    .card-title {
      font-size: 0.98rem;
      font-weight: 600;
    }

    .card-tag {
      font-size: 0.75rem;
      padding: 0.18rem 0.6rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: #f8fafc;
      color: #555;
    }

    .card-body {
      font-size: 0.88rem;
      color: var(--muted);
    }

    .chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.6rem;
    }

    .chip {
      font-size: 0.72rem;
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      background: #f4f4f6;
      border: 1px solid var(--border);
    }

    .img-frame {
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--bg);
      margin-bottom: 0.7rem;
    }

    .img-frame img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    /* WHY US */

    .icon-badge {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: #fff6e5;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    /* TABLE */

    .table-wrapper {
      border-radius: 12px;
      border: 1px solid var(--border);
      overflow: hidden;
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.86rem;
    }

    th, td {
      padding: 0.65rem 0.8rem;
      border-bottom: 1px solid var(--border);
      text-align: left;
    }

    th {
      background: #f8fafc;
      font-weight: 600;
    }

    tbody tr:nth-child(even) {
      background: #fafafa;
    }

    .table-thumb {
      width: 54px;
      height: 54px;
      object-fit: contain;
      border-radius: 8px;
      border: 1px solid #e2e2e6;
      background: #fff;
      cursor: zoom-in;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .table-thumb:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }

    /* IMAGE HOVER + PREVIEW MODAL */

/* hover zoom */
.preview-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.preview-wrap img.preview-img {
  transition: transform 0.35s ease, filter 0.35s ease;
  cursor: zoom-in;
}

.preview-wrap:hover img.preview-img {
  transform: scale(1.05);
  filter: brightness(1.07);
}

/* small search icon on hover */
.preview-icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: #f9fafb;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  opacity: 0;
  transform: translateY(4px);
  transition: 0.25s ease-out;
  pointer-events: none;
}

.preview-wrap:hover .preview-icon {
  opacity: 1;
  transform: translateY(0);
}

/* full-screen modal */
.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 400;
}

.image-modal.open {
  display: flex;
}

.image-modal-inner {
  max-width: 90vw;
  max-height: 90vh;
  background: #0b0b0f;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.7);
  position: relative;
}

.image-modal-inner img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.image-modal-caption {
  padding: 0.6rem 0.9rem;
  font-size: 0.82rem;
  color: #e5e7eb;
  border-top: 1px solid rgba(55, 65, 81, 0.7);
}

.image-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 999px;
  color: #f9fafb;
  border: none;
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
  cursor: pointer;
}
/* 
specification table */
.table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e2e2e6;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

th, td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid #e2e2e6;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f8fafc;
  font-weight: 600;
  white-space: nowrap;
}

tbody tr:nth-child(even) {
  background: #fafafa;
}


    /* CONTACT */

    .contact-card {
      padding: 1.2rem;
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.9rem;
      margin-bottom: 0.9rem;
    }

    label {
      display: block;
      font-size: 0.8rem;
      margin-bottom: 0.18rem;
      color: #555;
    }

    input, textarea, select {
      width: 100%;
      padding: 0.5rem 0.6rem;
      border-radius: 8px;
      border: 1px solid var(--border);
      font-size: 0.86rem;
      outline: none;
    }

    input:focus, textarea:focus, select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 1px rgba(197, 137, 47, 0.25);
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    .contact-info p {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 0.5rem;
    }

    .contact-info strong {
      color: #333;
    }

    .footer {
      border-top: 1px solid var(--border);
      padding: 1.1rem;
      font-size: 0.8rem;
      color: var(--muted);
      text-align: center;
      margin-top: 2.5rem;
    }

    .footer {
  background: linear-gradient(180deg, #fff, #fff7eb);
  border-top: 1px solid rgba(197, 137, 47, 0.35);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.4rem 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff6e5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197, 137, 47, 0.4);
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-dark);
}

.footer-social a:hover svg {
  fill: #fff;
}

.footer-credentials {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.9rem 1.3rem 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px dashed rgba(197, 137, 47, 0.35);
  flex-wrap: wrap;
}

.cred-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
  display: block;
}

.footer-certifications,
.footer-markets {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* CERT ICONS */
.cert-icons,
.flag-icons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cert-icons img {
  height: 34px;
  padding: 4px 6px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(197, 137, 47, 0.4);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* FLAG ICONS */
.flag-icons img {
  height: 22px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

/* MOBILE */
@media (max-width: 720px) {
  .footer-credentials {
    flex-direction: column;
    text-align: center;
  }

  .cert-icons,
  .flag-icons {
    justify-content: center;
  }
}

.export-badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(197, 137, 47, 0.4);
  color: var(--primary-dark);
  width: fit-content;
}

.footer-right {
  text-align: right;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-address {
  color: inherit;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-address:hover {
  color: var(--primary-dark);
}

.footer-contact {
  display: flex;
  gap: 0.9rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-contact a {
  font-size: 0.85rem;
  color: var(--primary-dark);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(197, 137, 47, 0.25);
  text-align: center;
  padding: 0.7rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* MOBILE */
@media (max-width: 720px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .footer-contact {
    justify-content: center;
  }

  .export-badge {
    margin: 0 auto;
  }
}


    /* WhatsApp FAB */

    .wa-fab {
      position: fixed;
      right: 16px;
      bottom: 18px;
      width: 54px;
      height: 54px;
      border-radius: 999px;
      background: #25d366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 24px rgba(0,0,0,0.25);
      cursor: pointer;
      z-index: 200;
    }

    .wa-fab svg {
      width: 26px;
      height: 26px;
      fill: #fff;
    }

    .wa-tip {
      position: fixed;
      right: 16px;
      bottom: 80px;
      background: #111827;
      color: #f9fafb;
      padding: 0.4rem 0.7rem;
      border-radius: 8px;
      font-size: 0.78rem;
      box-shadow: 0 10px 24px rgba(0,0,0,0.25);
      opacity: 0;
      transform: translateY(6px);
      pointer-events: none;
      transition: 0.18s ease-out;
    }

    .wa-tip.show {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    @media (max-width: 720px) {
      .nav-cta {
        width: 100%;
        justify-content: center;
      }
    }

    /* RESPONSIVE */

    @media (max-width: 900px) {
      .hero {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-media {
        order: -1;
      }
      .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 720px) {
      .nav {
        padding-inline: 1rem;
      }
      .nav-links {
        gap: 0.9rem;
        font-size: 0.86rem;
      }
      .hero-title {
        font-size: 2rem;
      }
      .grid-3,
      .grid-2 {
        grid-template-columns: minmax(0, 1fr);
      }
      .form-row {
        grid-template-columns: minmax(0, 1fr);
      }
      main {
        padding-inline: 1rem;
      }
    }

    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      .menu-toggle {
        display: block;
      }
    }
    /* PULSE ANIMATION */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 137, 47, 0.7);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(197, 137, 47, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(197, 137, 47, 0);
  }
}

#scrollTopBtn.pulse {
  animation: pulseGlow 1.6s ease-out 2;
}