/* ==========================================================================
   A1 Event Decor Manufacturing — Design Tokens
   Signature: the "Arch" — a nod to the event stage arches this company
   actually builds — used as a section divider, badge shape, and hero frame.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,500;9..144,600;9..144,700&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

:root {
  /* Color — deep luxury jewel-tone navy, warm gold-orange, refined sky accent */
  --navy-deep: #071426;
  --navy: #0C2340;
  --navy-soft: #123259;
  --white: #FFFFFF;
  --mist: #F6F8FC;
  --mist-2: #ECF1F8;
  --sky: #2F9BE0;
  --sky-soft: #DCEEFB;
  --gold: #D9A544;
  --gold-soft: #F4E6C8;
  --gold-deep: #A87C2C;
  --orange: #E8834A;
  --orange-deep: #C86A34;
  --ink: #121B29;
  --ink-soft: #59677A;
  --line: #E4E9F1;

  /* Type */
  --font-display: 'Fraunces', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Radius / shadow */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --shadow-sm: 0 3px 14px rgba(8, 27, 51, 0.07);
  --shadow-md: 0 16px 40px rgba(8, 27, 51, 0.11);
  --shadow-lg: 0 28px 70px rgba(8, 27, 51, 0.18);
  --shadow-glow: 0 10px 32px rgba(63, 169, 245, 0.28);

  --container: 1240px;
  --pad: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  animation: pageFadeIn 0.6s ease both;
}
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep, var(--gold));
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  border-radius: 2px;
}

.section-head { max-width: 640px; margin-bottom: 32px; }
.section-head.center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 600; }
.section-head .lede { margin-top: 12px; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.65; }

.section-pad { padding: clamp(40px, 7vw, 88px) 0; }
.bg-mist { background: var(--mist); }
.bg-navy { background: var(--navy-deep); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s, background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
  box-shadow: 0 10px 26px rgba(255, 122, 61, 0.35);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 130%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(255, 122, 61, 0.45); }
.hero .btn-primary { animation: ctaPulse 3s ease-in-out infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(255, 122, 61, 0.35); }
  50% { box-shadow: 0 10px 34px rgba(255, 122, 61, 0.55); }
}
@media (prefers-reduced-motion: reduce) { .hero .btn-primary { animation: none; } }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }
.btn-sky {
  background: var(--sky);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn-sky:hover { transform: translateY(-3px); background: #2f9ae0; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}

/* ---------- Nav ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 700;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--sky));
  transition: width 0.1s linear;
}
.site-header {
  position: fixed;
  top: 16px; left: 16px; right: 16px;
  z-index: 500;
  padding: 10px 8px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 8px 30px rgba(8, 27, 51, 0.1), inset 0 0 0 1px rgba(217,165,68,0.16);
  border-radius: 999px;
  max-width: 1320px; margin: 0 auto;
  transition: box-shadow 0.4s, padding 0.4s, background 0.4s, top 0.4s;
}
.site-header .container { padding-left: 14px; padding-right: 10px; }
.site-header.scrolled {
  top: 10px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 12px 36px rgba(8, 27, 51, 0.16), inset 0 0 0 1px rgba(217,165,68,0.22);
  padding: 8px 8px;
}
.site-header .nav-row { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: clamp(0.95rem, 3.2vw, 1.25rem); color: var(--navy-deep); white-space: nowrap; }
img[data-cms-logo] {
  background: linear-gradient(160deg, #ffffff, var(--gold-soft));
  padding: 6px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(8,27,51,0.18), inset 0 0 0 1px rgba(217,165,68,0.3);
  object-fit: contain;
}
.brand .mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--sky), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.1rem;
  box-shadow: var(--shadow-glow);
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: var(--navy-deep);
  font-weight: 600; font-size: 0.94rem;
  padding: 10px 16px; border-radius: 999px;
  transition: background 0.3s, color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange)); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { background: var(--sky-soft); color: var(--sky); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--navy-deep); margin: 6px 0; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

@media (max-width: 992px) {
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 82vw);
    background: #fff; flex-direction: column; align-items: stretch; justify-content: center;
    gap: 4px; padding: 40px 28px; transform: translateX(100%); transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
    box-shadow: -20px 0 50px rgba(8,27,51,0.18);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 16px 10px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; z-index: 600; }
  .nav-cta .btn-primary { display: none; }
}

/* ---------- Hero (split layout, light theme, arch divider) ---------- */
.hero {
  position: relative;
  padding: clamp(120px, 16vw, 168px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
  background: linear-gradient(180deg, #EFF5FC 0%, var(--mist) 55%, #fff 100%);
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -140px; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(63,169,245,0.18), transparent 70%);
  animation: floatOrb1 14s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute; bottom: -160px; left: -120px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,61,0.14), transparent 70%);
  animation: floatOrb2 17s ease-in-out infinite;
}
@keyframes floatOrb1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px, 25px) scale(1.08); } }
@keyframes floatOrb2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(25px, -20px) scale(1.06); } }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px, 5vw, 60px); align-items: center; }
.hero-inner .eyebrow { color: var(--gold-deep); }
.hero-inner .eyebrow::before { background: linear-gradient(90deg, var(--gold), var(--orange)); }
.hero h1 {
  color: var(--navy-deep);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 600;
}
.hero h1 .accent { color: var(--sky); font-style: italic; }
.hero .sub { margin-top: 20px; max-width: 46ch; font-size: 1.05rem; color: var(--ink-soft); line-height: 1.7; }
.hero .cta-row { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .cta-row .btn-ghost { background: #fff; color: var(--navy-deep); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.hero .cta-row .btn-ghost:hover { background: var(--mist); }
.hero-mini-stats { margin-top: 38px; display: flex; gap: clamp(20px, 4vw, 44px); flex-wrap: wrap; }
.hero-mini-stats .mini-stat b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--navy-deep); }
.hero-mini-stats .mini-stat span { font-size: 0.78rem; color: var(--ink-soft); letter-spacing: 0.02em; text-transform: uppercase; }

