/* ============================================================
   ROYAL COIN CARDS — Premium CSS
   Theme: Dark Navy + Metallic Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Cinzel:wght@400;500;600;700;900&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --navy:        #080C20;
  --navy-mid:    #0D1230;
  --navy-light:  #141A3D;
  --navy-card:   #0F1535;
  --gold:        #C9A84C;
  --gold-light:  #E4C46E;
  --gold-dark:   #9A7A2E;
  --gold-pale:   #F5E6B8;
  --cream:       #F8F2E3;
  --white:       #FFFFFF;
  --text-muted:  #8A95B5;
  --border:      rgba(201,168,76,0.2);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.15);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.5);
  --ff-display:  'Cinzel', serif;
  --ff-body:     'Raleway', sans-serif;
  --ff-accent:   'Cormorant Garamond', serif;
  --transition:  all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── PARTICLE CANVAS ── */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── SELECTION ── */
::selection { background: var(--gold); color: var(--navy); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 12, 32, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.site-header.scrolled {
  height: 68px;
  background: rgba(8, 12, 32, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-svg-wrap {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.logo-text-wrap { line-height: 1; }
.logo-name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  display: block;
}
.logo-tagline {
  font-family: var(--ff-accent);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Quote Button */
.btn-quote {
  font-family: var(--ff-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  border: none;
  padding: 10px 22px;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  white-space: nowrap;
}
.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(8,12,32,0.98);
  backdrop-filter: blur(20px);
  padding: 2rem 5%;
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border);
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--gold-light); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 35px rgba(37,211,102,0.6);
}
.whatsapp-float svg { width: 30px; height: 30px; }

@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 25px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 25px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* Tooltip */
.whatsapp-float::before {
  content: 'Chat with us';
  position: absolute;
  right: 70px;
  background: var(--navy-light);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-float:hover::before { opacity: 1; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 14px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: transparent;
  padding: 13px 30px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline:hover {
  background: rgba(201,168,76,0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.2);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { position: relative; z-index: 1; }

.section-label {
  font-family: var(--ff-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 0 0 30px;
  height: 1px;
  background: var(--gold-dark);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-title span { color: var(--gold-light); }

.section-subtitle {
  font-family: var(--ff-accent);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-subtitle { margin: 0 auto; }

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Gold divider */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
  opacity: 0.4;
}

/* ============================================================
   HOME PAGE — HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 5% 5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--ff-display);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease 0.2s both;
}
.hero-title .gold { color: var(--gold-light); }
.hero-title .outline {
  -webkit-text-stroke: 1px var(--gold-dark);
  color: transparent;
}

.hero-desc {
  font-family: var(--ff-accent);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  animation: fadeInDown 1s ease 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInDown 1s ease 0.6s both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  animation: fadeInDown 1s ease 0.8s both;
}

.hero-stat {}
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* 3D Card Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1.2s ease 0.3s both;
}

.card-3d-scene {
  perspective: 1200px;
  width: 320px;
  height: 440px;
}

.card-3d {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: card-float 6s ease-in-out infinite, card-rotate-y 12s linear infinite;
}

.card-face {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  backface-visibility: hidden;
  overflow: hidden;
}

.card-front {
  background: linear-gradient(135deg, #0F1535 0%, #1A2155 50%, #0F1535 100%);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(201,168,76,0.2);
}

.card-back {
  background: linear-gradient(135deg, #1A2155 0%, #0F1535 50%, #1A2155 100%);
  border: 1px solid rgba(201,168,76,0.2);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(201,168,76,0.06) 50%, transparent 60%);
  animation: card-shine 3s ease-in-out infinite;
}

@keyframes card-float {
  0%,100% { transform: translateY(0) rotateX(5deg); }
  50%      { transform: translateY(-20px) rotateX(-5deg); }
}
@keyframes card-rotate-y {
  0%   { transform: translateY(0) rotateY(0deg); }
  50%  { transform: translateY(-20px) rotateY(180deg); }
  100% { transform: translateY(0) rotateY(360deg); }
}
@keyframes card-shine {
  0%,100% { opacity: 0; }
  50%      { opacity: 1; }
}

.card-coin-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #F5E6B8, #C9A84C 40%, #9A7A2E 70%, #6B5520);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow:
    0 0 0 2px rgba(201,168,76,0.3),
    0 0 0 8px rgba(201,168,76,0.08),
    0 20px 40px rgba(0,0,0,0.5),
    inset 0 -5px 15px rgba(0,0,0,0.3);
  animation: coin-glow 3s ease-in-out infinite;
}
@keyframes coin-glow {
  0%,100% { box-shadow: 0 0 0 2px rgba(201,168,76,0.3), 0 0 0 8px rgba(201,168,76,0.08), 0 20px 40px rgba(0,0,0,0.5); }
  50%      { box-shadow: 0 0 0 2px rgba(201,168,76,0.6), 0 0 0 16px rgba(201,168,76,0.15), 0 20px 40px rgba(0,0,0,0.5); }
}

.card-coin-text {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  text-align: center;
}
.card-coin-sub {
  font-family: var(--ff-accent);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: center;
}
.card-corner-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  font-family: var(--ff-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 2px;
}
.card-ornament {
  font-family: var(--ff-accent);
  font-size: 0.65rem;
  color: rgba(201,168,76,0.5);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.8rem;
  text-align: center;
}

/* Glow behind card */
.card-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glow-pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  50%      { transform: translate(-50%,-50%) scale(1.3); opacity: 1; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: rgba(201,168,76,0.06);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 5%;
  position: relative;
  z-index: 2;
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-sep { color: var(--gold-dark); opacity: 0.4; font-size: 1.2rem; }

/* ============================================================
   HOME — WHY CHOOSE US
   ============================================================ */
.why-section {
  padding: 100px 0;
  position: relative;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.why-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.4); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold-light);
  font-size: 1.5rem;
}
.why-title {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.why-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   HOME — FEATURED PRODUCTS TEASER
   ============================================================ */
.featured-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.03) 50%, transparent);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.product-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: var(--shadow-gold);
}
.product-card-img {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-coin-visual {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #F5E6B8, #C9A84C 40%, #9A7A2E 70%, #6B5520);
  box-shadow: 0 0 40px rgba(201,168,76,0.2), 0 10px 30px rgba(0,0,0,0.4);
  animation: coin-spin 8s linear infinite;
}
.product-coin-visual.silver {
  background: radial-gradient(circle at 35% 35%, #FFFFFF, #C0C0C0 40%, #808080 70%, #505050);
}
@keyframes coin-spin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
.product-card-body { padding: 1.5rem; }
.product-type {
  font-family: var(--ff-display);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.product-name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.product-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--navy-mid), var(--navy));
  position: relative;
}
.about-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 60%);
}

.about-story {
  padding: 100px 0;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-story-visual {
  position: relative;
}
.about-card-stack {
  position: relative;
  height: 400px;
}
.stacked-card {
  position: absolute;
  width: 260px; height: 360px;
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.2);
  background: linear-gradient(135deg, var(--navy-card), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.stacked-card:nth-child(1) { left: 0; top: 20px; transform: rotate(-6deg); z-index: 1; }
.stacked-card:nth-child(2) { left: 30px; top: 10px; transform: rotate(-2deg); z-index: 2; }
.stacked-card:nth-child(3) { left: 60px; top: 0; z-index: 3; background: linear-gradient(135deg, #1A2155, var(--navy-card)); border-color: rgba(201,168,76,0.4); box-shadow: var(--shadow-gold); }

.about-quote {
  font-family: var(--ff-accent);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-pale);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}

.about-pillars {
  padding: 80px 0;
  background: rgba(201,168,76,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.pillar {
  text-align: center;
  padding: 2rem;
}
.pillar-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pillar-title {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.pillar-text {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Process Timeline */
.process-section { padding: 100px 0; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 30px; left: 30px; right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.step-icon {
  width: 60px; height: 60px;
  background: var(--navy-light);
  border: 2px solid var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold-light);
  font-size: 1.3rem;
  font-family: var(--ff-display);
  font-weight: 700;
  position: relative;
  z-index: 1;
  background: var(--navy-card);
  transition: var(--transition);
}
.process-step:hover .step-icon {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  transform: scale(1.1);
}
.step-title {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.step-text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--navy-mid), var(--navy));
  position: relative;
}
.products-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 60%);
}

.products-grid {
  padding: 80px 0;
}
.products-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.prod-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  perspective: 1000px;
  cursor: pointer;
  transition: var(--transition);
}
.prod-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); border-color: rgba(201,168,76,0.45); }

.prod-card-inner {
  position: relative;
  width: 100%; height: 250px;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.prod-card:hover .prod-card-inner { transform: rotateY(180deg); }
.prod-card-front, .prod-card-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.prod-card-back { transform: rotateY(180deg); background: rgba(201,168,76,0.06); }

.prod-body { padding: 1.5rem; border-top: 1px solid var(--border); }
.prod-tag {
  font-family: var(--ff-display);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.prod-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.prod-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.prod-badge {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-light);
  font-family: var(--ff-display);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  margin-right: 6px;
  margin-bottom: 4px;
  display: inline-block;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--navy-mid), var(--navy));
  position: relative;
}
.gallery-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 60%);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold-light);
}

