/* ==========================================================================
   UyirThunai (உறவின் இனிய தொடக்கம்)
   Design System & Styling
   Colors: Royal Maroon (#7B002C), Gold (#D4AF37), Ivory (#FFFFF0), Blush (#FFF0F5)
   ========================================================================== */

:root {
  --primary-maroon: #7B002C;
  --primary-dark: #4A001A;
  --primary-light: #9E0038;
  --gold-accent: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #AA820A;
  --ivory-bg: #FFFFF0;
  --ivory-warm: #FFF8F9;
  --blush-light: #FFF0F5;
  --blush-border: #FFE4E8;
  --text-dark: #1A1A1A;
  --text-muted: #666666;
  --card-shadow: 0 10px 30px rgba(123, 0, 44, 0.08);
  --card-shadow-hover: 0 15px 40px rgba(123, 0, 44, 0.16);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--ivory-warm);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.tamil-font {
  font-family: 'Noto Sans Tamil', 'Outfit', sans-serif;
}

/* ================= Headers & Navbar ================= */
.ut-navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1.5px solid var(--blush-border);
  padding: 6px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 18px rgba(123, 0, 44, 0.06);
}

.ut-nav-link {
  font-size: 13px;
  font-weight: 600;
  color: #2D3748;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.22s ease-in-out;
  border: 1px solid transparent;
}

.ut-nav-link:hover {
  background: var(--blush-light);
  color: var(--primary-maroon) !important;
  border-color: var(--blush-border);
  transform: translateY(-1px);
}

.ut-nav-link.active {
  background: var(--blush-light);
  color: var(--primary-maroon) !important;
  border-color: rgba(123, 0, 44, 0.15);
}

.ut-nav-link.phone-pill {
  background: rgba(25, 135, 84, 0.08);
  color: #198754 !important;
  border-color: rgba(25, 135, 84, 0.25);
  font-weight: 700;
}

.ut-nav-link.phone-pill:hover {
  background: #198754;
  color: #FFFFFF !important;
  border-color: #198754;
}

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

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-maroon), var(--primary-dark));
  color: var(--gold-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid var(--gold-accent);
  box-shadow: 0 4px 12px rgba(123, 0, 44, 0.2);
}

.brand-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-maroon);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.brand-slogan {
  font-size: 11px;
  color: var(--gold-dark);
  font-weight: 600;
  display: block;
}

/* Buttons */
.btn-ut-primary {
  background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-dark) 100%);
  color: #FFFFFF !important;
  border: 1px solid var(--gold-accent);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(123, 0, 44, 0.25);
  transition: var(--transition-smooth);
}

.btn-ut-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 0, 44, 0.35);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-maroon) 100%);
}

.btn-ut-gold {
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-dark) 100%);
  color: #FFFFFF !important;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
  transition: var(--transition-smooth);
}

.btn-ut-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

.btn-ut-outline {
  border: 1.5px solid var(--primary-maroon);
  color: var(--primary-maroon) !important;
  background: transparent;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-ut-outline:hover {
  background: var(--blush-light);
  transform: translateY(-2px);
}

/* ================= Launch Offer Banner ================= */
.launch-banner-strip {
  background: linear-gradient(90deg, #4A001A 0%, #7B002C 50%, #4A001A 100%);
  color: #FFFFFF;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--gold-accent);
}

.launch-badge {
  background: var(--gold-accent);
  color: var(--primary-dark);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

/* ================= Hero Section with Dynamic Background Animation ================= */
.hero-section {
  position: relative;
  padding: 28px 0 36px;
  background: linear-gradient(125deg, #FFF9FA 0%, #FFF0F5 25%, #FFFDF5 50%, #FFF2F7 75%, #FFF9FB 100%);
  background-size: 240% 240%;
  animation: heroGradientShift 14s ease-in-out infinite alternate;
  overflow: hidden;
}

@keyframes heroGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.95;
}

/* Falling Traditional Rose Petals & Jasmine Flowers Animation (மலர் மழை) */
.falling-petals-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}

.falling-petal {
  position: absolute;
  top: -30px;
  width: 14px;
  height: 18px;
  border-radius: 50% 0 50% 50%;
  background: linear-gradient(135deg, #FF6F91 0%, #E91E63 50%, #C2185B 100%);
  opacity: 0.85;
  box-shadow: 0 2px 8px rgba(233, 30, 99, 0.25);
  animation: fallPetal linear infinite;
  will-change: transform;
}

.falling-petal.gold-petal {
  background: linear-gradient(135deg, #FFE082 0%, #FFD54F 50%, #FFC107 100%);
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.35);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
}

.falling-petal.jasmine {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFFFFF 60%, #FFF9C4 100%);
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.petal-1 { left: 4%; animation-duration: 9s; animation-delay: 0s; width: 14px; height: 18px; }
.petal-2 { left: 14%; animation-duration: 11s; animation-delay: 2.5s; width: 12px; height: 16px; }
.petal-3 { left: 24%; animation-duration: 8.5s; animation-delay: 1s; width: 16px; height: 20px; }
.petal-4 { left: 34%; animation-duration: 12s; animation-delay: 4s; width: 11px; height: 11px; }
.petal-5 { left: 44%; animation-duration: 10s; animation-delay: 0.5s; width: 15px; height: 19px; }
.petal-6 { left: 54%; animation-duration: 9.5s; animation-delay: 3s; width: 13px; height: 17px; }
.petal-7 { left: 64%; animation-duration: 13s; animation-delay: 1.8s; width: 16px; height: 21px; }
.petal-8 { left: 74%; animation-duration: 8s; animation-delay: 5s; width: 10px; height: 10px; }
.petal-9 { left: 84%; animation-duration: 11.5s; animation-delay: 2s; width: 14px; height: 18px; }
.petal-10 { left: 94%; animation-duration: 10.5s; animation-delay: 3.5s; width: 12px; height: 16px; }
.petal-11 { left: 19%; animation-duration: 12.5s; animation-delay: 6s; width: 13px; height: 17px; }
.petal-12 { left: 69%; animation-duration: 9.8s; animation-delay: 7s; width: 11px; height: 11px; }

@keyframes fallPetal {
  0% {
    transform: translateY(-30px) translateX(0) rotate(0deg) rotateY(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.85;
  }
  50% {
    transform: translateY(48vh) translateX(30px) rotate(180deg) rotateY(180deg);
    opacity: 0.8;
  }
  90% {
    opacity: 0.55;
  }
  100% {
    transform: translateY(105vh) translateX(-25px) rotate(360deg) rotateY(360deg);
    opacity: 0;
  }
}

/* Luxury Ambient Glowing Orbs */
.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-glow-orb-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(255, 215, 0, 0.08) 50%, transparent 70%);
  filter: blur(60px);
  top: -100px;
  right: -50px;
  animation: orbFloat1 18s ease-in-out infinite alternate;
}

.hero-glow-orb-2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(123, 0, 44, 0.16) 0%, rgba(216, 67, 107, 0.08) 50%, transparent 70%);
  filter: blur(70px);
  bottom: -120px;
  left: -70px;
  animation: orbFloat2 22s ease-in-out infinite alternate;
}

.hero-glow-orb-3 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 220, 160, 0.3) 0%, rgba(255, 182, 193, 0.12) 50%, transparent 70%);
  filter: blur(50px);
  top: 25%;
  left: 36%;
  animation: orbPulse 12s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-50px, 35px, 0) scale(1.1); }
  100% { transform: translate3d(30px, -25px, 0) scale(0.95); }
}