.hero-visual { position: relative; }
.hero-visual-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg); border: 6px solid #fff;
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.05); transition: opacity 1.4s ease, transform 6s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-visual-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,27,51,0) 40%, rgba(8,27,51,0.55) 100%);
}
.hero-visual-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2;
  color: #fff; display: flex; align-items: center; justify-content: space-between;
}
.hero-visual-badge .tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }
.hero-dots { display: flex; gap: 8px; position: absolute; top: 20px; right: 20px; z-index: 3; }
.hero-dots button { width: 22px; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.45); border: none; cursor: pointer; transition: background 0.3s, width 0.3s; }
.hero-dots button.active { background: #fff; width: 34px; }
.hero-arch { display: none; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual-card { aspect-ratio: 16/10; order: -1; }
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal-scale.in { opacity: 1; transform: scale(1); }
.stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------- Message / elegant card ---------- */
.message-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: var(--r-lg);
  padding: clamp(28px, 6vw, 64px);
  color: #fff;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(217,165,68,0.22);
  position: relative;
  overflow: hidden;
}
.message-card .quote-badge {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--orange)); color: #1a1200;
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; margin-bottom: 18px;
  box-shadow: 0 8px 22px rgba(217,165,68,0.35);
}
.message-card .eyebrow { color: var(--gold); }
.message-card .eyebrow::before { background: linear-gradient(90deg, var(--gold), var(--orange)); }
.message-card p.quote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  font-weight: 400;
  line-height: 1.55;
  position: relative; z-index: 1;
}
.message-card .actions { margin-top: 26px; }
@media (max-width: 480px) {
  .message-card .quote-badge { width: 42px; height: 42px; font-size: 1.4rem; margin-bottom: 14px; }
}

/* ---------- Generic cards ---------- */
.card {
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s, border-color 0.4s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(217,165,68,0.35); }

.glass {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.5);
}
.bg-navy .glass, .on-photo .glass {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
}

