/* ==========================================================================
   ALL CONSULTATION SOLUTION - 3D WEBSITE STYLESHEET
   Aesthetic: Divine Vrindavan Dark Theme, Peacock & Gold Glassmorphism
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Rozha+One&family=Yatra+One&display=swap');

:root {
  --bg-dark: #030a10;
  --bg-card: rgba(8, 25, 36, 0.75);
  --bg-card-hover: rgba(14, 38, 54, 0.85);
  --bg-glass: rgba(15, 30, 45, 0.45);
  
  --gold-primary: #ffc73b;
  --gold-light: #fff2ad;
  --gold-dark: #b8860b;
  --gold-glow: rgba(255, 199, 59, 0.35);
  
  --peacock-blue: #00d2ff;
  --peacock-teal: #00f2fe;
  --emerald-green: #00e676;
  --emerald-glow: rgba(0, 230, 118, 0.25);
  
  --text-main: #f5f8fc;
  --text-muted: #a3b8cc;
  --text-gold: #ffe082;
  
  --border-gold: rgba(255, 199, 59, 0.3);
  --border-peacock: rgba(0, 210, 255, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --font-heading: 'Rozha One', 'Yatra One', serif;
  --font-sans: 'Outfit', sans-serif;
  --font-hindi: 'Hind', sans-serif;
  
  --shadow-gold: 0 10px 30px rgba(255, 199, 59, 0.2);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset & Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(0, 210, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(255, 199, 59, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(0, 230, 118, 0.05) 0%, transparent 60%);
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #02070d;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-primary), var(--peacock-blue));
  border-radius: 5px;
}

/* Typography Utilities */
.text-gold {
  color: var(--gold-primary);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-peacock {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.font-hindi {
  font-family: var(--font-hindi);
}

.font-heading {
  font-family: var(--font-heading);
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background: rgba(3, 10, 16, 0.65);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(3, 10, 16, 0.92);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

.brand-title {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.brand-subtitle {
  font-family: var(--font-hindi);
  font-size: 0.8rem;
  color: var(--gold-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--peacock-blue));
  transition: var(--transition);
  border-radius: 2px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  color: #05131e;
  box-shadow: 0 4px 20px rgba(255, 170, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 170, 0, 0.6);
  background: linear-gradient(135deg, #ffe033 0%, #ffbb00 100%);
}

.btn-secondary {
  background: rgba(0, 210, 255, 0.12);
  color: var(--peacock-blue);
  border: 1px solid var(--border-peacock);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(0, 210, 255, 0.25);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 210, 255, 0.3);
}

.btn-emerald {
  background: linear-gradient(135deg, #00e676 0%, #00b0ff 100%);
  color: #030e17;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 230, 118, 0.3);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.5);
}

/* Audio Ambient Toggle Button */
.audio-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 199, 59, 0.3);
  color: var(--gold-primary);
  padding: 0.5rem 0.9rem;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.audio-btn:hover {
  background: rgba(255, 199, 59, 0.2);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(255, 199, 59, 0.4);
}

.audio-btn.playing {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 170, 0, 0.35));
  border-color: #ffd700;
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  animation: pulse-audio 1.8s infinite ease-in-out;
}

@keyframes pulse-audio {
  0%, 100% { box-shadow: 0 0 12px rgba(255, 215, 0, 0.5); }
  50% { box-shadow: 0 0 24px rgba(255, 215, 0, 0.85); }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.badge-divine {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 199, 59, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(10px);
}

.badge-divine i {
  color: var(--gold-primary);
}

.hero-title {
  font-size: 3rem;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* 3D Canvas Container - Enlarged Centerpiece Focal Area */
.hero-3d-wrapper {
  position: relative;
  width: 100%;
  height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#canvas-3d-container {
  width: 100%;
  height: 720px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  cursor: grab;
  background: radial-gradient(circle at center, rgba(0, 210, 255, 0.12) 0%, rgba(255, 199, 59, 0.08) 45%, transparent 80%);
  box-shadow: 0 0 60px rgba(0, 210, 255, 0.18), inset 0 0 40px rgba(255, 199, 59, 0.08);
  border: 1px solid rgba(255, 199, 59, 0.3);
  backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

#canvas-3d-container:hover {
  transform: scale(1.015);
  box-shadow: 0 0 80px rgba(0, 210, 255, 0.3), inset 0 0 50px rgba(255, 199, 59, 0.15);
  border-color: var(--gold-primary);
}

#canvas-3d-container:active {
  cursor: grabbing;
}

/* Floating 3D Controls Toolbar */
.\33d-controls-toolbar {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 30;
  background: rgba(3, 10, 16, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.65rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.tool-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-gold);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.tool-btn:hover {
  background: var(--gold-primary);
  color: #030c12;
  transform: scale(1.12);
  box-shadow: 0 0 14px var(--gold-glow);
}

.tool-btn-tour {
  width: auto;
  padding: 0 0.9rem;
  border-radius: var(--radius-full);
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.2), rgba(0, 230, 118, 0.2));
  color: var(--peacock-blue);
  border-color: var(--border-peacock);
}

.tool-btn-tour:hover {
  background: linear-gradient(135deg, var(--peacock-blue), var(--emerald-green));
  color: #030c12;
}

.tool-btn-tour.active {
  background: linear-gradient(135deg, var(--gold-primary), #ffaa00);
  color: #030c12;
  box-shadow: 0 0 18px var(--gold-glow);
}

.screen-switcher-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  z-index: 25;
  width: 100%;
}

.chip-btn {
  background: rgba(10, 30, 45, 0.85);
  border: 1px solid var(--border-peacock);
  color: var(--text-muted);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  backdrop-filter: blur(10px);
}

.chip-btn:hover, .chip-btn.active {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #030c12;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

.canvas-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(3, 10, 16, 0.85);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  pointer-events: none;
  z-index: 20;
  animation: pulse 2.5s infinite;
  white-space: nowrap;
}

@keyframes pulse {
  0%, 100% { opacity: 0.75; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.03); }
}