@keyframes orbFloat2 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(45px, -40px, 0) scale(1.12); }
  100% { transform: translate3d(-35px, 30px, 0) scale(0.94); }
}

@keyframes orbPulse {
  0% { transform: scale(0.9) translate3d(0, 0, 0); opacity: 0.6; }
  50% { transform: scale(1.12) translate3d(20px, -15px, 0); opacity: 0.85; }
  100% { transform: scale(0.95) translate3d(-15px, 15px, 0); opacity: 0.65; }
}

/* Ambient Glow Effects */

/* Traditional Wedding Showcase Card */
.hero-wedding-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 248, 250, 0.94) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 14px;
  padding: 8px 12px;
  box-shadow: 0 8px 24px rgba(123, 0, 44, 0.08);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-wedding-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(123, 0, 44, 0.14);
}

.hero-wedding-thumb-wrap {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--gold-accent);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
  flex-shrink: 0;
}

.hero-wedding-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-wedding-card:hover .hero-wedding-img {
  transform: scale(1.08);
}

.hero-wedding-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
  color: #FFFFFF;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* Compact Hero Elements */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blush-light);
  border: 1px solid var(--blush-border);
  color: var(--primary-maroon);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}

.hero-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary-maroon);
  line-height: 1.18;
  margin-bottom: 8px;
}

.hero-title span {
  color: var(--gold-dark);
}

.hero-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
  max-width: 520px;
  line-height: 1.45;
}

/* Compact Form Styles & Hero Register Card */
.hero-register-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 12px 36px rgba(123, 0, 44, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-register-card:hover {
  box-shadow: 0 16px 44px rgba(123, 0, 44, 0.14);
}

.hero-register-card .form-control,
.hero-register-card .form-select {
  height: 38px;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  transition: all 0.2s ease;
}

.hero-register-card .form-control:focus,
.hero-register-card .form-select:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.hero-register-card .form-label {
  margin-bottom: 3px;
  font-size: 11.5px;
  font-weight: 700;
  color: #334155;
}

/* Inline Hero OTP Box */
.hero-otp-box {
  background: linear-gradient(135deg, #FFFDF5 0%, #FFF8FA 100%);
  border: 1.5px dashed var(--gold-accent);
  border-radius: 12px;
  padding: 10px 14px;
  animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.otp-digit-input {
  letter-spacing: 6px;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  color: var(--primary-maroon);
}

.phone-verified-pill {
  background: #ECFDF5;
  border: 1px solid #10B981;
  color: #065F46;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hero Feature Cards */
.hero-feature-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(123, 0, 44, 0.04);
}

.hero-feature-item:hover {
  background: #FFFFFF;
  border-color: var(--gold-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(123, 0, 44, 0.08);
}

.hero-feature-icon {
  border-radius: 10px;
  background: var(--blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Offcanvas Drawer Navigation */
.offcanvas#mobileNavDrawer {
  max-width: 320px;
}

.offcanvas#mobileNavDrawer .list-group-item {
  font-size: 14px;
  color: #2D3748;
  transition: all 0.2s ease;
}

.offcanvas#mobileNavDrawer .list-group-item:hover {
  background-color: var(--blush-light);
  color: var(--primary-maroon);
}

.quick-search-box {
  background: #FFFFFF;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 15px 40px rgba(123, 0, 44, 0.12);
  margin-top: 20px;
}

.quick-search-box .form-select,
.quick-search-box .form-control {
  border-radius: var(--radius-sm);
  border: 1px solid #E0D0D5;
  padding: 10px 14px;
  font-size: 14px;
}

/* Hero Visual Cards */
/* Hero Registration Card */
.hero-register-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold-light);
  box-shadow: 0 20px 50px rgba(123, 0, 44, 0.15);
  overflow: hidden;
}

.hero-register-header {
  background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-dark) 100%);
  padding: 18px 24px;
  color: #FFFFFF;
  border-bottom: 2px solid var(--gold-accent);
}

.hero-register-body {
  padding: 24px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--blush-border);
  box-shadow: 0 4px 15px rgba(123, 0, 44, 0.04);
}

.hero-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blush-light);
  color: var(--primary-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ================= Cards & Match Grid ================= */
.match-card {
  background: #FFFFFF;
  border: 1px solid var(--blush-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  position: relative;
}

.match-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--gold-accent);
}

.match-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  position: relative;
}

.match-score-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.horo-score-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-dark) 100%);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.match-card-body {
  padding: 16px;
}

.match-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-maroon);
  margin-bottom: 4px;
}

.match-card-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.badge-tag {
  background: var(--blush-light);
  color: var(--primary-maroon);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  display: inline-block;
  margin-right: 4px;
  margin-bottom: 6px;
}

/* ================= 10 Porutham Visual Box ================= */
.porutham-box {
  background: #FFFFFF;
  border: 1.5px solid var(--gold-accent);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--card-shadow);
}

