/* =========================================================
   style.css — Full replacement (mobile-first)
   - Fixed header with right-side mobile toggle
   - Mobile-first hero and form centered on small screens
   - Responsive product grid and constrained lightbox
   - Accessible modal, nav, and keyboard support
   - Solid dark royal red Inquire CTA and dark royal green WhatsApp
   ========================================================= */

/* -------------------------
   Root variables
   ------------------------- */
:root{
  --primary: #c49b63;
  --primary-dark: #a37d4a;
  --dark: #121212;
  --light: #ffffff;

  /* WhatsApp (dark royal green) */
  --wa-green: #0b6b3a;
  --wa-green-dark: #09562f;

  /* Inquire button (dark royal red) */
  --inquire-red: #7a0f1a;
  --inquire-red-dark: #5e0b14;
  --inquire-text: #ffffff;

  --transition: all .22s ease;
  --container-width: 1200px;
  --header-h-desktop: 72px;
  --header-h-mobile: 64px;
  --max-product-img-h: 420px;
  --focus-ring: 3px solid rgba(196,155,99,0.14);
}

/* -------------------------
   Global reset & layout
   ------------------------- */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
html{font-family:'Rubik',system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial}
body{
  background:var(--dark);
  color:var(--light);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
  padding-top:var(--header-h-desktop);
  -webkit-text-size-adjust:100%;
}
.container{
  max-width:var(--container-width);
  width:100%;
  margin:0 auto;
  padding:0 20px;
}
img{max-width:100%;height:auto;display:block}

/* -------------------------
   Header (fixed) — toggle on right for mobile
   ------------------------- */
.lp-header{
  position:fixed;
  top:0;left:0;right:0;
  height:var(--header-h-desktop);
  z-index:2200;
  display:flex;
  align-items:center;
  background:linear-gradient(180deg, rgba(6,6,6,0.94), rgba(0,0,0,0.98));
  border-bottom:2px solid rgba(196,155,99,0.08);
  padding:0 18px;
  box-shadow:0 6px 18px rgba(0,0,0,0.45);
}
.lp-header .container{display:flex;align-items:center;justify-content:space-between;gap:12px;width:100%}

/* Logo */
.logo-link{display:inline-flex;align-items:center;height:100%}
.logo{max-height:56px;height:auto;width:auto;display:block;object-fit:contain;vertical-align:middle;transition:opacity .18s ease}
.logo-link:focus .logo,.logo-link:hover .logo{opacity:.98;outline:none}

/* Nav & CTAs */
.main-nav{display:flex;align-items:center;gap:12px}
.nav-list{display:flex;gap:18px;list-style:none;margin:0;padding:0}
.nav-link{
  color:#e6e6e6;text-decoration:none;font-weight:700;font-size:.95rem;
  padding:8px 12px;border-radius:10px;transition:var(--transition);
}
.nav-link:focus,.nav-link:hover{outline:none;color:var(--light);background:rgba(255,255,255,0.03)}
.nav-link:focus-visible{box-shadow:var(--focus-ring);border-radius:8px}

