/* ═══════════════════════════════════════════════
   GAGAN KOCHAR — GLOBAL DESIGN SYSTEM
   Light cream base + Dark gold accents (matches brand image)
═══════════════════════════════════════════════ */

@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;1,600&family=Cinzel:wght@400;500;600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  /* Gold tones */
  --gold:        #B8860B;
  --gold-lt:     #D4A017;
  --gold-dk:     #8B6508;
  --gold-pale:   rgba(184,134,11,0.08);

  /* Light backgrounds (from image) */
  --cream:       #FAF6EE;
  --cream-dk:    #F3EDE0;
  --warm-white:  #FFFDF8;
  --section-alt: #F5EFE3;

  /* Dark section bg */
  --dark-bg:     #1A1610;

  /* Text */
  --text-dark:   #1A1712;
  --text-body:   #3D3830;
  --text-mid:    #6B6358;
  --text-light:  #9A9088;
  --text-pale:   #C5BFB5;

  /* Borders */
  --border:      rgba(184,134,11,0.18);
  --border-lt:   rgba(184,134,11,0.10);

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(60,50,30,0.07);
  --shadow-md:   0 8px 32px rgba(60,50,30,0.11);
  --shadow-lg:   0 20px 60px rgba(60,50,30,0.14);

  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Cinzel', serif;
  --font-body:    'DM Sans', sans-serif;

  /* Nav height */
  --nav-h: 76px;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-body);
  overflow-x: hidden;
  cursor: auto;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ─── CUSTOM CURSOR (disabled) ─── */
#cursor, #cursor-ring { display: none; }

/* ─── TYPE SYSTEM ─── */
.s-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-ui); font-size: 0.6rem;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 14px;
}
.s-tag::before { content: ''; width: 24px; height: 1.5px; background: var(--gold); flex-shrink: 0; }

.s-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400; line-height: 1.15;
  color: var(--text-dark);
}
.s-title em { font-style: italic; color: var(--gold); }
.s-title strong { font-weight: 700; }

.s-line { width: 40px; height: 2px; background: var(--gold); margin: 16px 0; }
.s-line.center { margin: 16px auto; }

.s-body { font-size: 0.9rem; line-height: 1.95; color: var(--text-mid); font-weight: 300; }

/* ─── BUTTONS ─── */
.btn-gold {
  align-items: center; gap: 10px;
  background: var(--gold); color: #fff;
  font-family: var(--font-ui); font-size: 0.6rem;
  letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600;
  padding: 14px 30px; position: relative; overflow: hidden;
  transition: all 0.3s; cursor: pointer;
}
.btn-gold::before { content: ''; position: relative; inset: 0; background: var(--gold-lt); transform: translateX(-100%); transition: transform 0.3s; }
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span, .btn-gold i { position: relative; z-index: 1; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(184,134,11,0.35); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text-dark);
  font-family: var(--font-ui); font-size: 0.6rem;
  letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500;
  padding: 13px 28px; border: 1.5px solid rgba(26,23,18,0.25);
  transition: all 0.3s; cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  height: var(--nav-h); padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,246,238,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-md); }