.porutham-pill {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.porutham-pass {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.porutham-fail {
  background: #FFF1F2;
  color: #9F1239;
  border: 1px solid #FECDD3;
}

/* ==========================================================================
   Commercial Matrimonial Portal (Kongu Manamalai Reference Architecture)
   Top Navbar, Contact Bar, Search View, Profile View, 12-Box Astrology & Actions
   ========================================================================== */

.matrimony-top-bar {
  background: #064E3B;
  color: #FFFFFF;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.matrimony-main-nav {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.matrimony-nav-link {
  color: #1F2937;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.matrimony-nav-link:hover,
.matrimony-nav-link.active {
  color: #064E3B;
  background: #F0FDF4;
}

.btn-logout-pill {
  background: #DC2626;
  color: #FFFFFF !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 20px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-logout-pill:hover {
  background: #B91C1C;
  transform: translateY(-1px);
}

.matrimony-page-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 16px;
}

/* 10-Porutham Interactive Status Grid */
.porutham-grid-10 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
}

.porutham-status-item {
  background: #FFF5F5;
  border: 1.5px solid #FED7D7;
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  transition: var(--transition-smooth);
}

.porutham-status-item.passed {
  background: #F0FFF4;
  border-color: #9AE6B4;
}

.porutham-status-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #742A2A;
  margin-bottom: 5px;
}

.porutham-status-item.passed .porutham-status-title {
  color: #22543D;
}

.porutham-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  background: #FEB2B2;
  color: #9B2C2C;
}

.porutham-status-item.passed .porutham-status-badge {
  background: #9AE6B4;
  color: #22543D;
}

/* 12-Box South Indian Astrology Kattam */
.horo-charts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.horo-chart-card {
  background: #FFFFFF;
  border: 2px solid #064E3B;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 15px rgba(6, 78, 59, 0.06);
}

.horo-chart-title {
  text-align: center;
  font-weight: 800;
  color: #064E3B;
  font-size: 15px;
  margin-bottom: 12px;
}

.kattam-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 82px);
  border: 2px solid #064E3B;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.kattam-cell {
  border: 1px solid #064E3B;
  padding: 4px 6px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 12px;
  font-weight: 700;
  color: #064E3B;
  background: #FAFDFA;
  overflow: hidden;
  position: relative;
  transition: all 0.2s ease;
}

.kattam-cell.editable {
  cursor: pointer;
}

.kattam-cell.editable:hover {
  background: #FEF3C7;
  border-color: #D97706;
}

.kattam-cell-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 3px;
}

.kattam-cell-num {
  font-size: 9px;
  color: #6B7280;
  line-height: 1;
}

.kattam-house-name {
  font-size: 10px;
  font-weight: 700;
  color: #065F46;
  line-height: 1;
}

.kattam-planets {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  align-items: center;
  width: 100%;
}

.kattam-planet-pill {
  background: #E6F4EA;
  color: #137333;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 800;
  border: 1px solid #A7F3D0;
  display: inline-block;
  line-height: 1.3;
}

.kattam-planet-pill.lagnam {
  background: #FCE8E6;
  color: #C5221F;
  border-color: #FAD2CF;
}

.kattam-planet-pill.che {
  background: #FEF2F2;
  color: #DC2626;
  border-color: #FECACA;
}

.kattam-planet-pill.rahu, .kattam-planet-pill.kethu {
  background: #EFF6FF;
  color: #1D4ED8;
  border-color: #BFDBFE;
}

.kattam-center {
  grid-column: 2 / span 2;
  grid-row: 2 / span 2;
  border: 1.5px solid #064E3B;
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  color: #064E3B;
  letter-spacing: 0.5px;
  padding: 8px;
}

.planet-toggle-btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  border: 1.5px solid #D1D5DB;
  background: #FFFFFF;
  color: #374151;
  cursor: pointer;
  transition: all 0.15s ease;
}

.planet-toggle-btn.active {
  background: #064E3B;
  color: #FFFFFF;
  border-color: #064E3B;
  box-shadow: 0 2px 4px rgba(6,78,59,0.25);
}

.planet-toggle-btn.active.lagnam {
  background: #DC2626;
  border-color: #DC2626;
}

.onboarding-alert-card {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border: 2px solid #F59E0B;
  border-radius: 12px;
  padding: 16px 20px;
}

.age-badge-live {
  background: #ECFDF5;
  border: 1px solid #10B981;
  color: #065F46;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ================= Advanced Match Search & Filter ================= */
.adv-search-card {
  background: #FFFFFF;
  border: 1.5px solid var(--blush-border);
  border-top: 4px solid #064E3B;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--card-shadow);
  margin-bottom: 25px;
}

.adv-search-title {
  color: #064E3B;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.adv-search-subtitle {
  font-size: 13px;
  color: #666666;
  margin-bottom: 20px;
}

.adv-form-label {
  font-size: 12.5px;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 5px;
}

.adv-form-control {
  border-radius: 10px;
  border: 1.5px solid #CBD5E0;
  padding: 9px 12px;
  font-size: 13.5px;
  transition: var(--transition-smooth);
}

.adv-form-control:focus {
  border-color: #064E3B;
  box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.15);
}

.btn-adv-search {
  background: linear-gradient(135deg, #064E3B 0%, #042F24 100%);
  color: #FFFFFF;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(6, 78, 59, 0.25);
  transition: var(--transition-smooth);
}

.btn-adv-search:hover {
  background: linear-gradient(135deg, #0A6C53 0%, #064E3B 100%);
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* ================= Match Result Card (Kongu Reference Style) ================= */
.match-result-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

.match-result-card:hover {
  border-color: #CBD5E0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.match-photo-wrap {
  width: 130px;
  flex-shrink: 0;
  text-align: center;
}

.match-avatar-img {
  width: 120px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #E2E8F0;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* ================= UyirThunai Photo Watermark & Anti-Download Protection ================= */
.uyir-watermark-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.uyir-watermark-wrap img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

.uyir-photo-watermark {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  pointer-events: none;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 5;
}

.uyir-photo-watermark .watermark-tamil {
  color: #FBBF24;
  font-weight: 800;
}

.uyir-photo-watermark-diagonal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  background: rgba(15, 23, 42, 0.45);
  color: rgba(255, 255, 255, 0.85);
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  pointer-events: none;
  white-space: nowrap;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  z-index: 5;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.no-download-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
  z-index: 4;
}

.match-vip-tag {
  background: #0077CC;
  color: #FFFFFF;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  display: inline-block;
  margin-top: 6px;
}

/* ================= Return to Match Card Pulse Glow ================= */
.highlight-match-card {
  border-color: #059669 !important;
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.4), 0 10px 25px rgba(0, 0, 0, 0.12) !important;
  animation: matchCardPulse 1.6s ease-in-out 3;
  transition: all 0.3s ease;
}

@keyframes matchCardPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.3);
  }
  50% {
    transform: scale(1.018);
    box-shadow: 0 0 0 8px rgba(5, 150, 105, 0.25), 0 12px 28px rgba(5, 150, 105, 0.15);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.3);
  }
}