/* ---------- Icon badge (unified premium gold) ---------- */
.icon-badge {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--gold-soft), #F8EED8);
  color: var(--gold-deep);
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1.5px rgba(217,165,68,0.45), 0 6px 16px rgba(168,124,44,0.12);
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease;
}
.card:hover .icon-badge, .feature-card:hover .icon-badge, .value-card:hover .icon-badge {
  transform: translateY(-2px) scale(1.06);
  box-shadow: inset 0 0 0 1.5px rgba(217,165,68,0.55), 0 10px 22px rgba(168,124,44,0.2);
}
.icon-badge svg { width: 24px; height: 24px; }
.icon-badge.orange,
.icon-badge.gold,
.icon-badge.navy {
  background: linear-gradient(145deg, var(--gold-soft), #F8EED8);
  color: var(--gold-deep);
}

/* ---------- Grid helpers ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .mobile-2up { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .mobile-2up .feature-card, .mobile-2up .value-card {
    flex-direction: column !important; text-align: center; align-items: center; justify-content: flex-start;
    padding: 16px 10px; border-radius: 16px; gap: 0;
  }
  .mobile-2up .feature-card .icon-badge, .mobile-2up .value-card .icon-badge { margin: 0 auto 10px; }
  .mobile-2up .feature-card h4, .mobile-2up .value-card h4 { font-size: 0.8rem; line-height: 1.3; }
  .mobile-2up .feature-card p, .mobile-2up .value-card p { font-size: 0.72rem; margin-top: 4px; }
  .mobile-2up .feature-card.lg h3 { font-size: 1rem; margin-top: 10px; }
  .mobile-2up .feature-card.lg p { font-size: 0.76rem; }
  .mobile-2up .feature-card.lg .icon-badge { width: 44px; height: 44px; }
  .mobile-2up .feature-card.lg .icon-badge svg { width: 20px; height: 20px; }
}
@media (max-width: 640px) {
  #home-products-grid, #product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  #home-products-grid .product-body, #product-grid .product-body { padding: 14px; }
  #home-products-grid .product-body h3, #product-grid .product-body h3 { font-size: 0.92rem; }
  #home-products-grid .product-body .tagline, #product-grid .product-body .tagline { font-size: 0.78rem; }
  #home-products-grid .product-body .desc, #product-grid .product-body .desc { display: none; }
  #home-products-grid .cat, #product-grid .cat { font-size: 0.62rem; }
  #product-grid .know-more-btn { font-size: 0.78rem; }
}
@media (max-width: 380px) {
  #home-products-grid, #product-grid { grid-template-columns: 1fr; }
}

/* ---------- Feature list (Why choose us / services) ---------- */
.feature-card {
  padding: 22px 22px;
  display: flex; gap: 16px; align-items: center; position: relative; overflow: hidden;
  background: linear-gradient(165deg, #ffffff 0%, #FBF9F4 100%);
  border: 1px solid rgba(217,165,68,0.22);
  border-radius: var(--r-md);
  box-shadow: 0 4px 18px rgba(8, 27, 51, 0.05);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.3s ease;
}
.feature-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(8, 27, 51, 0.1);
  border-color: rgba(217,165,68,0.4);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card p { color: var(--ink-soft); font-size: 0.9rem; margin-top: 4px; line-height: 1.55; }
.feature-card h4 { font-size: 0.95rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.35; color: var(--navy-deep); }
.feature-card .icon-badge { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.feature-card .icon-badge svg { width: 18px; height: 18px; }
.feature-card.lg { align-items: flex-start; padding: 36px; gap: 0; flex-direction: column; }
.feature-card.lg .icon-badge { width: 56px; height: 56px; }
.feature-card.lg .icon-badge svg { width: 24px; height: 24px; }
.feature-card.lg h3 { margin-top: 18px; font-size: 1.25rem; }
.feature-card.lg p { margin-top: 10px; font-size: 0.95rem; line-height: 1.65; }
.service-card {
  text-align: center;
  align-items: center;
  justify-content: flex-start;
  min-height: 150px;
  padding: 28px 20px;
}
.service-card h4 { margin-top: 4px; }
  background: linear-gradient(165deg, #0F1F38, #0C1A30);
  border-color: rgba(217,165,68,0.2);
}

/* ---------- Stats ---------- */
.stats-strip { background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: #fff; border-radius: var(--r-lg); padding: clamp(28px, 5vw, 52px); box-shadow: inset 0 0 0 1px rgba(217,165,68,0.2); }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; color: var(--gold); text-shadow: 0 0 24px rgba(217,165,68,0.35); }
.stat .label { margin-top: 6px; font-size: 0.85rem; color: rgba(255,255,255,0.7); letter-spacing: 0.03em; }

/* ---------- Testimonials ---------- */
.testi-track { display: flex; transition: transform 0.6s cubic-bezier(.2,.8,.2,1); }
.testi-slide { flex: 0 0 100%; padding: 4px; }
.testi-card { padding: clamp(32px, 5vw, 52px); text-align: center; max-width: 700px; margin: 0 auto; position: relative; border: none; background: linear-gradient(180deg, #fff, var(--mist-2)); }
.testi-card::before {
  content: '\201C'; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 5rem; color: var(--gold-soft); line-height: 1;
}
.testi-avatar {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--navy), var(--gold-deep)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  position: relative; z-index: 1; box-shadow: var(--shadow-glow);
}
.testi-stars { color: var(--orange); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 14px; position: relative; z-index: 1; }
.testi-quote { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy-deep); line-height: 1.6; position: relative; z-index: 1; }
.testi-name { margin-top: 22px; font-weight: 700; }
.testi-city { color: var(--ink-soft); font-size: 0.88rem; }
.testi-nav { display: flex; justify-content: center; gap: 14px; margin-top: 30px; align-items: center; }
.testi-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.3s, color 0.3s, border 0.3s; }
.testi-arrow:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.testi-dots { display: flex; gap: 8px; }
.testi-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; }
.testi-dots button.active { background: var(--orange); }

/* ---------- Timeline (manufacturing process) — aligned number + text ---------- */
.timeline {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(217,165,68,0.15));
  border-radius: 2px;
}
.tl-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  min-height: 56px;
}
.tl-step:last-child { padding-bottom: 0; }
.tl-num {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--navy-deep), var(--navy));
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(8,27,51,0.25), inset 0 0 0 1.5px rgba(217,165,68,0.4);
  z-index: 1;
}
.tl-content {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 12px 18px;
  background: linear-gradient(165deg, #ffffff, var(--mist));
  border: 1px solid rgba(217,165,68,0.22);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.tl-step h4,
.tl-content h4 {
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  color: var(--navy-deep);
}
@media (max-width: 480px) {
  .timeline::before { left: 22px; }
  .tl-num { width: 44px; height: 44px; font-size: 1rem; }
  .tl-step { gap: 14px; }
  .tl-content { padding: 10px 14px; min-height: 44px; }
  .tl-content h4 { font-size: 0.92rem; }
}

/* ---------- Values ---------- */
.value-card {
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(217,165,68,0.2);
  background: linear-gradient(165deg, #ffffff, #FBF9F4);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(8, 27, 51, 0.1);
  border-color: rgba(217,165,68,0.4);
}
.value-card h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--navy-deep); }
.value-card p { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.55; }
.value-card .icon-badge { width: 48px; height: 48px; margin: 0 auto; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy) 60%, var(--navy-soft) 160%);
  border-radius: var(--r-lg);
  padding: clamp(36px, 7vw, 72px);
  color: #fff; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(217,165,68,0.22);
}
.cta-band::after {
  content: ''; position: absolute; inset: -2px; border-radius: inherit; padding: 2px; z-index: 0;
  background: conic-gradient(from 0deg, var(--gold), transparent 30%, var(--sky), transparent 60%, var(--orange), var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.35; animation: spinBorder 8s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .cta-band::after { animation: none; } }
.cta-band::before {
  content: ''; position: absolute; top: -60%; right: -10%; width: 60%; height: 220%;
  background: radial-gradient(circle, rgba(217,165,68,0.18), transparent 65%);
}
.cta-band h3 { color: #fff; font-size: clamp(1.5rem, 3.4vw, 2.2rem); max-width: 26ch; margin: 0 auto; position: relative; z-index: 1; }
.cta-band .btn { margin-top: 30px; position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 0 0 28px; position: relative; }
.site-footer::before { content: ''; display: block; height: 3px; background: linear-gradient(90deg, var(--gold), var(--sky), var(--orange), var(--gold)); }
.footer-cta {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
  padding: 56px 0 40px; margin-bottom: 40px; border-bottom: 1px solid rgba(217,165,68,0.2);
}
.footer-cta h3 { color: #fff; font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 600; }
.footer-cta p { color: rgba(255,255,255,0.6); margin-top: 6px; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-grid h4 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-grid a { font-size: 0.92rem; transition: color 0.3s, padding-left 0.3s; }
.footer-grid a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 14px; }
.footer-bottom .powered-by { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-bottom .powered-by strong { color: var(--gold); font-weight: 700; }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.3s, transform 0.3s; }
.social-row a:hover { background: var(--gold); color: #1a1200; transform: translateY(-3px); }
@media (max-width: 640px) { .footer-cta { flex-direction: column; align-items: flex-start; text-align: left; } .footer-cta .btn { width: 100%; } }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ---------- Breadcrumb / inner hero ---------- */
.page-hero {
  position: relative; min-height: 38vh; display: flex; align-items: flex-end; color: #fff;
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -40%; right: -10%; width: 60%; height: 180%;
  background: radial-gradient(circle, rgba(63,169,245,0.16), transparent 65%);
}
.page-hero-inner { position: relative; z-index: 2; padding: 130px 0 44px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--sky); }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4.6vw, 3rem); font-weight: 600; }

/* ---------- Founder / CEO ---------- */
.leader-band { padding: clamp(48px, 8vw, 88px) 0; }
.leader-band.tone-a { background: linear-gradient(120deg, var(--navy-deep), var(--navy) 70%); }
.leader-band.tone-b { background: linear-gradient(120deg, var(--navy-soft), var(--navy-deep) 75%); }
.leader-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.leader-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid rgba(255,255,255,0.08); aspect-ratio: 4/5; }
.leader-photo img { width: 100%; height: 100%; object-fit: cover; }
.leader-content .eyebrow { color: var(--gold); }
.leader-content .eyebrow::before { background: linear-gradient(90deg, var(--gold), var(--orange)); }
.leader-content blockquote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, 2.6vw, 1.5rem); color: #fff; line-height: 1.55; margin: 0 0 18px; }
.leader-content .who { color: var(--orange); font-weight: 700; font-size: 1rem; }
.leader-content .role { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 2px; }
.leader-grid-text-only {
  grid-template-columns: 1fr;
  justify-items: center;
}
.leader-grid-text-only .leader-content {
  text-align: center;
  max-width: 720px;
}
.leader-grid-text-only .leader-content .eyebrow {
  justify-content: center;
}
.leader-grid-text-only blockquote {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
}

