@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700;800&display=swap');

:root {
  /* White & Royal Blue Luxury Palette with Gold Sparkles */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafd;
  --bg-tertiary: #f0f6ff;
  
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  
  --royal-blue: #1d4ed8;
  --royal-blue-dark: #1e3a8a;
  --royal-blue-light: #3b82f6;
  --royal-blue-subtle: #eff6ff;
  
  --gold-sparkle: #f59e0b;
  --gold-sparkle-dark: #d97706;
  --gold-sparkle-light: #fef3c7;
  
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(37, 99, 235, 0.16);
  --glass-shadow: 0 16px 36px -12px rgba(30, 58, 138, 0.1), 0 0 25px rgba(245, 158, 11, 0.05);
  --glass-shadow-hover: 0 24px 48px -10px rgba(29, 78, 216, 0.2), 0 0 35px rgba(245, 158, 11, 0.12);
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 9999px;
  
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-hindi: 'Noto Sans Devanagari', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  touch-action: manipulation;
}

body {
  position: relative;
  min-height: 100vh;
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(at 10% 10%, rgba(219, 234, 254, 0.6) 0px, transparent 50%),
    radial-gradient(at 90% 15%, rgba(254, 243, 199, 0.5) 0px, transparent 50%),
    radial-gradient(at 50% 85%, rgba(239, 246, 255, 0.7) 0px, transparent 60%);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
}

/* Custom Selection */
::selection {
  background-color: #bfdbfe;
  color: #1e3a8a;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #93c5fd;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2563eb;
}

/* Subtle Royal Blue Background Grid */
.bg-royal-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background-image: 
    linear-gradient(to right, rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 50%, transparent 90%);
}

/* Golden Sparkles Floating Layer */
.gold-sparkles-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.sparkle-dot {
  position: absolute;
  background: radial-gradient(circle, #f59e0b 0%, #fbbf24 60%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.7;
  animation: floatSparkle 4s ease-in-out infinite alternate;
}

@keyframes floatSparkle {
  0% { transform: translateY(0) scale(0.8); opacity: 0.3; }
  50% { opacity: 0.9; transform: translateY(-15px) scale(1.2); }
  100% { transform: translateY(-30px) scale(0.7); opacity: 0.2; }
}

/* Custom Interactive Follower Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(29, 78, 216, 0.65);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: #1d4ed8;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(29, 78, 216, 0.8);
}

/* Glassmorphism Styles */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
  box-shadow: var(--glass-shadow-hover);
  border-color: rgba(29, 78, 216, 0.35);
}

.glass-card-interactive {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.glare-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.glass-card-interactive:hover .glare-effect {
  opacity: 1;
}

/* Header Navigation Bar */
.header-nav {
  position: fixed;
  top: calc(14px + env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  max-width: 1100px;
  z-index: 100;
  padding: 8px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  flex-shrink: 0;
}

.logo-gem {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.35);
  font-family: var(--font-display);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  background: linear-gradient(135deg, #0f172a 30%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pin-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.08);
  color: #1d4ed8;
  border: 1px solid rgba(29, 78, 216, 0.2);
  letter-spacing: 0.5px;
}

/* Header Ticker */
.header-ticker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #1d4ed8;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(29, 78, 216, 0.4);
  animation: pulseBlue 2s infinite;
}

@keyframes pulseBlue {
  0% { box-shadow: 0 0 0 0 rgba(29, 78, 216, 0.7); }
  70% { box-shadow: 0 0 0 7px rgba(29, 78, 216, 0); }
  100% { box-shadow: 0 0 0 0 rgba(29, 78, 216, 0); }
}

/* 4-Language Segmented Tabs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lang-selector-tabs {
  display: inline-flex;
  align-items: center;
  background: #f1f5f9;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  gap: 2px;
}

.lang-pill-btn {
  padding: 5px 11px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-size: 0.76rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-main);
  white-space: nowrap;
}

.lang-pill-btn:hover {
  color: #1d4ed8;
}

.lang-pill-btn.active {
  background: #ffffff;
  color: #1d4ed8;
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.12), 0 0 10px rgba(245, 158, 11, 0.1);
}

/* Hero Section Layout */
.hero-wrapper {
  position: relative;
  z-index: 10;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(105px + env(safe-area-inset-top)) 20px 50px;
}

.hero-layout-box {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Top Hero Grid: Left Intro & Right Swachh Kochas Emblem */
.hero-top-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 32px;
  align-items: start; /* Pinned to top, no vertical jumping */
  width: 100%;
  text-align: left;
}

.hero-text-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eff6ff, #fef3c7);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e3a8a;
}