/* Sections Styling */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem;
}

.section-tag {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Glass Cards */
.glass-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(16px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
}

.glass-card:hover::before {
  opacity: 1;
}

/* Divya AI Chat Simulator */
.ai-section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.ai-chat-window {
  background: rgba(5, 18, 28, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 520px;
}

.chat-header {
  background: linear-gradient(135deg, rgba(20, 45, 65, 0.9), rgba(10, 25, 40, 0.9));
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--peacock-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #030c12;
  box-shadow: 0 0 12px var(--gold-glow);
}

.chat-title {
  font-size: 1rem;
  font-weight: 700;
}

.chat-status {
  font-size: 0.75rem;
  color: var(--emerald-green);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald-green);
}

.chat-messages {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message {
  display: flex;
  gap: 0.75rem;
  max-width: 85%;
}

.message.bot {
  align-self: flex-start;
}

.message.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.message-bubble {
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 1.5;
}

.message.bot .message-bubble {
  background: rgba(18, 42, 62, 0.8);
  border: 1px solid rgba(0, 210, 255, 0.2);
  color: var(--text-main);
  border-top-left-radius: 2px;
}

.message.user .message-bubble {
  background: linear-gradient(135deg, var(--gold-primary), #ffaa00);
  color: #030c12;
  font-weight: 500;
  border-top-right-radius: 2px;
}

.quick-prompts {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  overflow-x: auto;
  background: rgba(3, 10, 16, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.prompt-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-gold);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
}

.prompt-chip:hover {
  background: rgba(255, 199, 59, 0.2);
  border-color: var(--gold-primary);
}

.chat-input-area {
  padding: 0.85rem 1.25rem;
  background: rgba(3, 10, 16, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 0.75rem;
}

.chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 0.7rem 1.25rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.chat-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
}

.send-btn {
  background: var(--gold-primary);
  color: #030c12;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
}

.send-btn:hover {
  transform: scale(1.05);
  background: #ffe033;
}

/* Gurudev Profile Section */
.gurudev-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(12, 35, 52, 0.9), rgba(5, 18, 28, 0.95));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

.gurudev-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gurudev-avatar {
  width: 100%;
  max-width: 380px;
  height: 440px;
  border-radius: var(--radius-md);
  object-fit: cover;
  object-position: top center;
  border: 2px solid var(--border-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 199, 59, 0.15);
  transition: var(--transition);
}

.gurudev-avatar:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 35px var(--gold-glow);
  transform: translateY(-3px);
}

.gurudev-badge {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-primary), #ffaa00);
  color: #030c12;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.gurudev-info h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.gurudev-subtitle {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.specialties-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.specialty-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.specialty-item i {
  color: var(--gold-primary);
  margin-top: 0.25rem;
}