@media (max-width: 720px) { .leader-grid { grid-template-columns: 1fr; } .leader-photo { max-width: 260px; margin: 0 auto; } .leader-content { text-align: center; } .leader-content .eyebrow { justify-content: center; } }

/* ---------- Who We Are (image collage + stats) ---------- */
.who-visual { position: relative; }
.who-img-main { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.who-img-main img { width: 100%; height: 100%; object-fit: cover; }
.who-img-sub {
  position: absolute; bottom: -30px; right: -30px; width: 44%; aspect-ratio: 1;
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid var(--white);
}
.who-img-sub img { width: 100%; height: 100%; object-fit: cover; }
.who-badge {
  position: absolute; top: -22px; right: 28px; z-index: 3;
  width: 92px; height: 92px; border-radius: 50%; background: linear-gradient(150deg, var(--navy-deep), var(--navy)); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(217,165,68,0.4); border: 4px solid var(--white);
}
.who-badge b { font-family: var(--font-display); font-size: 1.15rem; line-height: 1; color: var(--gold); }
.who-badge span { font-size: 0.58rem; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 3px; opacity: 0.85; }
.who-stats { display: flex; gap: clamp(20px, 4vw, 40px); margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.who-stats .stat-item b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--navy-deep); }
.who-stats .stat-item span { font-size: 0.76rem; color: var(--ink-soft); letter-spacing: 0.03em; text-transform: uppercase; }
@media (max-width: 640px) {
  .who-img-sub { width: 46%; right: -14px; bottom: -20px; }
  .who-badge { right: 10px; }
}
.since-badge {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--white); border-radius: 999px; padding: 10px 26px 10px 10px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.since-badge .yr { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--orange-deep)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); font-size: 0.95rem; }