/* Mobile toggle (hidden on desktop) */
.nav-toggle{
  display:none;
  background:transparent;border:none;width:48px;height:48px;border-radius:10px;cursor:pointer;
  align-items:center;justify-content:center;padding:6px;margin-left:auto;
}
.hamburger{width:22px;height:2px;background:#fff;position:relative;display:inline-block}
.hamburger::before,.hamburger::after{content:"";position:absolute;left:0;width:22px;height:2px;background:#fff}
.hamburger::before{top:-7px}.hamburger::after{top:7px}

/* Header CTAs */
.header-ctas{display:flex;gap:10px;align-items:center}
.cta{display:inline-flex;align-items:center;gap:10px;padding:10px 14px;border-radius:999px;color:#fff;text-decoration:none;font-weight:800;font-size:.95rem;box-shadow:0 10px 30px rgba(0,0,0,0.45);transition:transform .18s ease,box-shadow .18s ease}
.cta-call{background:linear-gradient(90deg,var(--primary),var(--primary-dark));color:#fff}

/* WhatsApp header CTA uses dark royal green */
.cta-wa{
  background:var(--wa-green);
  color:#fff;
  border:1px solid rgba(0,0,0,0.12);
  box-shadow:0 10px 30px rgba(11,107,58,0.12);
}
.cta-wa:hover{background:var(--wa-green-dark);transform:translateY(-2px)}
.cta:focus-visible{box-shadow:var(--focus-ring)}

/* -------------------------
   Hero / Banner
   ------------------------- */
.hero{
  position:relative;
  padding:56px 0;
  min-height:520px;
  display:flex;
  align-items:center;
  background:linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)), url('assets/images/landing-header-bg.jpg') center/cover no-repeat;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:36px;
  align-items:center;
  width:100%;
}
.hero-text{max-width:720px}
.hero-text h1{font-size:3rem;line-height:1.05;margin-bottom:18px;color:var(--primary);text-transform:uppercase;font-weight:800}
.hero-text p{font-size:1.05rem;margin-bottom:18px;color:#d0d0d0}

/* Trust tags (no bullets) */
.trust-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-tags li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  color: #d0d0d0;
}
.trust-tags li i { color: var(--primary); }

/* Hero form */
.hero-form-container{
  width:100%;
  max-width:420px;
  background:rgba(20,20,20,0.82);
  color:var(--light);
  border-radius:12px;
  padding:18px;
  box-shadow:0 18px 40px rgba(0,0,0,0.55);
  border:1px solid rgba(255,255,255,0.03);
  z-index:1200;
  box-sizing:border-box;
}
.hero-form-container h3{margin-bottom:12px;text-align:center;font-size:1.25rem;color:var(--light)}
.instant-form input,.instant-form textarea{width:100%;padding:12px;margin-bottom:10px;border-radius:8px;border:1px solid rgba(255,255,255,0.06);background:rgba(255,255,255,0.02);color:#fff;font-family:inherit;font-size:1rem}
.instant-form textarea{height:90px;resize:none}
.submit-btn{width:100%;background:linear-gradient(90deg,var(--primary),var(--primary-dark));color:#fff;border:none;padding:12px 14px;font-weight:800;text-transform:uppercase;border-radius:10px;cursor:pointer;letter-spacing:1px;transition:var(--transition)}
.submit-btn:focus-visible{box-shadow:var(--focus-ring)}

/* -------------------------
   Products
   ------------------------- */
.products{padding:72px 0}
.section-title{text-align:center;font-size:2.2rem;margin-bottom:28px;color:var(--primary)}
.product-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:24px}

/* Product card */
.product-card{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.03);
  transition: transform .28s ease, box-shadow .28s ease;
  background:transparent;
  isolation:isolate;
}
.product-card:hover{transform:translateY(-6px);border-color:rgba(196,155,99,0.14);box-shadow:0 18px 48px rgba(0,0,0,0.45)}

/* Product image */
.product-card img{
  width:100%;
  height:auto;
  max-height:var(--max-product-img-h);
  object-fit:cover;
  display:block;
  border-top-left-radius:12px;
  border-top-right-radius:12px;
  transition: transform .28s ease;
  background:#111;
}
.product-card:hover img{transform:scale(1.02)}

/* Product info */
.product-info{padding:16px;text-align:center;background:rgba(0,0,0,0.04);border-bottom-left-radius:12px;border-bottom-right-radius:12px}
.product-info h3{font-size:1.1rem;margin-bottom:8px;color:var(--light)}

/* Actions */
.card-actions{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.card-actions a, .card-actions button{
  flex:1;min-width:120px;padding:10px 12px;border-radius:10px;color:#fff;text-decoration:none;font-weight:700;font-size:.9rem;display:inline-flex;align-items:center;justify-content:center;gap:8px;border:none;cursor:pointer;transition:var(--transition)
}
.card-actions a:hover,.card-actions button:hover{transform:scale(1.03);filter:brightness(1.05)}

/* WhatsApp buttons use dark royal green (solid) */
.btn-wa{
  background:var(--wa-green);
  color:#ffffff;
  border:1px solid rgba(0,0,0,0.12);
  box-shadow:0 10px 28px rgba(11,107,58,0.12);
}
.btn-wa:hover{background:var(--wa-green-dark);transform:translateY(-2px);box-shadow:0 18px 40px rgba(9,86,47,0.16)}

/* Call button (primary) */
.btn-call{background:linear-gradient(90deg,var(--primary),var(--primary-dark))}

/* Neutral form button (fallback) */
.btn-form{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.03);color:#fff}

/* -------------------------
   Inquire button (solid dark royal red)
   ------------------------- */
.btn-inquire,
.btn-form.inquire-style {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:10px;
  font-weight:800;
  font-size:0.98rem;
  color:var(--inquire-text);
  background:var(--inquire-red);
  border:1px solid rgba(0,0,0,0.12);
  box-shadow:0 10px 28px rgba(122,15,26,0.12);
  text-decoration:none;
  cursor:pointer;
  transition:transform .14s ease, box-shadow .14s ease, background .12s ease;
  line-height:1;
}

/* Hover and active states */
.btn-inquire:hover,
.btn-form.inquire-style:hover {
  transform:translateY(-3px);
  background:var(--inquire-red-dark);
  box-shadow:0 18px 44px rgba(94,11,20,0.16);
}
.btn-inquire:active,
.btn-form.inquire-style:active {
  transform:translateY(-1px);
  background:#4b080f;
}

/* Focus accessibility */
.btn-inquire:focus-visible,
.btn-form.inquire-style:focus-visible {
  outline:none;
  box-shadow:0 0 0 6px rgba(122,15,26,0.12), 0 12px 30px rgba(122,15,26,0.12);
  border-radius:10px;
}

/* Optional single pulse to draw attention once */
@keyframes inquirePulse {
  0% { transform:translateY(0); box-shadow:0 10px 28px rgba(122,15,26,0.12); }
  50% { transform:translateY(-4px); box-shadow:0 22px 48px rgba(122,15,26,0.18); }
  100% { transform:translateY(0); box-shadow:0 10px 28px rgba(122,15,26,0.12); }
}
.btn-inquire.pulse,
.btn-form.inquire-style.pulse { animation: inquirePulse 1.4s ease 0s 1; }

/* -------------------------
   Lightbox (constrained)
   ------------------------- */
.lp-lightbox{
  position:fixed;inset:0;background:rgba(0,0,0,0.92);display:flex;align-items:center;justify-content:center;z-index:4000;padding:18px;box-sizing:border-box;
}
.lp-lightbox .lb-inner{width:100%;max-width:1100px;max-height:92vh;display:flex;align-items:center;justify-content:center;position:relative;outline:none}
.lp-lightbox .lb-frame{width:100%;max-height:92vh;display:flex;align-items:center;justify-content:center;overflow:hidden;border-radius:10px;padding:6px;box-sizing:border-box;background:transparent}
.lp-lightbox .lb-frame img{max-width:100%;max-height:80vh;width:auto;height:auto;object-fit:contain;display:block;border-radius:6px;box-shadow:0 30px 90px rgba(0,0,0,0.7)}
.lb-close{position:absolute;right:10px;top:8px;color:#fff;font-size:32px;cursor:pointer;background:transparent;border:none;padding:6px 10px;line-height:1}
@media (max-width:480px){ .lp-lightbox .lb-frame img{max-height:72vh} .lp-lightbox{padding:12px} }

/* -------------------------
   Modal (replacement)
   ------------------------- */
.modal{
  display:none;
  position:fixed;
  z-index:3500;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.75);
  align-items:center;
  justify-content:center;
  padding:20px;
  box-sizing:border-box;
}
.modal.show,
.modal.open,
.modal[aria-hidden="false"]{ display:flex; }
.modal-content{
  background:#ffffff;
  color:#111111;
  width:92%;
  max-width:520px;
  margin:0 auto;
  padding:20px;
  border-radius:12px;
  position:relative;
  box-shadow:0 20px 60px rgba(0,0,0,0.45);
  animation:slideDown .28s ease;
  box-sizing:border-box;
  font-family:inherit;
  line-height:1.4;
}
.modal-content h1,.modal-content h2,.modal-content h3,.modal-content label,.modal-content p,.modal-content .form-msg { color:#111 !important; }
.modal-content input,.modal-content textarea,.modal-content select,.modal-content button { color:#111 !important; font-family:inherit; }
.modal-content input,.modal-content textarea,.modal-content select {
  width:100%;padding:10px 12px;margin-bottom:12px;border-radius:8px;border:1px solid rgba(0,0,0,0.12);background:#fff;box-shadow:none;box-sizing:border-box;outline:none;
}
.modal-content input::placeholder,.modal-content textarea::placeholder { color:rgba(0,0,0,0.45); }
.modal-content input:focus,.modal-content textarea:focus,.modal-content select:focus { border-color:rgba(196,155,99,0.9); box-shadow:0 0 0 4px rgba(196,155,99,0.08); }
.modal-content .submit-btn, .modal-content button[type="submit"]{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:12px 14px;border-radius:10px;background:linear-gradient(90deg,#c49b63,#a37d4a);color:#fff;border:none;font-weight:800;cursor:pointer;transition:transform .14s ease,box-shadow .14s ease;
}
.modal-content .submit-btn:hover, .modal-content button[type="submit"]:hover{ transform:translateY(-2px); box-shadow:0 12px 30px rgba(0,0,0,0.25); }
.close-modal{position:absolute;right:12px;top:8px;font-size:28px;cursor:pointer;background:transparent;border:none;color:#222;line-height:1;padding:6px;}
.close-modal:focus{ outline:none; box-shadow:0 0 0 4px rgba(196,155,99,0.08); border-radius:8px; }
@keyframes slideDown{ from{ transform:translateY(-18px); opacity:0; } to{ transform:translateY(0); opacity:1; } }



/* -------------------------
   Footer (full replacement)
   - Two-column layout (swapped order)
   - Contracted left column, expanded right column
   - Distinct bottom padding for desktop/tablet/mobile
   - Centered copyright
   - Responsive stacking on small screens
   ------------------------- */

.lp-footer{
  background: linear-gradient(180deg, rgba(6,6,6,0.96), rgba(10,10,10,0.98));
  color: #e9e9e9;
  padding: 28px 0 120px; /* default desktop bottom padding */
  border-top: 2px solid rgba(196,155,99,0.06);
  font-size: .95rem;
  box-sizing: border-box;
}

/* Two-column container: left = compact help text, right = expanded brand block */
.footer-inner{
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 12px;
}

/* Compact left column (appears first on wide screens) */
.footer-right {
  order: 1;
  flex: 0 0 240px;        /* contracted width */
  min-width: 200px;
  color: #d0d0d0;
  align-self: center;
  line-height: 1.45;
  padding-right: 8px;
}

/* Expanded right column (brand block) */
.footer-left {
  order: 2;
  flex: 1 1 760px;        /* expands to fill remaining space */
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;  /* right-aligned content inside this column */
  padding-left: 18px;     /* inset so it doesn't sit flush to the left column */
  box-sizing: border-box;
}

/* Logo */
.footer-logo { height: 64px; width: auto; display: block; }

/* Brand description */
.footer-desc {
  color: #cfcfcf;
  text-align: right;
  max-width: 760px;
  margin: 0;
  line-height: 1.45;
}

/* CTA group inside brand block */
.footer-ctas {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 6px;
}

/* Buttons */
.footer-ctas .btn { padding: 8px 12px; font-weight: 700; border-radius: 10px; text-decoration: none; color: #fff; }
.btn-wa { background: var(--wa-green); border: 1px solid rgba(0,0,0,0.12); box-shadow: 0 10px 28px rgba(11,107,58,0.12); }
.btn-wa:hover { background: var(--wa-green-dark); }
.btn-call { background: linear-gradient(90deg, var(--primary), var(--primary-dark)); }

/* Footer bottom: centered copyright */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.03);
  margin-top: 18px;
  padding-top: 14px;
}
.footer-bottom .footer-bottom-inner{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}
.footer-bottom .copyright{
  margin: 0;
  color: #bdbdbd;
  font-size: .95rem;
  width: 100%;
}

/* Accessibility: ensure focus outlines are visible */
.footer-right a, .footer-left a, .footer-ctas .btn {
  outline-offset: 3px;
}
.footer-right a:focus, .footer-left a:focus, .footer-ctas .btn:focus {
  box-shadow: var(--focus-ring);
  border-radius: 8px;
}

/* Tablet breakpoint: slightly smaller bottom padding */
@media (max-width:1199px) and (min-width:881px) {
  .lp-footer { padding-bottom: 100px; } /* tablet */
  .footer-right { flex: 0 0 220px; min-width: 200px; }
  .footer-left { flex: 1 1 640px; }
  .footer-desc { max-width: 640px; }
}

/* Mobile: stack columns, left-align content, extra bottom padding for fixed popups */
@media (max-width: 880px) {
  .footer-inner { flex-direction: column; gap: 18px; align-items: flex-start; }
  .footer-right { order: 1; flex: 1 1 100%; min-width: auto; padding-right: 0; }
  .footer-left { order: 2; flex: 1 1 100%; align-items: flex-start; padding-left: 0; }
  .footer-desc { text-align: left; max-width: 100%; }
  .footer-ctas { justify-content: flex-start; }
  .lp-footer { padding-bottom: 160px; } /* mobile: extra space */
}

/* Small fine-tuning for very small screens */
@media (max-width:480px) {
  .footer-logo { height:56px; }
  .footer-right { flex: 1 1 100%; }
  .footer-ctas .btn { padding: 8px 10px; font-size: 0.92rem; }
}


/* -------------------------
   Sticky WhatsApp
   ------------------------- */
.fixed-wa.rounded-wa{
  position:fixed;left:18px;bottom:18px;z-index:9000;height:64px;min-width:64px;display:inline-flex;align-items:center;justify-content:center;gap:10px;background:linear-gradient(90deg,var(--wa-green),var(--wa-green-dark));color:#fff;border-radius:999px;padding:0 14px;box-shadow:0 18px 40px rgba(11,107,58,0.14);text-decoration:none;font-weight:800;transition:transform .18s ease,box-shadow .18s ease,opacity .18s ease;overflow:visible;-webkit-tap-highlight-color:transparent;
}
.fixed-wa.rounded-wa.with-offset{bottom:calc(18px + 56px)}
.fixed-wa.rounded-wa .wa-icon{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;color:#fff}
.fixed-wa.rounded-wa .wa-text{font-weight:800;color:#fff;font-size:.95rem;white-space:nowrap}
@media (max-width:480px){ .fixed-wa.rounded-wa{left:12px;bottom:12px;padding:0;width:64px;min-width:64px;justify-content:center} .fixed-wa.rounded-wa .wa-text{display:none} }

/* -------------------------
   Responsive adjustments
   ------------------------- */
@media (max-width:992px){
  body{padding-top:var(--header-h-mobile)}
  .lp-header{height:var(--header-h-mobile);padding:0 12px}
  .hero-grid{grid-template-columns:1fr;gap:20px}
  .hero{min-height:auto;padding:36px 0}
  .product-grid{gap:18px}
  .nav-list{display:none}
  /* default mobile toggle fallback */
  .nav-toggle{display:flex;align-items:center;justify-content:center;order:3;margin-left:auto}
  .header-ctas .cta-text{display:none}
  .cta{width:44px;height:44px;padding:0;border-radius:50%;justify-content:center}
  .footer-inner{grid-template-columns:1fr;gap:12px}
  :root{ --max-product-img-h:360px; }
  .hero-text{text-align:center;padding:0 12px}
  .hero-form-container{margin-top:6px}
  .nav-list{position:absolute;top:var(--header-h-mobile);left:0;right:0;display:none;flex-direction:column;padding:12px 18px;background:rgba(6,6,6,0.98);z-index:2100}
  .nav-list.show{display:flex}
}

/* -------------------------
   Force Inquire CTA — highest specificity (end of file)
   ------------------------- */
:root{
  --inquire-red: #7a0f1a;
  --inquire-red-dark: #5e0b14;
  --inquire-text: #ffffff;
}
html body button.btn-inquire,
html body a.btn-inquire,
html body button.btn-form.inquire-style,
html body a.btn-form.inquire-style,
html body .card-actions button.btn-form,
html body .card-actions a.btn-form {
  background: var(--inquire-red) !important;
  color: var(--inquire-text) !important;
  border: 1px solid rgba(0,0,0,0.12) !important;
  box-shadow: 0 10px 28px rgba(122,15,26,0.12) !important;
  padding: 12px 16px !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
  font-size: 0.98rem !important;
  transition: transform .14s ease, box-shadow .14s ease, background .12s ease !important;
}
html body button.btn-inquire:hover,
html body a.btn-inquire:hover,
html body button.btn-form.inquire-style:hover,
html body a.btn-form.inquire-style:hover,
html body .card-actions button.btn-form:hover,
html body .card-actions a.btn-form:hover {
  background: var(--inquire-red-dark) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 18px 44px rgba(94,11,20,0.16) !important;
}
html body button.btn-inquire:active,
html body a.btn-inquire:active,
html body button.btn-form.inquire-style:active,
html body a.btn-form.inquire-style:active {
  background: #4b080f !important;
  transform: translateY(-1px) !important;
}
html body button.btn-inquire:focus-visible,
html body a.btn-inquire:focus-visible,
html body button.btn-form.inquire-style:focus-visible,
html body a.btn-form.inquire-style:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 6px rgba(122,15,26,0.12), 0 12px 30px rgba(122,15,26,0.12) !important;
}

/* -------------------------
   Mobile: pin toggle to right and center hero form (final overrides)
   ------------------------- */
@media (max-width: 992px) {
  /* Ensure header container is a positioned context */
  .lp-header .container {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  /* Pin the toggle to the right edge and center vertically */
  .nav-toggle {
    display: inline-flex !important;
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9999 !important;
    width: 44px !important;
    height: 44px !important;
    padding: 6px !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto !important;
  }

  /* Prevent overlap: reserve space for toggle by pushing CTAs left */
  .header-ctas {
    margin-right: 72px !important;
    display: flex;
    gap: 8px;
    align-items: center;
  }

  /* Slightly reduce CTA size on narrow screens to avoid crowding */
  .header-ctas .cta {
    padding: 8px 10px;
    font-size: 0.9rem;
    min-width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Ensure logo sits left and doesn't collide */
  .logo-link { margin-right: 0 !important; margin-left: 6px !important; }

  /* Center hero content and form when grid collapses */
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    justify-items: center !important;
    align-items: start !important;
    text-align: center !important;
  }

  .hero-text {
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 720px !important;
    padding: 0 12px !important;
    text-align: center !important;
  }

  .hero-form-container {
    margin: 6px auto 0 !important;
    width: 100% !important;
    max-width: 420px !important;
    box-sizing: border-box !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  /* Ensure nav-list appears below header and doesn't cover the toggle */
  .nav-list {
    position: absolute !important;
    top: var(--header-h-mobile, 64px) !important;
    left: 0 !important;
    right: 0 !important;
    display: none !important;
    flex-direction: column !important;
    padding: 12px 18px !important;
    background: rgba(6,6,6,0.98) !important;
    z-index: 2100 !important;
  }
  .nav-list.show { display: flex !important; }
}

/* -------------------------
   Small screens fine tuning
   ------------------------- */
@media (max-width:640px){
  :root{ --max-product-img-h:300px; }
  .hero-text h1{font-size:1.8rem}
  .hero-text p{font-size:0.95rem}
  .section-title{font-size:1.6rem}
  .container{padding:0 14px}
  .footer-logo{height:64px}
  .footer-bottom{flex-direction:column;align-items:center;gap:8px}
  .hero-form-container{padding:14px;margin:0 12px}
  .product-info{padding:14px}
  .card-actions a, .card-actions button{padding:10px 8px;font-size:.9rem}
  .btn-inquire{padding:12px 10px;font-size:1rem}
}

/* -------------------------
   Accessibility & utilities
   ------------------------- */
a{outline-color:rgba(196,155,99,0.28)}
button{font-family:inherit}
.hidden{display:none!important}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
:focus{outline-offset:3px}

/* -------------------------
   End of file
   ------------------------- */


/* Footer bottom spacing override — paste at end of style.css */
.lp-footer {
  padding-bottom: 200px; /* desktop */
}

/* Tablet */
@media (max-width:1199px) and (min-width:881px) {
  .lp-footer { padding-bottom: 140px; }
}

/* Mobile */
@media (max-width:880px) {
  .lp-footer { padding-bottom: 220px; }
}





/* Footer optimization — paste at end of style.css to override earlier rules */

/* Base footer layout and spacing */
.lp-footer {
  padding: 36px 0 160px;            /* desktop: top 36px, bottom 160px */
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(6,6,6,0.96), rgba(10,10,10,0.98));
}

/* Inner layout */
.footer-inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8px 20px 0;
}

/* Left (compact) column — legal / quick links */
.footer-right {
  flex: 0 0 220px;      /* contracted */
  min-width: 180px;
  color: #d0d0d0;
  padding-right: 8px;
  line-height: 1.45;
}

/* Right (expanded) column — brand, description, CTAs */
.footer-left {
  flex: 1 1 720px;      /* expands to fill remaining space */
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  padding-left: 12px;
}

/* Brand description and logo */
.footer-logo { height: 64px; width: auto; display: block; }
.footer-desc { max-width: 760px; text-align: right; color: #cfcfcf; line-height: 1.45; }

/* CTA group */
.footer-ctas { display:flex; gap:10px; justify-content:flex-end; margin-top:6px; }
.footer-ctas .btn { padding:8px 12px; font-weight:700; border-radius:10px; }

/* Footer bottom (copyright) */
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.03); margin-top: 20px; padding-top: 16px; }
.footer-bottom .footer-bottom-inner { display:flex; justify-content:center; align-items:center; gap:12px; flex-wrap:wrap; text-align:center; }
.footer-bottom .copyright { color:#bdbdbd; font-size:.95rem; margin:0; }

/* Accessibility focus */
.footer-right a:focus, .footer-left a:focus, .footer-ctas .btn:focus { box-shadow: var(--focus-ring); border-radius:8px; outline:none; }

/* Tablet breakpoint */
@media (max-width:1199px) and (min-width:881px) {
  .lp-footer { padding-bottom: 120px; }   /* tablet breathing room */
  .footer-right { flex: 0 0 200px; }
  .footer-left { flex: 1 1 560px; align-items:flex-end; }
  .footer-desc { max-width: 560px; text-align:right; }
}

/* Mobile breakpoint */
@media (max-width:880px) {
  .lp-footer { padding: 28px 0 220px; }   /* mobile: extra space for fixed UI */
  .footer-inner { flex-direction: column; gap: 18px; align-items: flex-start; padding: 0 14px; }
  .footer-right, .footer-left { flex: 1 1 100%; padding: 0; }
  .footer-left { align-items: flex-start; }
  .footer-desc { text-align: left; max-width: 100%; }
  .footer-ctas { justify-content: flex-start; gap:8px; }
  .footer-logo { height:56px; }
  .footer-bottom { padding-top: 18px; }
}

/* Very small screens fine tuning */
@media (max-width:480px) {
  .footer-ctas .btn { padding: 8px 10px; font-size: 0.92rem; }
  .footer-bottom .copyright { font-size: .9rem; }
}



/* Add vertical gap between first-column text and its button row */
.footer-right .footer-ctas {
  margin-top: 14px;        /* space above the buttons row */
}

/* If the text element is a paragraph or small block, ensure it has bottom spacing */
.footer-right p,
.footer-right .footer-text,
.footer-right .footer-desc-short {
  margin-bottom: 8px;      /* small breathing room below text */
}

/* Slightly larger spacing on mobile for touch comfort */
@media (max-width:880px) {
  .footer-right .footer-ctas { margin-top: 18px; }
  .footer-right p,
  .footer-right .footer-text,
  .footer-right .footer-desc-short { margin-bottom: 12px; }
}




/* ---------- Replacement: Transparent form inputs + phone UI (paste at end of style.css) ---------- */
/* Form container sizing */
.instant-form { width:100%; max-width:420px; box-sizing:border-box; }

/* Inputs, textarea, select — transparent background for dark hero, white text */
.instant-form input,
.instant-form textarea,
.instant-form select {
  width:100%;
  padding:12px;
  margin-bottom:10px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.06);
  background: transparent;
  color:#fff;
  font-family:inherit;
  font-size:1rem;
  box-sizing:border-box;
}

/* Ensure the first field (name) text is explicitly white */
.instant-form input[name="name"] { color: #fff; }

/* Honeypot remains hidden */
.instant-form input[name="hp"] { display:none !important; }

/* Phone row: prefix + phone input */
.phone-row { display:flex; gap:8px; align-items:center; width:100%; }

/* Phone prefix: fully transparent background, white text */
#phone-prefix {
  width:110px;
  min-width:64px;
  padding:10px 8px;
  border-radius:8px;
  border: none;
  background: transparent !important;
  color:#fff;
  text-align:center;
  font-weight:700;
  pointer-events:none;
  box-sizing:border-box;
}

/* Country select: charcoal background, white text, custom arrow */
#country-select,
.instant-form select {
  width:100%;
  padding:10px 12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.06);
  background: #2b2b2b;
  color:#fff;
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  padding-right:40px;
  box-sizing:border-box;
}

/* Option styling */
#country-select option {
  background: #2b2b2b;
  color: #fff;
}

/* Custom arrow for select */
#country-select {
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%),
    linear-gradient(to right, rgba(255,255,255,0.06), rgba(255,255,255,0.06));
  background-position:
    calc(100% - 18px) calc(1em + 2px),
    calc(100% - 13px) calc(1em + 2px),
    calc(100% - 2.5rem) 50%;
  background-size: 6px 6px, 6px 6px, 1px 1.6rem;
  background-repeat: no-repeat;
}

/* Phone input flexible next to prefix */
.phone-row input[type="tel"] {
  flex:1;
  padding:12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.06);
  background: transparent;
  color:#fff;
  box-sizing:border-box;
}

/* Inline message area (subtle, readable on dark) */
.form-msg { font-size:0.95rem; line-height:1.3; color:#ffdede; margin-top:6px; min-height:20px; }

/* Focus and keyboard accessibility — visible on dark background */
.instant-form input:focus,
.instant-form textarea:focus,
.instant-form select:focus,
#phone-prefix:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(196,155,99,0.12);
  border-color: rgba(196,155,99,0.9);
}

/* Submit button consistency */
.instant-form .submit-btn {
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease;
}

/* Small screens: compact prefix and spacing */
@media (max-width:480px) {
  .phone-row { gap:8px; }
  #phone-prefix { width:64px; padding:8px; font-size:0.95rem; }
  .instant-form { padding:0 8px; }
  .instant-form .submit-btn { padding:12px; }
  #country-select { padding-right:34px; }
}

/* Placeholder color (subtle on dark) */
.instant-form input::placeholder,
.instant-form textarea::placeholder,
.instant-form select::placeholder { color: rgba(255,255,255,0.55); }

/* Preserve textarea line breaks for email AltBody */
.instant-form textarea { white-space: pre-wrap; }

/* Visually hide labels but keep accessible */
.instant-form .sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

/* Small utility: ensure prefix and phone align when country-select is present */
.phone-row .prefix-and-select {
  display:flex;
  gap:8px;
  align-items:center;
  width:auto;
}

/* End of replacement form CSS */


/* ---------- Append: Make popup form match hero instant form ---------- */
/* Modal container visual to match .hero-form-container */
.modal .modal-content {
  background: rgba(20,20,20,0.82) !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 18px !important;
  border: 1px solid rgba(255,255,255,0.03) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55) !important;
  max-width: 520px;
  width: 92%;
  box-sizing: border-box;
}