.mobile-ticker-pill {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--text-primary);
  min-height: 2.3em; /* Stable height to prevent content jumping */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.title-gradient-royal {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.typewriter-wrapper {
  display: inline-block;
  min-width: 200px;
}

.typewriter-cursor {
  display: inline-block;
  color: #f59e0b;
  font-weight: 300;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Domain Display Showcase Card */
.domain-showcase {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid rgba(29, 78, 216, 0.35);
  box-shadow: 0 8px 22px rgba(29, 78, 216, 0.12);
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.domain-showcase:hover {
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(29, 78, 216, 0.2);
}

.domain-showcase .domain-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: #0f172a;
}

.domain-showcase .domain-name span {
  color: #2563eb;
}

.domain-showcase .verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: #dbeafe;
  color: #1e40af;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
}

.domain-showcase .copy-hint {
  font-size: 0.75rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Swachh Kochas Image Showcase Card (Right Column - Fixed & Static) */
.hero-image-side {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: start;
}

.swachh-kochas-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.85));
  backdrop-filter: blur(24px);
  border: 2px solid rgba(29, 78, 216, 0.2);
  box-shadow: 0 14px 35px -10px rgba(29, 78, 216, 0.12), 0 0 25px rgba(245, 158, 11, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  /* Completely static, no levitate jump */
}

.swachh-gold-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(37, 99, 235, 0.08) 60%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
}

.swachh-img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(15, 23, 42, 0.1));
  -webkit-user-drag: none;
  user-select: none;
}

.swachh-caption {
  font-family: var(--font-hindi);
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.sparkle-gold {
  color: #f59e0b;
}

/* =========================================================
   10-DAY COUNTDOWN CARD (ROYAL BLUE & GOLD ACCENTS)
   ========================================================= */
.countdown-card {
  width: 100%;
  max-width: 680px;
  padding: 24px 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px);
  border: 1.5px solid rgba(29, 78, 216, 0.2);
  box-shadow: 0 20px 50px -15px rgba(29, 78, 216, 0.12), 0 0 25px rgba(245, 158, 11, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  color: #1d4ed8;
  letter-spacing: 1px;
}

.countdown-target-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
}

.countdown-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
}

.countdown-box {
  padding: 18px 12px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  border: 1.5px solid rgba(29, 78, 216, 0.16);
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.countdown-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1d4ed8, #3b82f6, #f59e0b);
}

.countdown-box:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 78, 216, 0.4);
}

.countdown-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  color: #1e3a8a;
  letter-spacing: -1px;
}

.countdown-label {
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64748b;
}

/* VIP Form Card */
.notify-card {
  width: 100%;
  max-width: 680px;
  padding: 24px 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(24px);
  border: 1.5px solid rgba(29, 78, 216, 0.18);
  box-shadow: 0 16px 40px -10px rgba(29, 78, 216, 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.notify-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notify-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}

.notify-intro {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.notify-input-group, .notify-textarea-group {
  position: relative;
  width: 100%;
}

.notify-input {
  width: 100%;
  padding: 13px 16px 13px 40px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(29, 78, 216, 0.18);
  background: #ffffff;
  font-size: 16px;
  color: #0f172a;
  outline: none;
  font-family: var(--font-main);
  transition: all 0.25s ease;
}

.notify-input:focus {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.14);
}

.notify-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.notify-textarea {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(29, 78, 216, 0.18);
  background: #ffffff;
  font-size: 15px;
  color: #0f172a;
  outline: none;
  font-family: var(--font-main);
  resize: vertical;
  min-height: 64px;
  transition: all 0.25s ease;
  line-height: 1.4;
}

.notify-textarea:focus {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.14);
}

