/*==========================================================
  ORIGAMI — Horizontal Site  |  Light · Spacious · Orange
  Desktop : 4 panels, GSAP horizontal scroll
  Mobile  : vertical stack, hamburger menu
==========================================================*/

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', system-ui, -apple-system, sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  background: #fff;
  color: #1C2533;
  overflow-x: hidden;
}

/* Origami accent strip — top of page */
body::before {
  content: '';
  height: 5px;
  background: linear-gradient(90deg,
    #B83227 0%,
    #E67E22 22%,
    #F0B429 40%,
    #E86020 58%,
    #E67E22 76%,
    #B83227 100%
  );
  background-size: 300%;
  animation: gradSlide 5s linear infinite;
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  box-shadow: 0 1px 12px rgba(230,126,34,0.35);
}
@keyframes gradSlide {
  0%   { background-position: 0%; }
  100% { background-position: 300%; }
}

/* ── HORIZONTAL SCROLL SECTION ───────────────────────────── */
/* h-outer is 300vh tall — scroll space for 3 panels         */
.h-outer {
  height: 300vh;
  position: relative;
}

/* h-sticky pins at top while h-outer scrolls */
.h-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* ── PANELS TRACK (3 panels = 300vw) ─────────────────────── */
.panels-track {
  display: flex;
  width: 300vw;
  height: 100vh;
  will-change: transform;
}

.panel {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* ── SITE HEADER ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 5px; left: 0; right: 0;
  height: 6.8rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.6rem;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
}