.gallery-section { padding: 80px 0; }
.gallery-masonry {
  columns: 3;
  column-gap: 1.5rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy-card);
  border: 1px solid var(--border);
}
.gallery-item-inner {
  position: relative;
  overflow: hidden;
}
.gallery-item-inner img,
.gallery-placeholder {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-placeholder {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem;
  min-height: 200px;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,12,32,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--navy-mid), var(--navy));
  position: relative;
}
.contact-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 60%);
}

.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-title {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.contact-info-sub {
  font-family: var(--ff-accent);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-item-label {
  font-family: var(--ff-display);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.contact-item-value {
  font-size: 0.9rem;
  color: var(--cream);
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.social-link {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* WhatsApp CTA */
.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: white;
  padding: 16px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2rem;
  transition: var(--transition);
  display: inline-flex;
  width: fit-content;
}
.whatsapp-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

/* Contact Form */
.contact-form {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3rem;
}
.form-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 12px 16px;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dark);
  background: rgba(201,168,76,0.04);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy-card); color: var(--cream); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 60px 5% 30px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.footer-logo-wrap .logo-svg-wrap { width: 44px; height: 44px; }
.footer-tagline {
  font-family: var(--ff-accent);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.footer-social { display: flex; gap: 0.6rem; }

.footer-col-title {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0.9rem;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.footer-contact-item svg { color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-copy span { color: var(--gold); }
.footer-made {
  font-family: var(--ff-accent);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--text-muted);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .pillars-grid { grid-template-columns: repeat(2,1fr); }
  .featured-grid { grid-template-columns: repeat(2,1fr); }
  .products-card-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
  .nav-links, .btn-quote { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 4rem 5%; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .card-3d-scene { width: 240px; height: 330px; }
  .about-story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .featured-grid, .products-card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-steps::before { display: none; }
  .gallery-masonry { columns: 1; }
  .hero-badge { font-size: 0.58rem; }
}