/* ================= Matches 15 Per Page Pagination Bar ================= */
.ut-pagination-wrap {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 16px 20px;
  margin-top: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.ut-page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #CBD5E1;
  background: #FFFFFF;
  color: #334155;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.ut-page-btn:hover:not(:disabled) {
  background: #F0FDF4;
  border-color: #059669;
  color: #059669;
}

.ut-page-btn.active {
  background: #059669 !important;
  border-color: #059669 !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}

.ut-page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #F8FAFC;
}

.match-id-pill {
  background: #EDF2F7;
  color: #2D3748;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 8px;
  border: 1px solid #CBD5E0;
  display: inline-block;
  margin-top: 4px;
}

.match-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px 16px;
  font-size: 13px;
  color: #2D3748;
  margin: 10px 0 14px;
}

.match-spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.match-spec-icon {
  width: 18px;
  color: #064E3B;
  flex-shrink: 0;
  text-align: center;
}

.porutham-score-star {
  background: #D97706;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ================= Quick Action Sticky Sidebar & ID Search ================= */
.quick-action-panel {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--card-shadow);
}

.id-search-box {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.id-search-input {
  border-radius: 8px;
  border: 1.5px solid #CBD5E0;
  padding: 8px 12px;
  font-size: 13px;
  flex-grow: 1;
}

.btn-id-search-go {
  background: #064E3B;
  color: #FFFFFF;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
}

.btn-id-search-go:hover {
  background: #042F24;
  color: #FFFFFF;
}

.btn-quick-contact {
  background: #F59E0B;
  color: #000000 !important;
  font-weight: 700;
  padding: 12px;
  border-radius: 10px;
  border: none;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-quick-chat {
  background: #2563EB;
  color: #FFFFFF !important;
  font-weight: 700;
  padding: 12px;
  border-radius: 10px;
  border: none;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-quick-print {
  background: #FFFFFF;
  color: #1F2937 !important;
  font-weight: 700;
  padding: 12px;
  border-radius: 10px;
  border: 1.5px solid #4B5563;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-quick-interest {
  background: #059669;
  color: #FFFFFF !important;
  font-weight: 700;
  padding: 12px;
  border-radius: 10px;
  border: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ================= Full Profile Detail View Modal ================= */
.vip-profile-header-banner {
  background: linear-gradient(90deg, #064E3B 0%, #042F24 100%);
  color: #FFFFFF;
  padding: 18px 24px;
  border-radius: 14px 14px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.vip-badge-pill {
  background: #F59E0B;
  color: #000000;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 4px;
}

.profile-gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.profile-gallery-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #E2E8F0;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.profile-gallery-thumb.active,
.profile-gallery-thumb:hover {
  border-color: #064E3B;
  transform: scale(1.05);
}

.profile-tabs-bar {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid #E2E8F0;
  margin: 20px 0 15px;
  overflow-x: auto;
}

.profile-tab-btn {
  background: transparent;
  border: none;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  color: #4B5563;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.profile-tab-btn.active {
  color: #064E3B;
  border-bottom-color: #064E3B;
  background: #F0FDF4;
  border-radius: 8px 8px 0 0;
}

/* ================= Member Web Portal Layout ================= */
.app-container {
  display: flex;
  min-height: calc(100vh - 80px);
}

.app-sidebar {
  width: 260px;
  background: #FFFFFF;
  border-right: 1px solid var(--blush-border);
  padding: 20px 0;
  flex-shrink: 0;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: #444444;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-left: 3px solid transparent;
  transition: var(--transition-smooth);
}

.sidebar-link:hover,
.sidebar-link.active {
  background: var(--blush-light);
  color: var(--primary-maroon);
  border-left-color: var(--primary-maroon);
}

.app-content {
  flex-grow: 1;
  padding: 30px;
  background: var(--ivory-warm);
}

/* ================= Modal & Dialogs ================= */
.modal-content {
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gold-light);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(123, 0, 44, 0.25);
}

.modal-header-maroon {
  background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  border-bottom: 1px solid var(--gold-accent);
}

/* Confetti Celebration */
.celebration-modal {
  text-align: center;
  padding: 30px;
}

.celebration-icon {
  font-size: 54px;
  margin-bottom: 15px;
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

/* ================= Footer ================= */
.ut-footer {
  background: #2A000E;
  color: #FFFFFF;
  padding: 60px 0 30px;
  border-top: 3px solid var(--gold-accent);
}

.ut-footer h5 {
  color: var(--gold-accent);
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 16px;
}

.ut-footer a {
  color: #D1B8C0;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  transition: var(--transition-smooth);
}

.ut-footer a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 40px;
  font-size: 13px;
  color: #B59CA4;
  text-align: center;
}

/* ================= Smart Dashboard & Live Notifications UI ================= */
.floating-toast-container {
  max-width: 420px;
  width: 100%;
  pointer-events: none;
}

.floating-toast-card {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border-left: 5px solid #064E3B;
  box-shadow: 0 15px 35px rgba(6, 78, 59, 0.2);
  margin-bottom: 12px;
  overflow: hidden;
  animation: slideInToast 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: all 0.3s ease;
}

@keyframes slideInToast {
  0% { transform: translateX(100%) scale(0.9); opacity: 0; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}

.floating-toast-card.accepted {
  border-left-color: #10B981;
}

.floating-toast-card.interest {
  border-left-color: #F59E0B;
}

.floating-toast-card.chat {
  border-left-color: #3B82F6;
}

.notif-item-card {
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.15s ease;
  cursor: pointer;
}

.notif-item-card:hover {
  background: #F0FDF4;
}

.notif-item-card.unread {
  background: #ECFDF5;
  border-left: 3px solid #059669;
}

.stat-kpi-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  padding: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.stat-kpi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(6, 78, 59, 0.08);
  border-color: #A7F3D0;
}

.stat-kpi-card .stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.quick-action-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #F0FDF4;
  color: #065F46;
  border: 1px solid #A7F3D0;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.quick-action-pill:hover {
  background: #064E3B;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(6, 78, 59, 0.15);
}

.quick-filter-chip {
  padding: 6px 14px;
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
}

.quick-filter-chip:hover, .quick-filter-chip.active {
  background: #064E3B;
  color: #FFFFFF;
  border-color: #064E3B;
  box-shadow: 0 4px 10px rgba(6, 78, 59, 0.2);
}

.dashboard-hero-card {
  background: linear-gradient(135deg, #064E3B 0%, #022C20 100%);
  border-radius: 20px;
  border: 2px solid #D97706;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(6, 78, 59, 0.25);
  position: relative;
  overflow: hidden;
}

.dashboard-hero-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* ================= Luxury Website Keyframes & Dynamic Effects ================= */
@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(217, 119, 6, 0.3), 0 0 30px rgba(6, 78, 59, 0.15);
  }
  50% {
    box-shadow: 0 0 28px rgba(217, 119, 6, 0.6), 0 0 45px rgba(6, 78, 59, 0.3);
  }
}

@keyframes shimmerEffect {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.floating-badge {
  animation: floatBadge 4s ease-in-out infinite;
}

.pulse-glow {
  animation: pulseGlow 3s infinite ease-in-out;
}

.hero-register-card {
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-register-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(6, 78, 59, 0.25), 0 0 0 1px rgba(217, 119, 6, 0.35);
}

.hero-feature-item {
  transition: all 0.25s ease;
}

.hero-feature-item:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 16px rgba(6, 78, 59, 0.1);
}

.stat-box-modern {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(217, 119, 6, 0.2);
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-box-modern:hover {
  transform: translateY(-5px);
  border-color: #D97706;
  box-shadow: 0 14px 30px rgba(6, 78, 59, 0.15);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   MOBILE & TABLET "PAKKA RESPONSIVE" APP BAR & LAYOUT ENGINE
   ========================================================================== */

/* Fixed Mobile App Bottom Navigation Bar */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  border-top: 1px solid #E5E7EB;
  z-index: 1080;
  justify-content: space-around;
  align-items: center;
  padding: 4px 8px;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  flex: 1;
  padding: 4px 0;
  transition: all 0.2s ease;
  position: relative;
  border-radius: 8px;
}

.mobile-nav-item i {
  font-size: 18px;
  margin-bottom: 2px;
  transition: transform 0.2s ease;
}

.mobile-nav-item.active {
  color: #064E3B;
  font-weight: 800;
}

.mobile-nav-item.active i {
  color: #064E3B;
  transform: translateY(-2px);
}

.mobile-nav-item.active::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 28px;
  height: 3px;
  background: #064E3B;
  border-radius: 3px;
}

.mobile-nav-item.highlight-login {
  background: linear-gradient(135deg, #064E3B 0%, #047857 100%);
  color: #FFFFFF !important;
  border-radius: 12px;
  padding: 4px 6px;
  box-shadow: 0 3px 10px rgba(6, 78, 59, 0.3);
}

.mobile-nav-item.highlight-login i {
  color: #FCD34D !important;
}

.mobile-nav-badge {
  position: absolute;
  top: 0;
  right: 22%;
  background: #EF4444;
  color: #FFF;
  font-size: 9px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 10px;
}

/* Responsive Media Queries (Tablets & Mobile < 992px) */
@media (max-width: 991.98px) {
  /* Show Mobile Bottom Navigation on both mobile and tablets */
  .mobile-bottom-nav,
  .ut-mobile-bottom-nav {
    display: flex !important;
  }

  /* Add padding to prevent bottom nav overlap */
  body {
    padding-bottom: 74px !important;
  }

  .matrimony-page-container {
    padding: 12px 10px !important;
  }

  /* Hide Desktop Horizontal Navigation Links */
  .matrimony-main-nav nav > .matrimony-nav-link {
    display: none !important;
  }

  /* Compact Top Bar */
  .matrimony-top-bar {
    font-size: 11px;
    padding: 4px 0;
    text-align: center;
  }

  .matrimony-top-bar .container-fluid {
    justify-content: center !important;
    gap: 4px !important;
  }

  /* Float Live Chat Above Bottom Nav */
  #liveChatFab {
    bottom: 76px !important;
    right: 16px !important;
  }

  #liveChatBox {
    bottom: 135px !important;
    right: 16px !important;
    max-width: calc(100vw - 32px) !important;
  }

  /* Hero & Dashboard Cards */
  .dashboard-hero-card {
    padding: 16px;
    border-radius: 14px;
  }

  /* Match Result Card on Mobile */
  .match-result-card {
    padding: 14px;
    border-radius: 14px;
  }

  .match-photo-wrap {
    text-align: center;
    margin-bottom: 8px;
  }

  .match-avatar-img {
    width: 100px;
    height: 100px;
  }

  .match-details-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    font-size: 11.5px !important;
    padding: 10px;
  }

  /* Search Chips Horizontal Scroll */
  .search-preset-chips-wrap {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 8px 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .search-preset-chips-wrap::-webkit-scrollbar {
    display: none;
  }

  .search-preset-chips-wrap .btn {
    flex-shrink: 0;
    font-size: 11px;
    padding: 4px 10px;
  }

  /* Kattams Grid Responsive on Mobile */
  .horoscope-chart-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 3px !important;
    max-width: 100% !important;
  }

  .kattam-cell {
    min-height: 60px !important;
    padding: 3px !important;
    font-size: 10px !important;
  }

  .kattam-cell-title {
    font-size: 9px !important;
  }

  .kattam-cell-planets {
    font-size: 9px !important;
  }

  /* Touch-friendly buttons */
  .btn-sm {
    padding: 6px 12px;
    font-size: 12px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* Tablet Styles */
  .matrimony-main-nav nav > .matrimony-nav-link {
    font-size: 12px;
    padding: 6px 10px;
  }

  .match-details-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .horoscope-chart-grid {
    max-width: 380px !important;
  }
}

/* ==========================================================================
   UyirThunai Centered Glassmorphism Modal & Popup System (UyirModal)
   ========================================================================== */
.uyir-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: uyirModalFadeIn 0.25s ease-out forwards;
}

@keyframes uyirModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.uyir-modal-box {
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 24px;
  box-shadow: 0 25px 60px -15px rgba(123, 0, 44, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  max-width: 480px;
  width: 100%;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transform: scale(0.92);
  animation: uyirModalPopIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.uyir-modal-box.modal-lg {
  max-width: 720px;
  text-align: left;
}

@keyframes uyirModalPopIn {
  from { opacity: 0; transform: scale(0.9) translateY(15px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.uyir-modal-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
}

.uyir-modal-icon-wrap.success {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  color: #059669;
  box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.15);
}

.uyir-modal-icon-wrap.heart {
  background: linear-gradient(135deg, #FFF1F2, #FFE4E6);
  color: #E11D48;
  box-shadow: 0 0 0 8px rgba(225, 29, 72, 0.15);
  animation: uyirHeartPulse 1.8s infinite;
}

@keyframes uyirHeartPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.3); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 16px rgba(225, 29, 72, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.uyir-modal-icon-wrap.warning {
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  color: #D97706;
  box-shadow: 0 0 0 8px rgba(217, 119, 6, 0.15);
}

.uyir-modal-icon-wrap.info {
  background: linear-gradient(135deg, #FFF8F9, #FCE7F3);
  color: var(--primary-maroon);
  box-shadow: 0 0 0 8px rgba(123, 0, 44, 0.12);
}

.uyir-modal-title {
  font-size: 22px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.uyir-modal-subtitle {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 24px;
  line-height: 1.5;
}

.uyir-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.uyir-modal-btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.uyir-modal-btn:hover {
  transform: translateY(-2px);
}

.uyir-modal-btn.btn-cancel {
  background: #F1F5F9;
  color: #475569;
}

.uyir-modal-btn.btn-cancel:hover {
  background: #E2E8F0;
  color: #1E293B;
}

.uyir-modal-btn.btn-primary-maroon {
  background: linear-gradient(135deg, var(--primary-maroon), var(--primary-dark));
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(123, 0, 44, 0.3);
}

.uyir-modal-btn.btn-danger-revoke {
  background: linear-gradient(135deg, #E11D48, #BE123C);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.3);
}

.uyir-modal-btn.btn-gold-action {
  background: linear-gradient(135deg, #D4AF37, #B48B1C);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

/* Toast System */
.uyir-toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.uyir-toast {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  border-radius: 14px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: uyirToastSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes uyirToastSlideIn {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Horoscope Box Editor interactive chips */
.horo-planet-chip {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin: 1px;
  background: #064E3B;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.15s ease;
}

.horo-planet-chip:hover {
  transform: scale(1.08);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.horo-planet-chip.lagna {
  background: #DC2626;
}

.horo-box-cell {
  background: #FFFFFF;
  border: 1.5px solid #064E3B;
  min-height: 80px;
  padding: 4px;
  font-size: 11px;
  position: relative;
  transition: background-color 0.2s;
}

.horo-box-cell:hover {
  background: #F0FDF4;
}

.horo-box-cell-header {
  font-size: 10px;
  font-weight: 800;
  color: #064E3B;
  border-bottom: 1px dashed #CBD5E1;
  padding-bottom: 2px;
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
}

/* Geo Place Suggestions & Live Coordinates Badge */
.geo-suggest-wrap {
  position: relative;
}

.geo-suggest-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1.5px solid #D97706;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-height: 220px;
  overflow-y: auto;
  z-index: 1050;
  margin-top: 4px;
  display: none;
}

.geo-suggest-item {
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #F1F5F9;
  font-size: 12px;
  transition: all 0.15s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.geo-suggest-item:last-child {
  border-bottom: none;
}

.geo-suggest-item:hover, .geo-suggest-item.active {
  background: #FEF3C7;
  color: #92400E;
}

.geo-suggest-item .geo-place-title {
  font-weight: 700;
  color: #1F2937;
}

.geo-suggest-item .geo-place-coords {
  font-size: 10.5px;
  color: #059669;
  font-family: monospace;
}

.geo-coord-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 600;
  margin-top: 4px;
  transition: all 0.2s ease;
}

.geo-coord-badge .geo-indicator {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   Mobile Navbar & Bottom Navigation Bar (100% Prominent Visibility)
   ========================================================================== */
@media (max-width: 576px) {
  .ut-navbar .brand-logo img {
    height: 38px !important;
    max-height: 40px !important;
    max-width: 140px !important;
  }
  .ut-navbar .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
    gap: 4px;
  }
  #navAuthActions {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    flex-shrink: 0;
  }
  #navAuthActions .btn {
    padding: 5px 10px !important;
    font-size: 11.5px !important;
    border-radius: 20px !important;
    white-space: nowrap !important;
  }
}

/* Mobile Fixed Bottom Navigation Bar */
.ut-mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: #FFFFFF;
  border-top: 1.5px solid #E2E8F0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1045;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
  padding: 4px 6px 6px;
}

.ut-mobile-bottom-nav .mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #64748B;
  font-size: 10px;
  font-weight: 700;
  transition: all 0.2s ease;
  flex: 1;
  padding: 4px 2px;
  border-radius: 8px;
}

.ut-mobile-bottom-nav .mobile-nav-item i {
  font-size: 17px;
  margin-bottom: 2px;
}

.ut-mobile-bottom-nav .mobile-nav-item.active,
.ut-mobile-bottom-nav .mobile-nav-item:hover {
  color: var(--primary-maroon, #680d19);
}

.ut-mobile-bottom-nav .mobile-nav-item.highlight-login {
  background: linear-gradient(135deg, #680d19 0%, #064E3B 100%);
  color: #FFFFFF !important;
  border-radius: 10px;
  padding: 4px 2px;
  box-shadow: 0 2px 8px rgba(104, 13, 25, 0.35);
}

.ut-mobile-bottom-nav .mobile-nav-item.highlight-login i {
  color: #FCD34D !important;
}

@media (max-width: 991px) {
  body {
    padding-bottom: 64px !important;
  }
}

/* ==========================================================================
   Infossel Soft Solutions UPI QR & Razorpay Checkout Modal
   ========================================================================== */
.upi-checkout-box {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1.5px solid #E2E8F0;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.upi-qr-image-wrap {
  position: relative;
  display: inline-block;
  padding: 10px;
  background: #FFFFFF;
  border-radius: 14px;
  border: 2px solid #10B981;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2);
  margin-bottom: 12px;
}

.upi-qr-image-wrap img {
  width: 210px;
  height: 210px;
  max-width: 85vw;
  border-radius: 8px;
  display: block;
}

.upi-apps-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 10px 0 14px;
  flex-wrap: wrap;
}

.upi-app-badge {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #334155;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.upi-merchant-badge {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

/* ==========================================================================
   Live Help & Real-Time Support Chat Box Smooth Scroll & Responsive Layout
   ========================================================================== */
#liveChatBox {
  display: none;
  position: fixed;
  bottom: 85px;
  right: 20px;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 100px);
  z-index: 9999;
  background: #FFFFFF;
  flex-direction: column;
  border-radius: 18px;
  border: 2px solid rgba(212, 175, 55, 0.45) !important;
  box-shadow: 0 16px 48px rgba(123, 0, 44, 0.18), 0 4px 16px rgba(0, 0, 0, 0.08) !important;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

#chatMessagesArea {
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 14px;
}

/* Modern custom slim scrollbar for Live Chat */
#chatMessagesArea::-webkit-scrollbar {
  width: 5px;
}
#chatMessagesArea::-webkit-scrollbar-track {
  background: #F1F5F9;
  border-radius: 4px;
}
#chatMessagesArea::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
#chatMessagesArea::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

#chatActiveInterface {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: calc(100% - 60px);
}

#chatPreFormWrap {
  flex: 1 1 auto;
  overflow-y: auto;
  max-height: calc(100% - 60px);
  -webkit-overflow-scrolling: touch;
}

/* Animated Hero Logo Floating Branding */
@keyframes floatLogoAnim {
  0%, 100% {
    transform: translateY(0px) scale(1);
    box-shadow: 0 6px 20px rgba(123, 0, 44, 0.12), 0 0 15px rgba(212, 175, 55, 0.2);
  }
  50% {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 28px rgba(123, 0, 44, 0.2), 0 0 22px rgba(212, 175, 55, 0.4);
  }
}

@keyframes goldPulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.animate-float-logo {
  animation: floatLogoAnim 4s ease-in-out infinite;
  transition: all 0.3s ease;
}

.animate-float-logo:hover {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.03);
}

.brand-logo-glow::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0) 70%);
  z-index: -1;
  animation: goldPulseGlow 3s ease-in-out infinite;
}

