@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  --bg: #001e2e; /* Cosmos Deep Navy */
  --panel: rgba(255, 255, 255, 0.03);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --text: #fdf0d5; /* Varden Warm Cream */
  --muted: #a3b8cc;
  --accent: #e65c2b; /* Premium Orangeade */
  --accent-blue: #669bbc; /* Blue Marble */
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image: 
    linear-gradient(to bottom, rgba(0, 30, 73, 0.88), rgba(0, 30, 49, 0.97)),
    url('../images/makhana_bg.jpg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

.page-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 60px;
}

/* ==========================================================================
   FIX: UNIQUE ARCHITECTURAL NAVIGATION DOCK (No Notification Style Vibe)
   ========================================================================== */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: transparent; /* Notification layout structure removed */
  border: none;
  margin-bottom: 60px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text);
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  padding: 4px;
  border: 1px solid var(--border);
}

.brand strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  color: var(--accent-blue);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 2px;
}

/* Luxury Editorial Navigation Frame */
.nav-links {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 100px;
  gap: 8px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Active State behaves like an elegant isolated token capsule */
.nav-links a:hover {
  color: #ffffff;
  background: var(--panel-strong);
}

.nav-links a.active {
  color: #ffffff;
  background: var(--accent);
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(230, 92, 43, 0.25);
}

/* ==========================================================================
   HERO & CORE CONTENT LAYOUT
   ========================================================================== */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 80px;
  padding: 40px 0 80px;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 28px;
}

.hero-text {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

/* Form Container */
.hero-card.registration-box {
  width: 100%;
  max-width: 440px;
  padding: 44px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  backdrop-filter: blur(40px);
  box-shadow: var(--shadow);
  margin-left: auto;
}

.hero-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.mini-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
}

.hero-form input {
  width: 100%;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.hero-form input:focus {
  border-color: var(--accent-blue);
  outline: none;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 4px rgba(102, 155, 188, 0.15);
}

/* Premium Solid Actions */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 14px;
  padding: 18px 36px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 35px rgba(230, 92, 43, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--panel-strong);
}

.form-submit-btn {
  width: 100%;
  margin-top: 16px;
}

.hero-highlights {
  list-style: none;
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-highlights li {
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--panel);
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 35px;
  right: 35px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;
}

.fab-whatsapp-large, .fab-call-large {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  text-decoration: none;
  transition: transform 0.25s ease;
}

.fab-whatsapp-large { background-color: #25D366; }
.fab-call-large { background-color: var(--accent-blue); }

.fab:hover { transform: scale(1.08); }

@media (max-width: 992px) {
  .topbar {
    flex-direction: column;
    gap: 24px;
    padding: 10px;
    text-align: center;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  .hero-card.registration-box {
    margin: 0 auto;
  }
  .hero-highlights {
    justify-content: center;
  }
}