/* Ensure modal headings and text use same palette */
.modal .modal-content h1,
.modal .modal-content h2,
.modal .modal-content h3,
.modal .modal-content p,
.modal .modal-content label {
  color: #fff !important;
}

/* Make form inputs inside modal transparent and white like instant-form */
.modal .modal-content input,
.modal .modal-content textarea,
.modal .modal-content select,
.modal .modal-content .submit-btn {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  color: #fff !important;
  padding: 10px 12px !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
}

/* Phone prefix inside modal (transparent) */
.modal .modal-content #phone-prefix {
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  pointer-events: none;
}

/* Country select in modal: charcoal background consistent with page select */
.modal .modal-content #country-select,
.modal .modal-content select {
  background: #2b2b2b !important;
  color: #fff !important;
  padding-right: 40px !important;
}

/* Placeholder and textarea behavior */
.modal .modal-content input::placeholder,
.modal .modal-content textarea::placeholder,
.modal .modal-content select::placeholder {
  color: rgba(255,255,255,0.55) !important;
}
.modal .modal-content textarea { white-space: pre-wrap !important; }

/* Focus states inside modal (visible on dark background) */
.modal .modal-content input:focus,
.modal .modal-content textarea:focus,
.modal .modal-content select:focus {
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(196,155,99,0.12) !important;
  border-color: rgba(196,155,99,0.9) !important;
}