/* ==========================================================================
   UYIR AI ROBO MASCOT & THIRUKKURAL DAILY GREETING
   ========================================================================== */
@keyframes roboFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1.5deg);
  }
}

@keyframes roboWave {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(22deg); }
  40% { transform: rotate(-10deg); }
  60% { transform: rotate(18deg); }
  80% { transform: rotate(-5deg); }
}

@keyframes roboPulseRing {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0.2; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

@keyframes roboEyeBlink {
  0%, 90%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.1); }
}

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

.uyir-robo-welcome-card {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #064E3B 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22), 0 0 25px rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
  animation: roboPopIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.uyir-robo-welcome-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.uyir-robo-mascot-wrap {
  width: 90px;
  height: 90px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: roboFloat 3.5s ease-in-out infinite;
}

.uyir-robo-svg {
  width: 84px;
  height: 84px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
}

.uyir-robo-arm-waving {
  transform-origin: 22px 55px;
  animation: roboWave 2.5s ease-in-out infinite;
}

.uyir-robo-eye {
  transform-origin: center;
  animation: roboEyeBlink 4s infinite;
}

.uyir-thirukkural-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-left: 4px solid var(--gold-accent);
  border-radius: 12px;
  padding: 14px 18px;
  position: relative;
}

.uyir-thirukkural-verse {
  font-family: 'Noto Sans Tamil', 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: #FDE047;
  letter-spacing: 0.2px;
}