.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-logo {
  width: 46px; height: 46px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  position: relative; transition: all 0.3s; letter-spacing: -2px;
}
.nav-logo .g-ltr { color: var(--text-dark); }
.nav-logo .k-ltr { color: var(--gold); }
.nav-logo::after { content: ''; position: absolute; inset: 3px; border: 1px solid rgba(184,134,11,0.18); pointer-events: none; }
.nav-brand:hover .nav-logo { background: var(--gold); }
.nav-brand:hover .nav-logo .g-ltr,
.nav-brand:hover .nav-logo .k-ltr { color: #fff; }

.nav-wordmark .name { font-family: var(--font-ui); font-size: 0.78rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-dark); }
.nav-wordmark .name span { color: var(--gold); }
.nav-wordmark .sub { font-size: 0.5rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); display: block; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { font-size: 0.72rem; letter-spacing: 0.5px; color: var(--text-mid); font-weight: 500; padding: 8px 14px; position: relative; transition: color 0.25s; }
.nav-link::after { content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 1.5px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta { font-family: var(--font-ui); font-size: 0.58rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; color: #fff; background: var(--gold); padding: 11px 22px; position: relative; overflow: hidden; transition: all 0.3s; }
.nav-cta::before { content: ''; position: absolute; inset: 0; background: var(--gold-lt); transform: translateX(-100%); transition: transform 0.3s; }
.nav-cta:hover::before { transform: translateX(0); }
.nav-cta span { position: relative; z-index: 1; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(184,134,11,0.35); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text-dark); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--warm-white); border-bottom: 1px solid var(--border);
  padding: 24px 6%; z-index: 999; box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
.mobile-menu .nav-link { display: block; padding: 14px 0; font-size: 0.85rem; border-bottom: 1px solid var(--border-lt); }

/* ─── REVEALS ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.75s cubic-bezier(.16,1,.3,1), transform 0.75s cubic-bezier(.16,1,.3,1); }
.reveal.shown { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
.reveal-d5 { transition-delay: .5s; }
.reveal-d6 { transition-delay: .6s; }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.75s cubic-bezier(.16,1,.3,1), transform 0.75s cubic-bezier(.16,1,.3,1); }
.reveal-left.shown { opacity: 1; transform: none; }

/* ─── STATS BAR (dark) ─── */
.stats-bar {
  background: var(--dark-bg); padding: 50px 6%;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item { text-align: center; padding: 30px 20px; position: relative; }
.stat-item + .stat-item { border-left: 1px solid rgba(184,134,11,0.15); }
.stat-icon { font-size: 1.3rem; color: rgba(184,134,11,0.6); margin-bottom: 12px; }
.stat-num { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-family: var(--font-ui); font-size: 0.54rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.35); }

/* ─── FOOTER ─── */
footer { background: var(--dark-bg); padding: 80px 6% 30px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1.1fr 1.3fr; gap: 50px; margin-bottom: 60px; }
.footer-logo-t { font-family: var(--font-ui); font-size: 1rem; letter-spacing: 3px; color: #fff; margin-bottom: 12px; }
.footer-logo-t span { color: var(--gold); }
.footer-tag { font-size: 0.82rem; line-height: 1.9; color: rgba(255,255,255,0.3); max-width: 230px; margin-bottom: 28px; }
.footer-socs { display: flex; gap: 10px; }
.f-soc { width: 36px; height: 36px; border: 1px solid rgba(184,134,11,0.25); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 0.75rem; transition: all 0.3s; }
.f-soc:hover { border-color: var(--gold); color: var(--gold); }
.footer-head { font-family: var(--font-ui); font-size: 0.56rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.f-lnk { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.3); margin-bottom: 11px; transition: color 0.25s; }
.f-lnk:hover { color: var(--gold); }
.f-contact { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.f-ci { color: var(--gold); font-size: 0.72rem; margin-top: 3px; flex-shrink: 0; }
.f-cv { font-size: 0.82rem; color: rgba(255,255,255,0.3); line-height: 1.7; }
.footer-bot { border-top: 1px solid rgba(184,134,11,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.f-copy { font-size: 0.72rem; color: rgba(255,255,255,0.18); }
.f-copy span { color: var(--gold); }

/* ─── WHATSAPP ─── */
.wa-btn { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; z-index: 9990; box-shadow: 0 6px 24px rgba(37,211,102,0.4); animation: waPulse 2.5s infinite; transition: transform 0.3s; }
.wa-btn:hover { transform: scale(1.1); }
.wa-btn i { font-size: 1.6rem; color: #fff; }
.wa-tip { position: absolute; right: 66px; background: var(--dark-bg); color: #fff; font-size: 0.7rem; letter-spacing: 1px; padding: 7px 14px; white-space: nowrap; border: 1px solid var(--border); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.wa-btn:hover .wa-tip { opacity: 1; }
@keyframes waPulse { 0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); } 50% { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); } }

/* ─── BREADCRUMB ─── */
.breadcrumb { background: var(--cream-dk); border-bottom: 1px solid var(--border); padding: 14px 6%; display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--text-light); }
.breadcrumb a { color: var(--text-light); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-pale); }
.breadcrumb .cur { color: var(--gold); }
.gold-divider { height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); }

/* ─── RESPONSIVE ─── */
@media (max-width:1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(184,134,11,0.1); }
}
@media (max-width:768px) {
  :root { --nav-h: 68px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}
