/* 
  ===================================================================
  DESHORA - India's Swadeshi Marketplace Landing Page Styling
  Theme: Luxury, Modern, Indian, Minimal, Glassmorphic, Apple-Level UI
  Color Palette:
    - Primary Navy Blue: #0B2A5B
    - Saffron: #FF7A00
    - India Green: #138A36
    - Gold: #D4AF37
    - White: #FFFFFF / #FAFAFC
  ===================================================================
*/

:root {
  --navy: #0B2A5B;
  --navy-dark: #071B3D;
  --navy-light: #164283;
  --saffron: #FF7A00;
  --saffron-light: #FF9933;
  --saffron-subtle: rgba(255, 122, 0, 0.08);
  --green: #138A36;
  --green-light: #18AB43;
  --green-subtle: rgba(19, 138, 54, 0.08);
  --gold: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-subtle: rgba(212, 175, 55, 0.12);
  --white: #FFFFFF;
  --soft-white: #FAFAFD;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --border-glass: rgba(255, 255, 255, 0.85);
  --shadow-glass: 0 20px 40px rgba(11, 42, 91, 0.06);
  --shadow-hover: 0 30px 60px rgba(11, 42, 91, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

/* ================= Global Reset & Typography ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  background-color: var(--soft-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Gradients, Mandala & Floating Orbs */
.bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(circle at 10% 20%, rgba(255, 122, 0, 0.04) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(19, 138, 54, 0.04) 0%, transparent 40%),
              radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 60%),
              #FAFAFD;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-saffron {
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.18), rgba(255, 153, 51, 0));
}

.orb-green {
  bottom: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(19, 138, 54, 0.15), rgba(24, 171, 67, 0));
  animation-delay: -5s;
}

.orb-gold {
  top: 40%;
  left: 30%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), rgba(243, 229, 171, 0));
  animation-delay: -9s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.08); }
  100% { transform: translate(-40px, 80px) scale(0.95); }
}

/* Subtle Indian Mandala Backdrop */
.mandala-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.025;
  background-image: radial-gradient(#0B2A5B 1px, transparent 1px), radial-gradient(#FF7A00 1px, #FAFAFD 1px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

/* Floating Leaves Engine */
.floating-leaves-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.leaf-particle {
  position: absolute;
  opacity: 0.35;
  animation: floatLeaf 22s linear infinite;
}

@keyframes floatLeaf {
  0% {
    transform: translateY(110vh) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.45;
  }
  90% {
    opacity: 0.45;
  }
  100% {
    transform: translateY(-10vh) rotate(360deg) translateX(80px);
    opacity: 0;
  }
}

/* ================= Glassmorphism Utility ================= */
.glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(11, 42, 91, 0.05);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 1);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

/* Section Wrapper Spacing */
section {
  position: relative;
  padding: 90px 0;
  z-index: 2;
}

/* Custom Section Header */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 122, 0, 0.08);
  border: 1px solid rgba(255, 122, 0, 0.2);
  border-radius: 50px;
  color: var(--saffron);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title span.text-gradient-saffron {
  background: linear-gradient(135deg, var(--saffron), #FF9933);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title span.text-gradient-green {
  background: linear-gradient(135deg, var(--green), #18AB43);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ================= SECTION 1: HERO ================= */
.hero-section {
  padding-top: 50px;
  text-align: center;
}

.logo-wrapper {
  margin-bottom: 30px;
  display: inline-block;
  transition: transform 0.5s ease;
}

.logo-wrapper:hover {
  transform: scale(1.02);
}

.main-logo {
  max-width: 520px;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(11, 42, 91, 0.12));
}

/* Hindi Tagline Pill Badge */
.hindi-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.12);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.hindi-badge .dot-saffron {
  width: 8px;
  height: 8px;
  background-color: var(--saffron);
  border-radius: 50%;
}

.hindi-badge .dot-green {
  width: 8px;
  height: 8px;
  background-color: var(--green);
  border-radius: 50%;
}

.hero-heading {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-heading span.gradient-text {
  background: linear-gradient(135deg, var(--saffron) 0%, #E65C00 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheading {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-light);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-subheading span.highlight-tag {
  color: var(--saffron);
  font-weight: 700;
}

/* Countdown Timer Modern Glass Cards */
.countdown-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.countdown-card {
  width: 130px;
  height: 135px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 40px rgba(11, 42, 91, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.countdown-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--green));
}

.countdown-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 28px 50px rgba(11, 42, 91, 0.15);
}

.countdown-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -1px;
}