/* Ensure modal close button remains visible */
.modal .close-modal { color: #fff !important; }

/* Small screens: keep modal padding comfortable */
@media (max-width:480px) {
  .modal .modal-content { padding: 14px !important; width: 96% !important; }
  .modal .modal-content #phone-prefix { width:64px !important; padding:8px !important; }
}



/* ---------- Append: Modal select charcoal + visible chevron ---------- */
/* Highest specificity to override earlier modal rules */
#contactModal .modal-content #modal-country-select,
#contactModal #modal-country-select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;

  background-color: #2b2b2b !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 8px !important;
  padding: 10px 44px 10px 12px !important; /* room for arrow */
  font-size: 1rem !important;
  line-height: 1.2 !important;
  box-sizing: border-box !important;
  cursor: pointer !important;

  /* Crisp white chevron (SVG data URI) on the right */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FFFFFF' d='M6 8L0 0h12z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 14px) 50% !important;
  background-size: 12px 8px !important;
  box-shadow: none !important;
}

/* Hide IE native arrow */
#contactModal #modal-country-select::-ms-expand { display: none !important; }

/* Ensure options readable */
#contactModal #modal-country-select option {
  background: #2b2b2b !important;
  color: #fff !important;
}

/* Focus state */
#contactModal #modal-country-select:focus {
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(196,155,99,0.12) !important;
  border-color: rgba(196,155,99,0.9) !important;
}