.uyir-thirukkural-meaning {
  font-size: 12.5px;
  color: #E2E8F0;
  line-height: 1.5;
  margin-top: 6px;
}

/* Floating Robo Orb Button */
.uyir-robo-floating-orb {
  position: fixed;
  bottom: 85px;
  right: 20px;
  z-index: 1040;
  background: linear-gradient(135deg, #047857 0%, #064E3B 50%, #0F172A 100%);
  border: 2px solid var(--gold-accent);
  color: #FFFFFF;
  border-radius: 50px;
  padding: 8px 16px 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: roboFloat 4s ease-in-out infinite;
}

.uyir-robo-floating-orb:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 22px rgba(212, 175, 55, 0.6);
}

.uyir-robo-floating-orb .pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  animation: roboPulseRing 2s infinite;
}

@media (max-width: 768px) {
  .uyir-robo-floating-orb {
    bottom: 75px;
    right: 14px;
    padding: 6px 12px 6px 8px;
/* Animated Uyir AI Robo Assistant Avatar Styles */
.uyir-robo-avatar-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 90px;
  animation: roboFloat 3.5s ease-in-out infinite;
}

.uyir-robo-antenna {
  width: 4px;
  height: 14px;
  background: #D4AF37;
  position: relative;
  border-radius: 2px;
}

.uyir-robo-antenna::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981, 0 0 20px #34D399;
  animation: antennaPulse 1.5s ease-in-out infinite alternate;
}