/* Marriage Hub & Budget Planner */
.marriage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.calculator-box {
  background: rgba(5, 18, 28, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.calc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.total-budget-badge {
  text-align: right;
}

.total-budget-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.budget-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  max-height: 240px;
  overflow-y: auto;
}

.budget-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}

.item-name {
  font-weight: 600;
}

.item-cost {
  color: var(--gold-primary);
  font-weight: 700;
}

.delete-item-btn {
  color: #ff5252;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  margin-left: 0.5rem;
}

.add-expense-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.75rem;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
}

.form-input:focus {
  border-color: var(--gold-primary);
}

/* Career Roadmaps */
.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--gold-primary);
  color: #030c12;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.roadmap-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.15);
  color: var(--peacock-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Legal & Document Grid */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.legal-card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 199, 59, 0.15), rgba(0, 210, 255, 0.15));
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

/* Contact & Footer */
.contact-card {
  background: linear-gradient(135deg, rgba(8, 25, 36, 0.95), rgba(3, 10, 16, 0.98));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 199, 59, 0.12);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid var(--border-gold);
}

.footer {
  background: #02070c;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.close-modal-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
}

.qr-code-img {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-md);
  margin: 1.5rem auto;
  border: 2px solid var(--gold-primary);
  background: #fff;
  padding: 0.5rem;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE MEDIA QUERIES (320px - 768px - 992px)
   ========================================================================== */

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .gurudev-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }
  
  .contact-card {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }
  
  .ai-section-grid {
    grid-template-columns: 1fr;
  }
  
  .marriage-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 1rem;
  }

  /* Section Spacing */
  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Hero Section */
  .hero-section {
    padding-top: 95px;
    padding-bottom: 40px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-stats {
    gap: 1.25rem;
    margin-bottom: 1.75rem;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  /* 3D Canvas Responsive Container */
  .hero-3d-wrapper {
    height: 540px;
    margin-top: 1rem;
  }

  #canvas-3d-container {
    height: 460px;
    border-radius: var(--radius-md);
  }

  .canvas-hint {
    font-size: 0.7rem;
    padding: 0.25rem 0.65rem;
    bottom: 60px;
  }

  .\33d-controls-toolbar {
    top: 8px;
    right: 8px;
    padding: 0.25rem 0.45rem;
    gap: 0.35rem;
  }

  .tool-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .tool-btn-tour {
    padding: 0 0.65rem;
    font-size: 0.75rem;
  }

  .screen-switcher-chips {
    gap: 0.35rem;
    margin-top: 0.75rem;
  }

  .chip-btn {
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
  }

  /* Navbar Mobile Responsiveness */
  .navbar {
    padding: 0.65rem 0;
  }

  .brand-logo img {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-subtitle {
    font-size: 0.7rem;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .btn {
    padding: 0.6rem 1.1rem;
    font-size: 0.85rem;
  }

  .audio-btn {
    width: 36px;
    height: 36px;
  }

  /* Divya AI Chat Window */
  .ai-chat-window {
    height: 460px;
    border-radius: var(--radius-md);
  }

  .chat-header {
    padding: 0.75rem 1rem;
  }

  .chat-avatar {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .chat-title {
    font-size: 0.9rem;
  }

  .message-bubble {
    padding: 0.7rem 0.95rem;
    font-size: 0.88rem;
  }

  .chat-input-area {
    padding: 0.65rem 0.85rem;
  }

  .chat-input {
    padding: 0.55rem 0.95rem;
    font-size: 0.88rem;
  }

  .send-btn {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  /* Marriage Budget Calculator */
  .calculator-box {
    padding: 1.25rem;
    border-radius: var(--radius-md);
  }

  .calc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .total-budget-badge {
    text-align: left;
  }

  .total-budget-amount {
    font-size: 1.5rem;
  }

  .add-expense-form {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .add-expense-form .btn {
    width: 100%;
  }

  /* Gurudev Card */
  .gurudev-card {
    padding: 1.5rem 1rem;
  }

  .gurudev-avatar {
    width: 100%;
    max-width: 320px;
    height: 380px;
  }

  .gurudev-info h3 {
    font-size: 1.5rem;
  }

  .gurudev-subtitle {
    font-size: 0.95rem;
  }

  /* Contact Card */
  .contact-card {
    padding: 1.5rem 1rem;
  }

  .contact-info-list {
    gap: 1rem;
  }

  .contact-item {
    align-items: flex-start;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  /* Tab Navigation */
  .tab-navigation {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  /* Modal */
  .modal-box {
    padding: 1.5rem;
    width: 95%;
  }

  .qr-code-img {
    width: 140px;
    height: 140px;
  }
}

/* Extra Small Screens (320px - 480px) */
@media (max-width: 480px) {
  .phone-text {
    display: none;
  }

  .download-text {
    display: inline;
  }

  .nav-call-btn {
    padding: 0.5rem;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    justify-content: center;
  }

  .nav-download-btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .badge-divine {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
  }

  .hero-3d-wrapper {
    height: 480px;
  }

  #canvas-3d-container {
    height: 410px;
  }

  .chip-btn {
    padding: 0.28rem 0.55rem;
    font-size: 0.72rem;
  }

  .budget-item {
    font-size: 0.82rem;
    padding: 0.6rem 0.75rem;
  }

  .item-cost {
    font-size: 0.88rem;
  }
}

/* VIP Plans Button */
.btn-vip-gold {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #030c12 !important;
  font-weight: 700;
  border: 1px solid #ffea70;
  box-shadow: 0 4px 20px rgba(255, 199, 59, 0.4);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-vip-gold:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(255, 199, 59, 0.6);
  background: linear-gradient(135deg, #ffe033, #ffb700);
}

/* Investment Opportunity Button */
.btn-investment-cyan {
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  color: #030c12 !important;
  font-weight: 700;
  border: 1px solid #80f7ff;
  box-shadow: 0 4px 20px rgba(79, 172, 254, 0.4);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-investment-cyan:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(79, 172, 254, 0.7);
  background: linear-gradient(135deg, #38f9d7, #4facfe);
}

.btn-vip-diamond {
  background: linear-gradient(135deg, #a5f3fc, #38bdf8, #2563eb);
  color: #03121f !important;
  font-weight: 700;
  border: 1px solid #7dd3fc;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.4);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-vip-diamond:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(56, 189, 248, 0.65);
}

.btn-vip-emergency {
  background: linear-gradient(135deg, #ef4444, #f97316, #f59e0b);
  color: #ffffff !important;
  font-weight: 700;
  border: 1px solid #fca5a5;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-vip-emergency:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.65);
}

/* VIP Pricing Section */
.vip-pricing-section {
  padding: 100px 0;
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(255, 199, 59, 0.07) 0%, rgba(3, 10, 16, 0.98) 75%);
}

.vip-billing-toggle-container {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.vip-billing-pill-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  gap: 0.35rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vip-toggle-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vip-toggle-btn.active {
  background: linear-gradient(135deg, #ffea70, #ffc73b);
  color: #030c12;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(255, 199, 59, 0.4);
}

.save-discount-badge {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  border: 1px solid rgba(52, 211, 153, 0.4);
}

.vip-toggle-btn.active .save-discount-badge {
  background: rgba(3, 12, 18, 0.2);
  color: #030c12;
  border-color: rgba(3, 12, 18, 0.3);
}

.vip-toggle-subtext {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* 4 Plans Grid */
.vip-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

.vip-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.88) 0%, rgba(9, 14, 26, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2.2rem 1.6rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  backdrop-filter: blur(16px);
}

.vip-card.featured {
  border-color: rgba(255, 199, 59, 0.6);
  box-shadow: 0 15px 45px rgba(255, 199, 59, 0.18);
  transform: scale(1.02);
}

.vip-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.vip-card-gold:hover {
  border-color: #ffc73b;
  box-shadow: 0 20px 50px rgba(255, 199, 59, 0.3);
}

.vip-card-diamond:hover {
  border-color: #38bdf8;
  box-shadow: 0 20px 50px rgba(56, 189, 248, 0.3);
}

.vip-card-emergency:hover {
  border-color: #ef4444;
  box-shadow: 0 20px 50px rgba(239, 68, 68, 0.3);
}

.vip-aura-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(65px);
  pointer-events: none;
  opacity: 0.35;
}

.gold-aura { background: #ffc73b; }
.diamond-aura { background: #38bdf8; }
.emergency-aura { background: #ef4444; }

.vip-card-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-muted {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.badge-gold {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #030c12;
  box-shadow: 0 0 14px rgba(255, 199, 59, 0.5);
}

.badge-diamond {
  background: rgba(56, 189, 248, 0.15);
  color: #7dd3fc;
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.badge-emergency {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.4);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ping-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  animation: pingPulse 1.5s infinite;
}

@keyframes pingPulse {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.4; }
  100% { transform: scale(0.9); opacity: 1; }
}

.vip-tier-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.vip-card-free .vip-tier-icon {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.gold-icon {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #030c12;
  box-shadow: 0 4px 15px rgba(255, 199, 59, 0.4);
}

.diamond-icon {
  background: linear-gradient(135deg, #7dd3fc, #0284c7);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
}

.emergency-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.vip-plan-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.vip-hi-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
}

.vip-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 1rem 0 0.2rem;
}

.vip-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.vip-price-amount {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.vip-period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.vip-footnote {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.vip-savings-text {
  font-size: 0.82rem;
  color: #34d399;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.cyan-savings {
  color: #38bdf8;
}

.vip-feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.vip-feature-list li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.vip-btn-disabled {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
  width: 100%;
}

.text-cyan {
  color: #38bdf8 !important;
}

.text-red {
  color: #ef4444 !important;
}

/* Modal Overlay & Box */
.vip-modal-overlay {
  z-index: 9999;
  backdrop-filter: blur(24px);
  background: rgba(3, 1, 8, 0.9);
}

.vip-modal-container {
  width: 95%;
  max-width: 1300px;
  max-height: 92vh;
  background: #090514;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 90px rgba(0, 0, 0, 0.95);
  animation: vipModalSpring 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes vipModalSpring {
  0% { transform: scale(0.92) translateY(20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.vip-modal-rainbow-bar {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #ffc73b, #a855f7, #38bdf8, #ef4444);
}

.vip-modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.vip-modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.vip-modal-body {
  padding: 2.5rem 2rem;
  max-height: calc(92vh - 4px);
  overflow-y: auto;
}

.vip-modal-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
}

.vip-modal-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-top: 0.4rem;
}

.inline-badge {
  display: inline-flex;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
}

/* Responsive Media Queries for VIP Pricing */
@media (max-width: 1100px) {
  .vip-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .vip-plans-grid {
    grid-template-columns: 1fr;
  }
  
  .vip-modal-title {
    font-size: 1.6rem;
  }
  
  .vip-modal-body {
    padding: 1.5rem 1rem;
  }
  
  .vip-price-amount {
    font-size: 2.1rem;
  }
}