/* Fallback pseudo-element (shown only if needed) */
#contactModal .phone-row { position: relative; }
#contactModal .phone-row .select-arrow-fallback {
  display: none; /* keep hidden by default; used only if background-image suppressed */
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FFFFFF' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-size: 12px 8px;
  opacity: 0.98;
}

/* If you need to force the fallback visible for debugging, temporarily enable below:
#contactModal .phone-row .select-arrow-fallback { display:block !important; }
*/

/* Small screens adjust padding */
@media (max-width:480px) {
  #contactModal #modal-country-select { padding-right: 36px !important; background-position: calc(100% - 12px) 50% !important; }
}

/* Safety: ensure select is above any overlapping elements */
#contactModal #modal-country-select {
  position: relative !important;
  z-index: 5 !important;
}




/* ===== Mobile nav toggle & nav fixes ===== */
.nav-toggle {
  position: relative;
  z-index: 9999 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto !important;
}

/* Ensure header overlays don't block the toggle */
.lp-header::before,
.lp-header::after,
.header-overlay,
.site-overlay {
  pointer-events: none !important;
}

/* Slide-in nav panel for mobile */
.nav-list {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  max-width: 85%;
  transform: translateX(100%);
  transition: transform 260ms ease-in-out;
  background: var(--nav-bg, #fff);
  z-index: 9998;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto;
}

/* Visible state */
.nav-list.show,
.nav-list.open {
  transform: translateX(0);
}

/* Optional overlay behind nav */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 9997;
  display: none;
}
.nav-overlay.show { display: block; }

/* Ensure nav links are clickable */
.nav-list a, .nav-list button { pointer-events: auto; }

/* Small screens: ensure toggle visible */
@media (max-width: 992px) {
  .nav-toggle { display: inline-flex !important; }
  .lp-header { z-index: 9996; }
}


/* Hide mobile nav toggle on desktop, show on small screens */
@media (min-width: 993px) {
  .nav-toggle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

/* Ensure toggle remains visible and clickable on mobile */
@media (max-width: 992px) {
  .nav-toggle {
    display: inline-flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

.error { outline: 2px solid rgba(176,0,32,0.12); }
.field-error { color: #b00020; font-size: 0.9em; margin-left: 6px; display: inline-block; }



.invalid-phone { border-color: #e74c3c; box-shadow: 0 0 0 3px rgba(231,76,60,0.08); }