/* ---------- Products page ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 10px 20px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff;
  font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: all 0.3s;
}
.chip.active, .chip:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.tool-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.search-box { position: relative; }
.search-box input {
  padding: 12px 18px 12px 42px; border-radius: 999px; border: 1.5px solid var(--line);
  font-family: var(--font-body); font-size: 0.9rem; width: 240px; max-width: 60vw;
}
.search-box svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--ink-soft); }
.sort-select { padding: 12px 18px; border-radius: 999px; border: 1.5px solid var(--line); font-family: var(--font-body); font-weight: 600; font-size: 0.88rem; background: #fff; }

.product-card { overflow: hidden; position: relative; }
.product-card .ribbon {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  background: linear-gradient(120deg, var(--orange), var(--gold-deep)); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 6px 14px; border-radius: 999px; text-transform: uppercase; box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.product-card .badge-featured { background: linear-gradient(120deg, var(--navy-deep), var(--navy-soft)); }
.product-card .badge-popular { background: linear-gradient(120deg, var(--sky), #1d6fa8); }
.p-slider { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--r-md) var(--r-md) 0 0; }
.p-slide-track { display: flex; height: 100%; transition: transform 0.5s ease; }
.p-slide-track img { width: 100%; height: 100%; object-fit: cover; flex-shrink: 0; transition: transform 0.6s ease; }
.product-card:hover .p-slide-track img { transform: scale(1.06); }
.p-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.85); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: opacity 0.3s; z-index: 2; }
.p-slider:hover .p-nav { opacity: 1; }
.p-nav.prev { left: 10px; } .p-nav.next { right: 10px; }
.p-dots { position: absolute; bottom: 10px; left: 0; right: 0; display: flex; justify-content: center; gap: 5px; z-index: 2; }
.p-dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.6); }
.p-dots span.active { background: #fff; width: 16px; border-radius: 4px; }
.product-body { padding: 24px; }
.product-body .cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sky); }
.product-body h3 { font-size: 1.2rem; margin-top: 6px; font-weight: 600; }
.product-body .tagline { font-family: var(--font-display); font-style: italic; color: var(--orange-deep); font-size: 0.95rem; margin-top: 4px; }
.product-body .desc { color: var(--ink-soft); font-size: 0.9rem; margin-top: 10px; line-height: 1.6; }
.product-body .foot-row { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.product-body .price { font-weight: 700; color: var(--navy-deep); }
.know-more-btn { background: none; border: none; color: var(--navy); font-weight: 700; font-size: 0.88rem; cursor: pointer; display: flex; align-items: center; gap: 6px; padding: 8px 0; }
.know-more-btn svg { transition: transform 0.3s; width: 16px; height: 16px; }
.know-more-btn.open svg { transform: rotate(180deg); }

.product-expand {
  max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(.2,.8,.2,1);
  border-top: 1px solid var(--line);
}
.product-expand.open { max-height: 900px; }
.product-expand-inner { padding: 22px 24px 26px; }
.product-expand-inner .gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 14px; }
.product-expand-inner .gallery img { aspect-ratio: 1; object-fit: cover; border-radius: 10px; cursor: zoom-in; transition: transform 0.3s; }
.product-expand-inner .gallery img:hover { transform: scale(1.04); }
.empty-state { text-align: center; padding: 70px 20px; color: var(--ink-soft); }
.product-video { margin-top: 14px; border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--shadow-sm); }
.product-video iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Contact ---------- */
.contact-form { display: grid; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.85rem; font-weight: 700; color: var(--navy-deep); }
.field input, .field textarea {
  padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--mist);
  transition: border 0.3s, background 0.3s;
}
.field input:focus, .field textarea:focus { border-color: var(--sky); background: #fff; outline: none; }
.field .err { color: #D64545; font-size: 0.8rem; display: none; }
.field.invalid input, .field.invalid textarea { border-color: #D64545; }
.field.invalid .err { display: block; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-row-2 { grid-template-columns: 1fr; } }
.form-status { display: none; padding: 14px 18px; border-radius: 12px; font-size: 0.9rem; font-weight: 600; }
.form-status.success { display: block; background: #E4F7EC; color: #1E7A45; }
.form-status.error { display: block; background: #FCE8E8; color: #B23131; }

.contact-info-card {
  padding: 26px 28px;
  display: flex;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(217,165,68,0.2);
  background: linear-gradient(165deg, #ffffff, #FBF9F4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(8, 27, 51, 0.08);
  border-color: rgba(217,165,68,0.38);
}
.contact-info-card h4 { font-size: 1rem; margin-bottom: 4px; color: var(--navy-deep); }
.contact-info-card p, .contact-info-card a { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.6; }
.contact-info-card .icon-badge { width: 48px; height: 48px; }
.map-wrap { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16/9; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Welcome popup (cinematic entrance) ---------- */
.welcome-popup-overlay {
  position: fixed; inset: 0; z-index: 2100;
  background: radial-gradient(circle at 30% 20%, rgba(63,169,245,0.16), transparent 55%),
              radial-gradient(circle at 75% 80%, rgba(217,165,68,0.14), transparent 55%),
              rgba(5,12,24,0.82);
  background-size: 200% 200%;
  animation: meshDrift 12s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.5s ease; backdrop-filter: blur(10px);
}
@keyframes meshDrift { 0%,100% { background-position: 0% 0%, 100% 100%, 0 0; } 50% { background-position: 20% 30%, 80% 60%, 0 0; } }
.welcome-popup-overlay.open { opacity: 1; pointer-events: auto; }
.welcome-popup-card {
  position: relative; background: linear-gradient(165deg, var(--navy-deep), var(--navy) 140%);
  border-radius: var(--r-lg); padding: clamp(36px, 6vw, 56px); max-width: 440px; width: 100%; text-align: center;
  box-shadow: 0 30px 90px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(217,165,68,0.3);
  transform: scale(0.88) translateY(16px); transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.welcome-popup-overlay.open .welcome-popup-card { transform: scale(1) translateY(0); }
.welcome-popup-card::before {
  content: ''; position: absolute; inset: -2px; border-radius: inherit; padding: 2px;
  background: conic-gradient(from 0deg, var(--gold), var(--sky), var(--orange), var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; animation: none;
}
.welcome-popup-overlay.open .welcome-popup-card::before { opacity: 0.5; animation: spinBorder 6s linear infinite; }
@keyframes spinBorder { to { transform: rotate(360deg); } }

.welcome-logo-ring {
  position: relative; width: 92px; height: 92px; margin: 0 auto 22px;
  opacity: 0; transform: scale(0.4) rotate(-25deg);
}
.welcome-popup-overlay.open .welcome-logo-ring { animation: logoPop 0.7s 0.15s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes logoPop { to { opacity: 1; transform: scale(1) rotate(0deg); } }
.welcome-logo-ring::before {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid transparent; border-top-color: var(--gold); border-right-color: var(--sky);
  animation: ringSpin 3.5s linear infinite;
}
.welcome-logo-ring::after {
  content: ''; position: absolute; inset: -18px; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(217,165,68,0.35);
  animation: ringPulse 2.4s ease-out infinite;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
@keyframes ringPulse { 0% { box-shadow: 0 0 0 0 rgba(217,165,68,0.35); } 70%,100% { box-shadow: 0 0 0 18px rgba(217,165,68,0); } }
.welcome-popup-logo {
  width: 100%; height: 100%; object-fit: contain; position: relative; z-index: 1;
  background: linear-gradient(160deg, #ffffff, var(--gold-soft)); padding: 12px; border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.wp-title, .wp-message { opacity: 0; transform: translateY(14px); color: #fff; }
.welcome-popup-overlay.open .wp-title { animation: wpRise 0.6s 0.4s ease forwards; }
.welcome-popup-overlay.open .wp-message { animation: wpRise 0.6s 0.6s ease forwards; }
@keyframes wpRise { to { opacity: 1; transform: translateY(0); } }
.wp-title { font-size: 1.5rem; }
.wp-message { margin-top: 14px; color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.65; }
.wp-progress { margin-top: 22px; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.12); overflow: hidden; }
.wp-progress-bar { height: 100%; width: 100%; background: linear-gradient(90deg, var(--gold), var(--orange)); transform: scaleX(0); transform-origin: left; }
.welcome-popup-overlay.open .wp-progress-bar { animation: wpCountdown 5s linear forwards; }
@keyframes wpCountdown { from { transform: scaleX(1); } to { transform: scaleX(0); } }
.welcome-popup-close {
  position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; z-index: 2;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); cursor: pointer; font-size: 1.1rem; color: #fff;
  display: flex; align-items: center; justify-content: center; transition: background 0.3s, transform 0.3s;
}
.welcome-popup-close:hover { background: var(--gold); color: #1a1200; transform: rotate(90deg); }
@media (max-width: 480px) {
  .welcome-logo-ring { width: 72px; height: 72px; }
  .wp-title { font-size: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .welcome-popup-overlay, .welcome-logo-ring, .welcome-logo-ring::before, .welcome-logo-ring::after,
  .wp-title, .wp-message, .welcome-popup-card::before { animation: none !important; opacity: 1 !important; transform: none !important; }
}
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 2000; background: rgba(5,12,24,0.88);
  display: flex; align-items: center; justify-content: center; padding: 40px 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
  backdrop-filter: blur(6px);
}
.lightbox-overlay.open { opacity: 1; pointer-events: auto; }
.lightbox-overlay img {
  max-width: min(900px, 92vw); max-height: 86vh; border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.92); transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}
.lightbox-overlay.open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 22px; right: 26px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.25); color: #fff;
  font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.lightbox-close:hover { background: var(--gold); color: #1a1200; transform: rotate(90deg); }
.lightbox-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55); font-size: 0.78rem; letter-spacing: 0.04em;
}
[data-lightbox-target] { cursor: zoom-in; }
.p-slide-track img, .product-expand-inner .gallery img, .who-img-main img, .who-img-sub img, .leader-photo img, .img-frame img, #home-products-grid img {
  cursor: zoom-in;
}
/* ---------- Angled section dividers (structural signature) ---------- */
.section-angled { position: relative; overflow: hidden; }
.section-angled::before {
  content: ''; position: absolute; top: -1px; left: -2%; right: -2%; height: 56px;
  background: inherit; transform: skewY(-1.6deg); transform-origin: top left; z-index: 0; pointer-events: none;
}
.section-angled > .container { position: relative; z-index: 1; }
@media (max-width: 640px) { .section-angled::before { height: 36px; } }

.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16{margin-top:16px;} .mt-24{margin-top:24px;} .mt-32{margin-top:32px;} .mt-48{margin-top:48px;}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.img-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md), 0 0 0 1px rgba(217,165,68,0.25); position: relative; z-index: 1; }
.img-frame img { transition: transform 0.6s ease; }
.img-frame:hover img { transform: scale(1.04); }
.photo-deco { position: relative; }
.photo-deco::before {
  content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 2px solid var(--gold); border-radius: var(--r-lg); z-index: 0; opacity: 0.55;
}
@media (max-width: 640px) { .photo-deco::before { top: -10px; left: -10px; right: 10px; bottom: 10px; } }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 12px 20px; z-index: 999; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }

@media (max-width: 480px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .btn { padding: 13px 22px; font-size: 0.88rem; }
  .profile-card { padding: 24px; }
  .hero .cta-row { flex-direction: column; }
  .hero .cta-row .btn { width: 100%; }
  .hero-mini-stats { gap: 18px; }
  .leader-photo { max-width: 200px; }
  .who-img-sub { display: none; }
}



/* ---------- Professional polish refinements ---------- */
.card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feature-card:hover {
  border-color: rgba(217, 165, 68, 0.35);
}
.btn {
  letter-spacing: 0.02em;
}
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(217,165,68,0.12), transparent 55%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.leader-band {
  position: relative;
}
.leader-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,165,68,0.35), transparent);
}
.section-head h2 {
  letter-spacing: -0.02em;
}
.cta-band {
  border: 1px solid rgba(217,165,68,0.2);
}
.site-footer {
  border-top: 1px solid var(--line);
}
.hero-copy h1 {
  letter-spacing: -0.025em;
}
.nav-links a {
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}


/* ==========================================================================
   Premium section redesigns — Mission/Vision, Why, Services, Values, Process
   ========================================================================== */

/* Mission + Vision stacked */
.mv-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 820px;
  margin: 0 auto;
}
.mv-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: clamp(24px, 4vw, 36px);
  background: linear-gradient(145deg, #ffffff 0%, #FBF8F1 100%);
  border: 1px solid rgba(217, 165, 68, 0.28);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(8, 27, 51, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.mv-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
}
.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(8, 27, 51, 0.1);
}
.mv-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: var(--gold);
  box-shadow: 0 8px 20px rgba(8, 27, 51, 0.22), inset 0 0 0 1px rgba(217,165,68,0.35);
}
.mv-icon svg { width: 26px; height: 26px; }
.mv-body { flex: 1; min-width: 0; }
.mv-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.mv-body h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  margin-bottom: 10px;
  color: var(--navy-deep);
}
.mv-body p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
  display: block;
  visibility: visible;
  opacity: 1;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.mv-card {
  overflow: visible;
}
.mv-body {
  flex: 1;
  min-width: 0;
  width: 100%;
}
@media (max-width: 560px) {
  .mv-card { flex-direction: column; gap: 14px; padding: 22px; }
  .mv-icon { width: 48px; height: 48px; border-radius: 14px; }
  .mv-icon svg { width: 22px; height: 22px; }
}