.countdown-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

/* ================= SECTION 2: PRODUCTS CATEGORIES ================= */
.category-card {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.category-icon-wrapper {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(19, 138, 54, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 2.5rem;
  transition: transform 0.4s ease, background 0.4s ease;
  position: relative;
}

.category-card:hover .category-icon-wrapper {
  transform: scale(1.12) rotate(4deg);
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(212, 175, 55, 0.18));
}

.category-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.category-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.swadeshi-badge-mini {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(19, 138, 54, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 14px;
}

/* ================= SECTION 3: FEATURES (6) ================= */
.feature-card {
  padding: 36px 28px;
  position: relative;
  border-radius: var(--radius-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.feature-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(11, 42, 91, 0.08);
}

.feature-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  box-shadow: 0 10px 20px rgba(11, 42, 91, 0.15);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
  background: linear-gradient(135deg, var(--saffron), #E65C00);
  transform: scale(1.08);
  box-shadow: 0 12px 25px rgba(255, 122, 0, 0.3);
}

.feature-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.feature-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================= SECTION 4: LAUNCH PLATFORMS & MOCKUPS ================= */
.mockup-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Laptop Mockup */
.laptop-mockup {
  position: relative;
  width: 680px;
  max-width: 95%;
  perspective: 1000px;
}

.laptop-screen {
  background: #0F172A;
  border-radius: 20px 20px 0 0;
  padding: 14px 14px 0 14px;
  box-shadow: 0 25px 50px rgba(11, 42, 91, 0.2);
  border: 4px solid #1E293B;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.laptop-camera {
  width: 8px;
  height: 8px;
  background: #334155;
  border-radius: 50%;
  margin: 0 auto 10px;
}

.screen-content {
  background: #FFFFFF;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  height: 380px;
  position: relative;
}

.laptop-base {
  height: 18px;
  background: linear-gradient(180deg, #CBD5E1, #94A3B8);
  border-radius: 0 0 16px 16px;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.laptop-notch {
  width: 100px;
  height: 6px;
  background: #64748B;
  border-radius: 0 0 4px 4px;
  margin: 0 auto;
}

/* Phone Mockup */
.phone-mockup {
  position: relative;
  width: 240px;
  max-width: 80%;
}

.phone-screen {
  background: #0F172A;
  border-radius: 36px;
  padding: 12px;
  border: 4px solid #1E293B;
  box-shadow: 0 30px 60px rgba(11, 42, 91, 0.25);
  position: relative;
  overflow: hidden;
}

.phone-notch {
  width: 80px;
  height: 18px;
  background: #0F172A;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-inner {
  background: #FFFFFF;
  border-radius: 26px;
  height: 420px;
  overflow: hidden;
  position: relative;
}

/* Mockup Interface UI Content */
.mockup-header {
  height: 50px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: white;
}

.mockup-nav-brand {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1px;
}

.mockup-body {
  padding: 16px;
  background: #F8FAFC;
  height: calc(100% - 50px);
  overflow-y: auto;
}

.mockup-banner {
  background: linear-gradient(135deg, var(--navy), #164283);
  border-radius: 12px;
  padding: 20px;
  color: white;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.mockup-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mockup-product-card {
  background: white;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}

.mockup-product-img {
  height: 50px;
  background: #F1F5F9;
  border-radius: 6px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Platform Badges */
.platform-badges-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.platform-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(11, 42, 91, 0.08);
  font-weight: 700;
  color: var(--navy);
  transition: all 0.3s ease;
}

.platform-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(11, 42, 91, 0.15);
  border-color: var(--saffron);
}

.platform-pill i {
  font-size: 1.4rem;
  color: var(--saffron);
}

.platform-status {
  font-size: 0.75rem;
  padding: 3px 10px;
  background: rgba(19, 138, 54, 0.12);
  color: var(--green);
  border-radius: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

/* ================= SECTION 5: NOTIFY ME FORM ================= */
.notify-section {
  text-align: center;
}

.notify-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow: 0 25px 60px rgba(11, 42, 91, 0.12);
}

.notify-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--green));
}

.notify-form {
  margin-top: 30px;
}

.form-group-custom {
  display: flex;
  gap: 12px;
  background: #FFFFFF;
  padding: 8px 8px 8px 20px;
  border-radius: 60px;
  border: 2px solid rgba(11, 42, 91, 0.1);
  box-shadow: 0 10px 25px rgba(11, 42, 91, 0.05);
  transition: all 0.3s ease;
}

.form-group-custom:focus-within {
  border-color: var(--saffron);
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.18);
}

.email-input-custom {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.05rem;
  color: var(--navy);
  font-family: inherit;
  font-weight: 500;
}

.email-input-custom::placeholder {
  color: #94A3B8;
}

.btn-notify-submit {
  padding: 16px 36px;
  border: none;
  outline: none;
  background: linear-gradient(135deg, var(--saffron), #E65C00);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.btn-notify-submit:hover {
  background: linear-gradient(135deg, #FF9933, var(--saffron));
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 28px rgba(255, 122, 0, 0.45);
}

.form-feedback {
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 24px;
}

.form-feedback.success {
  color: var(--green);
}

.form-feedback.error {
  color: #DC2626;
}

/* ================= SECTION 6: SOCIAL MEDIA ================= */
.social-section {
  text-align: center;
  padding-bottom: 70px;
}

.social-links-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.social-circle-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 20px rgba(11, 42, 91, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.social-circle-btn:hover {
  transform: translateY(-8px) scale(1.1);
  color: var(--white);
}

.social-circle-btn.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  box-shadow: 0 15px 30px rgba(214, 36, 159, 0.35);
}

.social-circle-btn.facebook:hover {
  background: #1877F2;
  box-shadow: 0 15px 30px rgba(24, 119, 242, 0.35);
}

.social-circle-btn.linkedin:hover {
  background: #0A66C2;
  box-shadow: 0 15px 30px rgba(10, 102, 194, 0.35);
}

.social-circle-btn.youtube:hover {
  background: #FF0000;
  box-shadow: 0 15px 30px rgba(255, 0, 0, 0.35);
}

.social-circle-btn.twitter:hover {
  background: #000000;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

/* ================= FOOTER ================= */
.footer-custom {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(11, 42, 91, 0.08);
  padding: 40px 0;
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-india-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(11, 42, 91, 0.04);
  padding: 6px 18px;
  border-radius: 30px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-top: 16px;
}

/* Success Modal Styling */
.modal-content-glass {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow: 0 30px 70px rgba(11, 42, 91, 0.25);
}

/* ================= Responsive Media Queries ================= */
@media (max-width: 992px) {
  .hero-heading {
    font-size: 2.75rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .countdown-card {
    width: 110px;
    height: 115px;
  }
  .countdown-number {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  .hero-heading {
    font-size: 2.1rem;
  }
  .hero-subheading {
    font-size: 1.1rem;
  }
  .countdown-container {
    gap: 10px;
  }
  .countdown-card {
    width: 75px;
    height: 85px;
  }
  .countdown-number {
    font-size: 1.7rem;
  }
  .countdown-label {
    font-size: 0.68rem;
    letter-spacing: 0.8px;
  }
  .notify-card {
    padding: 35px 20px;
  }
  .form-group-custom {
    flex-direction: column;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
  }
  .email-input-custom {
    background: white;
    padding: 16px 20px;
    border-radius: 50px;
    border: 2px solid rgba(11, 42, 91, 0.1);
  }
  .btn-notify-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
  }
}