/* Always white — consistent across all panels */
.site-header,
.site-header.over-hero,
.site-header.light-header {
  background: rgba(255, 255, 255, 0.97) !important;
  border-bottom: 1px solid #FDDDB4;
  box-shadow: 0 2px 24px rgba(230,126,34,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img { height: 3.8rem; width: auto; }
.site-logo-text {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 0.22rem;
  background: linear-gradient(135deg, #E67E22 0%, #CF711F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop nav — always dark text (header is always white) */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-link {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(28,37,51,0.65);
  text-decoration: none;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover  { color: #1C2533; background: #FEF0E0; }
.nav-link.active { color: #E67E22; background: rgba(230,126,34,0.08); font-weight: 600; }

.nav-link.nav-cta {
  background: #E67E22;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(230,126,34,0.30);
}
.nav-link.nav-cta:hover  { background: #CF711F !important; box-shadow: 0 6px 20px rgba(230,126,34,0.42); }
.nav-link.nav-cta.active { background: #CF711F !important; }

/* ── HAMBURGER ───────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 4rem;
  height: 4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  z-index: 1002;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #1C2533;
  border-radius: 2px;
  transform-origin: left center;
  transition: transform 0.32s cubic-bezier(0.23,1,0.32,1), opacity 0.22s, width 0.28s;
}
.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 15px; }
.hamburger span:nth-child(3) { width: 22px; }
.hamburger.open span:nth-child(1) { transform: rotate(42deg) translateY(-1px); width: 22px; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-42deg) translateY(1px); width: 22px; }
.site-header.light-header .hamburger span { background: #1C2533; }

/* ── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: linear-gradient(145deg, #1C2533 0%, #2d1f0a 55%, #8F4A0A 100%);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu.visible { animation: menuIn 0.36s cubic-bezier(0.23,1,0.32,1) forwards; }
.mobile-menu.closing { animation: menuOut 0.26s ease forwards; }

@keyframes menuIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes menuOut { from { opacity: 1; } to { opacity: 0; } }

.mobile-nav-link {
  display: block;
  font-size: 3.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  letter-spacing: -0.02em;
  padding: 1rem 3.2rem;
  border-radius: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.18s, background 0.18s;
}
.mobile-nav-link:hover { color: #fff; background: rgba(255,255,255,0.05); }

.mobile-menu.visible .mobile-nav-link { animation: linkUp 0.4s cubic-bezier(0.23,1,0.32,1) forwards; }
.mobile-menu.visible .mobile-nav-link:nth-child(1) { animation-delay: 0.06s; }
.mobile-menu.visible .mobile-nav-link:nth-child(2) { animation-delay: 0.12s; }
.mobile-menu.visible .mobile-nav-link:nth-child(3) { animation-delay: 0.18s; }
.mobile-menu.visible .mobile-nav-link:nth-child(4) { animation-delay: 0.24s; }
@keyframes linkUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

.mobile-cta-row { margin-top: 3.2rem; opacity: 0; }
.mobile-menu.visible .mobile-cta-row {
  animation: linkUp 0.4s cubic-bezier(0.23,1,0.32,1) 0.3s forwards;
}
.mobile-cta {
  display: inline-block;
  padding: 1.4rem 4rem;
  background: #E67E22;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(230,126,34,0.4);
  transition: background 0.2s, transform 0.15s;
}
.mobile-cta:hover { background: #CF711F; transform: scale(1.03); }

/* ── PANEL DOTS ──────────────────────────────────────────── */
/* Hidden by default — JS adds .h-active to body when in horizontal section */
.panel-dots,
.panel-arrow,
.panel-counter {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
body.h-active .panel-dots,
body.h-active .panel-arrow,
body.h-active .panel-counter {
  opacity: 1;
  pointer-events: auto;
}

.panel-dots {
  position: fixed;
  right: 3.2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.dot.active { background: #E67E22; transform: scale(1.5); }
.dot:hover  { background: rgba(255,255,255,0.75); }
.panel-dots.dark-dots .dot         { background: rgba(28,37,51,0.2); }
.panel-dots.dark-dots .dot.active  { background: #E67E22; }
.panel-dots.dark-dots .dot:hover   { background: rgba(28,37,51,0.45); }

/* ── ARROWS & COUNTER ────────────────────────────────────── */
.panel-arrow {
  position: fixed;
  bottom: 3.2rem;
  z-index: 100;
  width: 4.8rem; height: 4.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.22s, border-color 0.22s, transform 0.15s;
}
.panel-arrow:hover { background: #E67E22; border-color: #E67E22; transform: scale(1.1); }
.panel-arrow:disabled { opacity: 0.2; cursor: default; pointer-events: none; }
.panel-arrow-prev { left: 50%; transform: translateX(calc(-50% - 17rem)); }
.panel-arrow-next { left: 50%; transform: translateX(calc(-50% + 17rem)); }
.panel-arrow-prev:hover { transform: translateX(calc(-50% - 17rem)) scale(1.1); }
.panel-arrow-next:hover { transform: translateX(calc(-50% + 17rem)) scale(1.1); }

.panel-counter {
  position: fixed;
  bottom: 3.6rem;
  left: 5.6rem;
  z-index: 100;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
}
.panel-counter.dark-text { color: rgba(28,37,51,0.35); }
.panel-counter .cur { color: #E67E22; font-size: 2.2rem; font-weight: 800; line-height: 1; }

.scroll-progress {
  position: fixed;
  bottom: 0; left: 0;
  height: 3px;
  background: linear-gradient(to right, #E67E22, #F0A452);
  z-index: 999;
  transition: width 0.7s cubic-bezier(0.23,1,0.32,1);
}

/* ── SHARED PANEL UTILITIES ──────────────────────────────── */
.panel-half {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 11rem 6.4rem 5.6rem;  /* 11rem clears fixed nav */
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2.8rem;
  width: fit-content;
}

.panel-h1 {
  font-size: clamp(3.8rem, 5vw, 6.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 2.4rem;
}

.panel-h2 {
  font-size: clamp(2.8rem, 3.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.6rem;
}

.panel-subhead {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E67E22;
  margin-bottom: 1.6rem;
}

.panel-text {
  font-size: 1.7rem;
  line-height: 1.8;
  margin-bottom: 3.6rem;
  max-width: 52rem;
}

.panel-actions {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 4.4rem;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem 3.4rem;
  background: #E67E22;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid #E67E22;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 6px 24px rgba(230,126,34,0.32);
}
.btn-primary:hover { background: #CF711F; border-color: #CF711F; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(230,126,34,0.44); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem 3.4rem;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.45);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }

.btn-ghost-orange {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem 3.4rem;
  background: transparent;
  color: #E67E22;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid #E67E22;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost-orange:hover { background: #E67E22; color: #fff; transform: translateY(-2px); }

/* Feature list */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 3.6rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  font-size: 1.55rem;
  line-height: 1.55;
}
.feature-list ion-icon { flex-shrink: 0; font-size: 2rem; margin-top: 0.05rem; color: #E67E22; }

/* ══════════════════════════════════════════════════════════
   PANEL 1 — HERO  (Vegas background)
══════════════════════════════════════════════════════════ */
.panel-home {
  background: #1C2533;  /* fallback while Vegas loads */
}

/* Vegas mounts on .panel-home — it injects .vegas-slide elements
   inside the panel. Override their z-index so header stays above. */
.panel-home .vegas-slide { z-index: 0 !important; }
.panel-home .vegas-overlay { z-index: 1 !important; display: none; }

/* White-to-transparent gradient overlay — left readable, right shows Vegas */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(255, 250, 245, 0.96) 0%,
    rgba(255, 250, 245, 0.88) 38%,
    rgba(255, 250, 245, 0.40) 62%,
    rgba(255, 250, 245, 0.05) 85%,
    transparent 100%
  );
}

/* Hero left — on top of overlay */
.home-left {
  background: transparent;
  z-index: 2;
}

.hero-badge {
  background: rgba(230,126,34,0.12);
  border: 1px solid rgba(230,126,34,0.3);
  color: #CF711F;
}

.hero-h1 { color: #1C2533; }
.hero-h1 .accent {
  background: linear-gradient(135deg, #E67E22, #CF711F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext { color: #5A6A7A; }

.hero-pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.6rem;
  background: #FEF0E0;
  border: 1px solid #FDDDB4;
  border-radius: 999px;
  font-size: 1.35rem;
  color: #5A6A7A;
  font-weight: 500;
}
.hero-pill ion-icon { color: #E67E22; font-size: 1.6rem; }

/* Hero stats row */
.hero-stats {
  display: flex;
  gap: 3.2rem;
  flex-wrap: wrap;
  margin-top: 3.6rem;
  padding-top: 3.2rem;
  border-top: 1px solid #FDDDB4;
}
.hero-stat-item {}
.hero-stat-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: #E67E22;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero-stat-lbl {
  font-size: 1.25rem;
  color: #5A6A7A;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Hero right — floating metric cards visible over Vegas image */
.home-right {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 10rem 5.6rem 5.6rem;
  z-index: 2;
  gap: 1.4rem;
}

.metric-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 1.6rem;
  padding: 1.8rem 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: 100%;
  max-width: 32rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.metric-card:hover { transform: translateX(-4px); box-shadow: 0 8px 32px rgba(230,126,34,0.12); }

.metric-icon {
  width: 4.4rem; height: 4.4rem;
  background: #FEF0E0;
  border-radius: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.metric-info { flex: 1; }
.metric-value { font-size: 2.2rem; font-weight: 800; color: #1C2533; line-height: 1; margin-bottom: 0.4rem; }
.metric-label { font-size: 1.25rem; color: #5A6A7A; font-weight: 500; }
.metric-badge {
  font-size: 1.1rem; font-weight: 700;
  background: #E67E22; color: #fff;
  padding: 0.3rem 1rem; border-radius: 999px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   PANEL 2 — PRODUCTS  (white | warm tint)
══════════════════════════════════════════════════════════ */
.panel-products { background: #fff; }

.products-left  { background: #fff; border-right: 1px solid #FEF0E0; }
.products-right { background: #FEF3E6; }

.product-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.6rem;
  background: #FEF0E0;
  border: 1px solid #FDDDB4;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B05E15;
  margin-bottom: 2.8rem;
  width: fit-content;
}

.products-left .panel-h2,
.products-right .panel-h2 { color: #1C2533; }
.products-left .panel-text,
.products-right .panel-text { color: #5A6A7A; }

/* Divider label */
.panel-section-label {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E67E22;
  margin-bottom: 1.6rem;
}

/* ══════════════════════════════════════════════════════════
   PANEL 2 — ABOUT US  (dark theme, matches brand)
══════════════════════════════════════════════════════════ */
.panel-about {
  background: #0d1117;
}

.about-left {
  background:
    radial-gradient(ellipse 70% 50% at 30% 50%, rgba(184,50,39,0.12) 0%, transparent 70%),
    linear-gradient(160deg, #0f0806 0%, #0d1117 100%);
  border-right: 1px solid rgba(230,126,34,0.12);
}
.about-right {
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(14,60,100,0.18) 0%, transparent 65%),
    linear-gradient(160deg, #070d14 0%, #0d1117 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 11rem 6.4rem 5.6rem;
  overflow: hidden;
  z-index: 2;
  gap: 2.4rem;
}

/* Override panel text colours for dark background */
.panel-about .panel-subhead { color: #E67E22; }
.panel-about .panel-h2      { color: #fff; }
.panel-about .panel-text    { color: rgba(255,255,255,0.6); }

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.about-stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(230,126,34,0.18);
  border-radius: 1.6rem;
  padding: 2.4rem 2rem;
  text-align: center;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s, background 0.22s;
}
.about-stat-box:hover {
  background: rgba(230,126,34,0.07);
  border-color: rgba(230,126,34,0.45);
  box-shadow: 0 8px 28px rgba(230,126,34,0.12);
  transform: translateY(-2px);
}
.about-stat-num { font-size: 3.4rem; font-weight: 800; color: #E67E22; line-height: 1; margin-bottom: 0.6rem; }
.about-stat-lbl { font-size: 1.3rem; color: rgba(255,255,255,0.45); font-weight: 500; line-height: 1.4; }

.about-quote {
  background: linear-gradient(135deg, rgba(184,50,39,0.4) 0%, rgba(207,113,31,0.3) 100%);
  border: 1px solid rgba(230,126,34,0.25);
  border-radius: 1.8rem;
  padding: 3.2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.about-quote::before {
  content: '\201C';
  position: absolute;
  top: -1.2rem; left: 1.6rem;
  font-size: 11rem;
  font-family: Georgia, serif;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}
.about-quote p {
  font-size: 1.7rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.72;
  position: relative;
  z-index: 1;
}
.about-quote cite {
  display: block;
  margin-top: 1.4rem;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.5);
  font-style: normal;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3.2rem;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.4rem 1.8rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(230,126,34,0.14);
  border-left: 3px solid #E67E22;
  border-radius: 0 1.2rem 1.2rem 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.value-item:hover {
  background: rgba(230,126,34,0.07);
  border-color: rgba(230,126,34,0.35);
  transform: translateX(4px);
}
.value-item ion-icon { font-size: 2.4rem; color: #E67E22; flex-shrink: 0; }
.value-item-body strong { display: block; font-size: 1.5rem; color: rgba(255,255,255,0.9); margin-bottom: 0.2rem; }
.value-item-body span  { font-size: 1.35rem; color: rgba(255,255,255,0.45); line-height: 1.4; }

/* Override btn-primary inside dark about panel */
.panel-about .btn-primary {
  background: linear-gradient(135deg, #B83227, #E67E22);
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(184,50,39,0.32);
}
.panel-about .btn-primary:hover {
  filter: brightness(1.1);
  border-color: transparent;
}

/* ══════════════════════════════════════════════════════════
   PANEL 3 — CONTACT  (WHITE THEME)
══════════════════════════════════════════════════════════ */
.panel-contact { background: #fff; }

.contact-left {
  background: #fff;
  border-right: 1px solid #FEF0E0;
  overflow: hidden;
}
.contact-right {
  background: #FEF3E6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5.6rem 5.6rem;
  overflow: hidden;   /* no scrollbar */
  z-index: 2;
  gap: 1.6rem;
}

/* Google Maps embed */
.contact-map-wrap {
  position: relative;
  width: 100%;
  height: 18rem;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid #FDDDB4;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(230,126,34,0.08);
}
.contact-map-wrap iframe {
  width: 100%; height: 100%; border: 0; display: block;
}
.contact-map-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,248,240,0.95);
  backdrop-filter: blur(6px);
  padding: 0.7rem 1.4rem;
  font-size: 1.2rem;
  color: #5A6A7A;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-top: 1px solid #FDDDB4;
}
.contact-map-label ion-icon { color: #E67E22; font-size: 1.35rem; flex-shrink: 0; }

/* 2-col contact cards */
.contact-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Override contact-card for warm-tint right panel */
.contact-right .contact-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid #FDDDB4;
}
.contact-right .contact-card:hover {
  background: #fff;
  border-color: #E67E22;
  box-shadow: 0 4px 16px rgba(230,126,34,0.1);
}
.contact-right .contact-icon {
  background: #FEF0E0;
  color: #E67E22;
}
.contact-right .contact-card-body strong { color: #5A6A7A; }
.contact-right .contact-card-body span   { color: #1C2533; }

/* demo-box on warm background */
.contact-right .demo-box {
  background: linear-gradient(135deg, #E67E22, #CF711F);
  border-radius: 1.4rem;
  padding: 2rem 2.4rem;
}
.contact-right .demo-box h3 { font-size: 1.7rem; color: #fff; font-weight: 700; margin-bottom: 0.6rem; }
.contact-right .demo-box p  { font-size: 1.35rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 1.4rem; }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  width: 100%;
  max-width: 50rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.6rem; }
.form-label { font-size: 1.3rem; font-weight: 600; color: #1C2533; }
.form-input, .form-textarea {
  padding: 1.2rem 1.6rem;
  background: #FFF8F2;
  border: 1.5px solid #FDDDB4;
  border-radius: 1rem;
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  color: #1C2533;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-textarea:focus {
  border-color: #E67E22;
  box-shadow: 0 0 0 3px rgba(230,126,34,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: #BBBBBB; }
.form-textarea { min-height: 11rem; resize: none; }

/* Contact right details */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 38rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.8rem 2.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.4rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.contact-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(230,126,34,0.4); }
.contact-icon {
  width: 4.4rem; height: 4.4rem;
  background: rgba(230,126,34,0.18);
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #F0A452;
  flex-shrink: 0;
}
.contact-card-body strong { display: block; font-size: 1.25rem; color: rgba(255,255,255,0.5); margin-bottom: 0.3rem; }
.contact-card-body span   { font-size: 1.5rem; color: rgba(255,255,255,0.88); font-weight: 600; line-height: 1.4; }

.demo-box {
  background: linear-gradient(135deg, #E67E22, #CF711F);
  border-radius: 1.6rem;
  padding: 2.4rem 2.8rem;
  max-width: 38rem;
}
.demo-box h3 { font-size: 1.8rem; color: #fff; font-weight: 700; margin-bottom: 0.8rem; }
.demo-box p  { font-size: 1.4rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 1.6rem; }

.contact-copy {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.3);
  max-width: 38rem;
  text-align: center;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .panel-half       { padding: 10rem 4.8rem 5.6rem; }
  .about-right,
  .contact-right    { padding: 10rem 4.8rem 5.6rem; }
  .panel-h1         { font-size: 4.8rem; }
  .panel-h2         { font-size: 3.6rem; }
}

@media (max-width: 768px) {
  .hamburger        { display: flex; }
  .site-nav         { display: none; }

  /* Stack horizontal panels vertically on mobile */
  .h-outer          { height: auto; }
  .h-sticky         { position: static; height: auto; overflow: visible; }
  .panels-track     { flex-direction: column; width: 100%; height: auto; transform: none !important; }
  .panel            { width: 100%; height: auto; min-height: 100svh; flex-direction: column; }

  .panel-half,
  .about-right,
  .contact-right    { width: 100%; height: auto; padding: 9.6rem 2.8rem 5.6rem; }

  .panel-h1         { font-size: 3.6rem; }
  .panel-h2         { font-size: 2.8rem; }
  .panel-text       { font-size: 1.6rem; }

  body.h-active .panel-dots,
  body.h-active .panel-arrow,
  body.h-active .panel-counter { opacity: 0; pointer-events: none; }

  .site-header      { padding: 0 2.4rem; }
  .about-stat-grid  { grid-template-columns: 1fr 1fr; }
  .form-row         { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .panel-half,
  .about-right,
  .contact-right    { padding: 8.8rem 2rem 4.8rem; }
  .panel-h1         { font-size: 3rem; }
  .panel-h2         { font-size: 2.4rem; }
  .btn-primary,
  .btn-ghost,
  .btn-ghost-orange { padding: 1.2rem 2.4rem; font-size: 1.5rem; }
  .mobile-nav-link  { font-size: 3rem; }
}