/* Why Choose Us — premium points */
.premium-point {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(217, 165, 68, 0.22);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(8, 27, 51, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.premium-point:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(8, 27, 51, 0.09);
  border-color: rgba(217, 165, 68, 0.45);
}
.pp-check {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--gold-soft), #F8EED8);
  color: var(--gold-deep);
  box-shadow: inset 0 0 0 1.5px rgba(217,165,68,0.4);
}
.pp-check svg { width: 16px; height: 16px; }
.premium-point h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.4;
  color: var(--navy-deep);
  font-family: var(--font-body);
}

/* Services — numbered premium tiles */
.premium-service {
  position: relative;
  padding: 28px 22px 24px;
  background: linear-gradient(165deg, #ffffff, #FBF8F1);
  border: 1px solid rgba(217, 165, 68, 0.22);
  border-radius: 18px;
  text-align: left;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}
.premium-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(8, 27, 51, 0.1);
  border-color: rgba(217, 165, 68, 0.4);
}
.ps-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: rgba(217, 165, 68, 0.45);
  line-height: 1;
  margin-bottom: 14px;
}
.premium-service h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy-deep);
}
.ps-line {
  display: block;
  margin-top: 18px;
  height: 3px;
  width: 36px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  transition: width 0.35s ease;
}
.premium-service:hover .ps-line { width: 56px; }