.uyir-robo-head {
  width: 74px;
  height: 56px;
  background: linear-gradient(145deg, #1E293B, #0F172A);
  border: 2px solid #D4AF37;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.1);
  position: relative;
}

.uyir-robo-eyes {
  display: flex;
  gap: 14px;
  margin-bottom: 5px;
}

.robo-eye {
  width: 14px;
  height: 14px;
  background: #38BDF8;
  border-radius: 50%;
  box-shadow: 0 0 10px #38BDF8, 0 0 18px #0284C7;
  animation: eyeBlink 3.8s infinite;
  display: block;
}

.uyir-robo-mouth {
  width: 22px;
  height: 4px;
  background: #10B981;
  border-radius: 2px;
  box-shadow: 0 0 6px #10B981;
}

.uyir-robo-body-badge {
  margin-top: 6px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #D4AF37;
  padding: 2px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #F3E5AB;
}

@keyframes antennaPulse {
  0% { transform: translateX(-50%) scale(0.9); opacity: 0.7; }
  100% { transform: translateX(-50%) scale(1.25); opacity: 1; box-shadow: 0 0 15px #10B981, 0 0 25px #6EE7B7; }
}

@keyframes eyeBlink {
  0%, 90%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.1); }
}

@keyframes roboFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes roboPulseRing {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   VINAYAGAR CHATURTHI GRAND LAUNCH ANIMATED BLAST POPUP & FESTIVE BANNER
   ========================================================================== */
.festive-blast-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 2, 8, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: festiveFadeIn 0.4s ease-out forwards;
}