.notify-textarea-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  color: #94a3b8;
  pointer-events: none;
}

.btn-primary {
  padding: 14px 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  color: white;
  font-weight: 700;
  font-size: 0.94rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(29, 78, 216, 0.32);
  transition: all 0.25s ease;
  white-space: nowrap;
  width: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(29, 78, 216, 0.4);
}

.notify-subtext {
  font-size: 0.76rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* =========================================================
   GOOGLE MAP & ARTISTIC MOTIF SHOWCASE SECTION
   ========================================================= */
.map-showcase-section {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 960px;
  margin: 10px auto 40px;
  padding: 0 20px;
}

.map-showcase-box {
  width: 100%;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  border: 1.5px solid rgba(29, 78, 216, 0.2);
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.map-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid rgba(29, 78, 216, 0.2);
  font-size: 0.76rem;
  font-weight: 800;
  color: #1d4ed8;
  letter-spacing: 0.5px;
}

.map-coords-pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
}

.google-map-wrapper {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(29, 78, 216, 0.15);
}

.sketch-map-backdrop-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../assets/kochas-map.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

.google-map-iframe {
  position: relative;
  z-index: 2;
  display: block;
}

/* =========================================================
   FOOTER & SHARE SUITE
   ========================================================= */
.footer-wrap {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(29, 78, 216, 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  padding: 40px 20px calc(28px + env(safe-area-inset-bottom));
}

.footer-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.share-suite-box {
  width: 100%;
  padding: 18px 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(29, 78, 216, 0.2);
  box-shadow: 0 10px 30px rgba(29, 78, 216, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.share-header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.social-share-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  background: white;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.share-wa {
  color: #15803d;
  border-color: rgba(34, 197, 94, 0.35);
  background: #f0fdf4;
}
.share-wa:hover {
  background: #22c55e;
  color: white;
  border-color: #22c55e;
}

.share-x {
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.25);
  background: #f8fafc;
}
.share-x:hover {
  background: #0f172a;
  color: white;
  border-color: #0f172a;
}

.share-fb {
  color: #1d4ed8;
  border-color: rgba(59, 130, 246, 0.3);
  background: #eff6ff;
}
.share-fb:hover {
  background: #1877f2;
  color: white;
  border-color: #1877f2;
}

.share-tg {
  color: #0284c7;
  border-color: rgba(14, 165, 233, 0.3);
  background: #f0f9ff;
}
.share-tg:hover {
  background: #0284c7;
  color: white;
  border-color: #0284c7;
}

.share-copy {
  color: #b45309;
  border-color: rgba(245, 158, 11, 0.35);
  background: #fffbeb;
}
.share-copy:hover {
  background: #f59e0b;
  color: white;
  border-color: #f59e0b;
}

.footer-links-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.footer-col {
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(29, 78, 216, 0.1);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.footer-link:hover {
  color: #1d4ed8;
  transform: translateX(3px);
}

.footer-credits {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
  text-align: center;
}

.footer-credits strong {
  color: #0f172a;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom));
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: calc(100vw - 40px);
}

.toast-msg {
  padding: 12px 18px;
  border-radius: var(--radius-md);
  background: #0f172a;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
  transform: translateY(16px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS (Mobile & Tablet Audited)
   ========================================================= */
@media (max-width: 900px) {
  .header-ticker {
    display: none;
  }
  .mobile-ticker-pill {
    display: inline-flex;
  }
  .hero-top-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .hero-text-side {
    align-items: center;
    text-align: center;
  }
  .hero-subtitle {
    text-align: center;
    max-width: 620px;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  /* Header & Navigation on Mobile */
  .header-nav {
    top: calc(6px + env(safe-area-inset-top));
    width: calc(100% - 12px);
    padding: 6px 8px;
    gap: 6px;
  }
  
  .logo-gem {
    width: 28px;
    height: 28px;
    font-size: 0.88rem;
    border-radius: 8px;
  }
  
  .logo-text {
    font-size: 0.98rem;
  }
  
  .pin-pill {
    display: none;
  }

  .lang-selector-tabs {
    padding: 2px;
    gap: 1px;
    max-width: calc(100vw - 120px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .lang-selector-tabs::-webkit-scrollbar {
    display: none;
  }

  .lang-pill-btn {
    padding: 4px 6px;
    font-size: 0.65rem;
    font-weight: 700;
  }

  /* Hero Section Mobile */
  .hero-wrapper {
    padding-top: calc(75px + env(safe-area-inset-top));
    padding-bottom: 30px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-layout-box {
    gap: 18px;
  }

  .hero-badge {
    font-size: 0.74rem;
    padding: 5px 12px;
    gap: 6px;
    text-align: center;
    line-height: 1.3;
  }

  .hero-title {
    font-size: clamp(1.65rem, 6.5vw, 2.2rem);
    line-height: 1.25;
    letter-spacing: -0.5px;
    word-break: break-word;
    min-height: 2.6em; /* Stable height on mobile */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .typewriter-wrapper {
    min-width: auto;
    display: inline;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.5;
    padding: 0 4px;
  }

  .domain-showcase {
    padding: 6px 14px;
    gap: 6px;
  }
  .domain-showcase .domain-name {
    font-size: 1.15rem;
  }

  /* Swachh Kochas Card Mobile */
  .swachh-kochas-card {
    padding: 14px 16px;
    max-width: 290px;
    margin: 0 auto;
    gap: 8px;
  }

  .swachh-img {
    max-height: 120px;
  }

  .swachh-caption {
    font-size: 0.8rem;
    padding: 3px 10px;
    white-space: nowrap;
  }

  /* Countdown Card Mobile */
  .countdown-card {
    padding: 16px 12px;
    border-radius: var(--radius-lg);
    gap: 12px;
  }

  .countdown-header {
    flex-direction: row;
    gap: 6px;
  }

  .countdown-badge {
    font-size: 0.68rem;
    letter-spacing: 0.5px;
  }

  .countdown-target-text {
    font-size: 0.72rem;
  }

  .countdown-container {
    gap: 6px;
  }

  .countdown-box {
    padding: 10px 2px;
    border-radius: var(--radius-md);
  }

  .countdown-number {
    font-size: 1.45rem;
    line-height: 1.1;
  }

  .countdown-label {
    font-size: 0.58rem;
    letter-spacing: 0.4px;
    margin-top: 3px;
  }

  /* VIP Form Mobile */
  .notify-card {
    padding: 18px 14px;
    border-radius: var(--radius-lg);
    gap: 12px;
  }

  .notify-title {
    font-size: 1.02rem;
  }

  .notify-intro {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .notify-input {
    padding: 11px 14px 11px 36px;
    font-size: 16px;
  }

  .notify-textarea {
    padding: 10px 14px 10px 36px;
    font-size: 15px;
  }

  .btn-primary {
    padding: 12px 18px;
    font-size: 0.88rem;
  }

  .notify-subtext {
    font-size: 0.72rem;
    line-height: 1.35;
    text-align: center;
  }

  /* Map Section Mobile */
  .map-showcase-section {
    padding: 0 12px;
    margin: 10px auto 30px;
  }

  .map-showcase-box {
    padding: 16px 12px;
    border-radius: var(--radius-lg);
  }

  .google-map-iframe {
    height: 270px;
  }

  .map-coords-pill {
    font-size: 0.7rem;
  }

  /* Footer & Share Mobile */
  .footer-wrap {
    padding: 30px 12px calc(24px + env(safe-area-inset-bottom));
  }

  .share-suite-box {
    padding: 14px 12px;
    border-radius: var(--radius-lg);
    gap: 10px;
  }

  .share-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
  }

  .share-btn {
    padding: 7px 12px;
    font-size: 0.76rem;
    gap: 5px;
  }

  .footer-col {
    padding: 16px 14px;
    border-radius: var(--radius-md);
  }

  .footer-col-title {
    font-size: 0.88rem;
  }

  .footer-link {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .footer-credits {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .toast-container {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }
}

@media (hover: none) and (pointer: coarse) {
  .custom-cursor, .custom-cursor-dot {
    display: none !important;
  }
}