/* Values — premium */
.premium-value {
  padding: 28px 22px;
  text-align: center;
  background: linear-gradient(165deg, #ffffff, #FBF8F1);
  border: 1px solid rgba(217, 165, 68, 0.22);
  border-radius: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}
.premium-value:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(8, 27, 51, 0.1);
  border-color: rgba(217, 165, 68, 0.4);
}
.pv-icon {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: var(--gold);
  box-shadow: 0 8px 18px rgba(8, 27, 51, 0.2), inset 0 0 0 1px rgba(217,165,68,0.35);
}
.pv-icon svg { width: 22px; height: 22px; }
.premium-value h4 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--navy-deep);
}
.premium-value p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Contact cards — align premium */
.contact-info-card .icon-badge {
  background: linear-gradient(145deg, var(--navy-deep), var(--navy)) !important;
  color: var(--gold) !important;
  box-shadow: 0 8px 18px rgba(8, 27, 51, 0.18), inset 0 0 0 1px rgba(217,165,68,0.3) !important;
  border-radius: 14px !important;
}

/* Premium grid responsive */
.premium-grid {
  gap: 16px;
}
@media (max-width: 1024px) {
  .premium-grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .premium-grid.grid-3,
  .premium-grid.grid-4 { grid-template-columns: 1fr; gap: 12px; }
  .premium-service { min-height: 0; padding: 22px 18px; }
  .premium-point { padding: 16px 16px; }
}