.festive-blast-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.festive-blast-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  background: linear-gradient(145deg, #4A001A 0%, #7B002C 45%, #2D0010 100%);
  border: 3px solid #F59E0B;
  border-radius: 28px;
  padding: 30px 24px 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(245, 158, 11, 0.45);
  text-align: center;
  color: #FFFFFF;
  animation: festivePopBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  overflow: hidden;
}

.festive-blast-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
  animation: rotateAura 12s linear infinite;
  pointer-events: none;
}

.festive-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.festive-close-btn:hover {
  background: #DC2626;
  border-color: #DC2626;
  transform: rotate(90deg) scale(1.1);
}

.festive-ganesha-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFFBEB 0%, #FEF3C7 60%, #F59E0B 100%);
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.8);
  font-size: 38px;
  margin-bottom: 12px;
  animation: floatGanesha 3s ease-in-out infinite;
}

.festive-title {
  font-size: 22px;
  font-weight: 800;
  color: #FEF3C7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 4px;
}

.festive-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #FDE68A;
  margin-bottom: 18px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.festive-offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
  text-align: left;
}

.festive-offer-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 14px;
  padding: 10px 12px;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease;
}

.festive-offer-pill:hover {
  transform: translateY(-2px);
  border-color: #F59E0B;
  background: rgba(255, 255, 255, 0.16);
}

.festive-offer-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.festive-offer-text h6 {
  font-size: 12.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1px;
}

.festive-offer-text small {
  font-size: 10.5px;
  color: #FDE68A;
  display: block;
}

.festive-countdown-wrap {
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed rgba(245, 158, 11, 0.6);
  border-radius: 12px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #FEF3C7;
}

.festive-cta-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 50%, #B45309 100%);
  border: 2px solid #FFFFFF;
  color: #1E000B;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.5);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.festive-cta-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.7);
  color: #000000;
  background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 50%, #D97706 100%);
}

.festive-floating-badge {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  background: linear-gradient(135deg, #7B002C 0%, #9E0038 100%);
  border: 2px solid #F59E0B;
  border-radius: 50px;
  padding: 10px 18px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(123, 0, 44, 0.4), 0 0 15px rgba(245, 158, 11, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: badgePulse 2s infinite ease-in-out;
  transition: transform 0.2s ease;
}

.festive-floating-badge:hover {
  transform: scale(1.08);
}

@keyframes festiveFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes festivePopBounce {
  0% { transform: scale(0.6) translateY(40px); opacity: 0; }
  70% { transform: scale(1.05) translateY(-5px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes rotateAura {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floatGanesha {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(123, 0, 44, 0.4), 0 0 10px rgba(245, 158, 11, 0.3); }
  50% { box-shadow: 0 12px 30px rgba(123, 0, 44, 0.6), 0 0 22px rgba(245, 158, 11, 0.8); }
}

/* ==========================================================================
   VINAYAGAR CHATURTHI FESTIVE BLAST POPUP STYLES
   ========================================================================== */
.festive-blast-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(15, 2, 8, 0.88) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 9999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  box-sizing: border-box !important;
}
.festive-blast-canvas {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  z-index: 1 !important;
}
.festive-blast-card {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: 520px !important;
  background: linear-gradient(145deg, #4A001A 0%, #7B002C 45%, #2D0010 100%) !important;
  border: 3px solid #F59E0B !important;
  border-radius: 28px !important;
  padding: 30px 24px 24px !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(245, 158, 11, 0.5) !important;
  text-align: center !important;
  color: #FFFFFF !important;
  box-sizing: border-box !important;
  margin: auto !important;
  animation: festivePopBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
}
.festive-close-btn {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #FFFFFF !important;
  font-size: 18px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.festive-close-btn:hover {
  background: #DC2626 !important;
}
.festive-ganesha-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 76px !important;
  height: 76px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, #FFFBEB 0%, #FEF3C7 60%, #F59E0B 100%) !important;
  border: 3px solid #FFFFFF !important;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.8) !important;
  font-size: 38px !important;
  margin: 0 auto 12px auto !important;
}
.festive-title {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #FEF3C7 !important;
  margin: 0 0 4px 0 !important;
}
.festive-subtitle {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #FDE68A !important;
  margin: 0 0 16px 0 !important;
}
.festive-offers-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  margin-bottom: 18px !important;
  text-align: left !important;
}
.festive-offer-pill {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(245, 158, 11, 0.45) !important;
  border-radius: 14px !important;
  padding: 10px 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}
.festive-offer-icon {
  font-size: 22px !important;
}
.festive-offer-text h6 {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  margin: 0 !important;
}
.festive-offer-text small {
  font-size: 10.5px !important;
  color: #FDE68A !important;
  display: block !important;
}
.festive-countdown-wrap {
  background: rgba(0, 0, 0, 0.45) !important;
  border: 1px dashed rgba(245, 158, 11, 0.6) !important;
  border-radius: 12px !important;
  padding: 8px 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 18px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #FEF3C7 !important;
}
.festive-cta-btn {
  width: 100% !important;
  padding: 14px 20px !important;
  border-radius: 50px !important;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 50%, #B45309 100%) !important;
  border: 2px solid #FFFFFF !important;
  color: #1E000B !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
}
.festive-floating-badge {
  position: fixed !important;
  bottom: 24px !important;
  left: 24px !important;
  z-index: 99999 !important;
  background: linear-gradient(135deg, #7B002C 0%, #9E0038 100%) !important;
  border: 2px solid #F59E0B !important;
  border-radius: 50px !important;
  padding: 10px 18px !important;
  color: #FFFFFF !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}
@keyframes festivePopBounce {
  0% { transform: scale(0.6) translateY(30px); opacity: 0; }
  70% { transform: scale(1.04) translateY(-4px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}