/* Dark theme */
img, video, svg { max-width: 100%; height: auto; }
.container { width: 100%; }

/* Tablet */
@media (max-width: 1024px) {
  .hero-inner { gap: 32px; }
  .two-col { gap: 28px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .leader-grid { grid-template-columns: 1fr; }
  .leader-photo { max-width: 280px; margin: 0 auto; }
}

/* Mobile landscape / small tablet */
@media (max-width: 768px) {
  .nav-links { gap: 4px; }
  .hero-copy h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .section-pad { padding-top: clamp(40px, 8vw, 64px); padding-bottom: clamp(40px, 8vw, 64px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
  .page-hero-inner h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .mv-stack { gap: 16px; }
  .mv-card { padding: 20px; gap: 16px; }
  .mv-body h3 { font-size: 1.1rem; }
  .mv-body p { font-size: 0.92rem; line-height: 1.65; }
  .cta-band { padding: 28px 20px; }
  .cta-band h3 { font-size: 1.15rem; }
}

/* Phone */
@media (max-width: 560px) {
  .site-header .brand span { font-size: 0.95rem; }
  .hero-mini-stats { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-cta { flex-direction: column; text-align: center; gap: 16px; }
  .who-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .who-stats .stat-item b { font-size: 1.2rem; }
  .premium-grid.grid-3,
  .premium-grid.grid-4,
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; }
  .premium-point h4 { font-size: 0.9rem; }
  .contact-info-card { flex-direction: row; padding: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .btn { width: auto; }
  .nav-cta .btn-primary { display: none; }
  .tl-step { gap: 12px; }
  .timeline { max-width: 100%; }
}

/* Very small phones */
@media (max-width: 380px) {
  .mv-body h3 { font-size: 1rem; }
  .mv-body p { font-size: 0.88rem; }
  .premium-service { padding: 18px 14px; }
  .section-head h2 { font-size: 1.35rem; }
}

/* Large desktops */
@media (min-width: 1400px) {
  :root { --container: 1280px; }
}


/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 14px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #1ebe57);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
}
.wa-float svg { flex-shrink: 0; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0.15); }
}
@media (max-width: 560px) {
  .wa-float {
    right: 14px;
    bottom: 16px;
    padding: 12px 14px;
  }
  .wa-float span { display: none; }
  .wa-float { border-radius: 50%; width: 56px; height: 56px; justify-content: center; padding: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}


/* ==========================================================================
   PROFESSIONAL REFINEMENT 2026
   ========================================================================== */

/* Cleaner type rhythm */
body {
  letter-spacing: 0.01em;
}
h1, h2, h3, h4 {
  letter-spacing: -0.025em;
}
.lede {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* Header — more refined glass */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(8, 27, 51, 0.06);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 30px rgba(8, 27, 51, 0.08);
}
.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(12, 35, 64, 0.06);
  color: var(--navy-deep);
}
.nav-links a.active {
  background: rgba(47, 155, 224, 0.12);
  color: var(--navy);
}

/* Page hero — tighter, more premium */
.page-hero {
  padding: clamp(72px, 12vw, 120px) 0 clamp(48px, 8vw, 72px);
}
.page-hero-inner h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
}

/* Sections */
.section-pad {
  padding: clamp(56px, 9vw, 100px) 0;
}
.section-head.center {
  margin-bottom: clamp(32px, 5vw, 48px);
}
.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 600;
}
.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

/* Cards — quieter, more corporate */
.premium-point,
.premium-service,
.premium-value,
.mv-card,
.contact-info-card {
  border-radius: 16px;
  border-color: rgba(8, 27, 51, 0.08);
  box-shadow: 0 2px 12px rgba(8, 27, 51, 0.04);
}
.premium-point:hover,
.premium-service:hover,
.premium-value:hover,
.mv-card:hover,
.contact-info-card:hover {
  box-shadow: 0 16px 40px rgba(8, 27, 51, 0.09);
  border-color: rgba(217, 165, 68, 0.35);
}

/* Leader bands */
.leader-band {
  padding: clamp(56px, 9vw, 96px) 0;
}
.leader-content blockquote {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 500;
  line-height: 1.55;
}
.leader-photo {
  border-radius: 20px;
  border: 4px solid rgba(255,255,255,0.12);
}

/* Timeline refined */
.tl-content {
  border-radius: 12px;
  border-color: rgba(8, 27, 51, 0.08);
}
.tl-num {
  box-shadow: 0 6px 18px rgba(8, 27, 51, 0.2);
}

/* CTA */
.cta-band {
  border-radius: 24px;
  padding: clamp(40px, 7vw, 64px) clamp(24px, 5vw, 48px);
}
.cta-band h3 {
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 500;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding-top: 0;
}
.site-footer .footer-cta {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer h3, .site-footer h4 {
  color: #fff;
}
.site-footer a:hover {
  color: var(--gold);
}

/* Buttons */
.btn-primary {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 14px 28px;
}
.btn-ghost, .btn-sky, .btn-outline-navy {
  border-radius: 999px;
}

/* About story section readability */
.bg-navy .lede {
  max-width: 42ch;
}

/* Services page spacing */
#services-grid {
  gap: 18px;
}
