/* ==========================================================================
   GUJMART - Premium SaaS Landing Page Design System
   Brand Colors: Primary Blue (#2D9CDB), Primary Red (#D72631)
   Font Family: Poppins (Google Fonts)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Brand Primary Colors */
  --primary-blue: #2D9CDB;
  --primary-blue-hover: #2185BD;
  --primary-blue-light: #EBF7FF;
  --primary-blue-glow: rgba(45, 156, 219, 0.35);

  --primary-red: #D72631;
  --primary-red-hover: #B81D26;
  --primary-red-light: #FFF0F1;
  --primary-red-glow: rgba(215, 38, 49, 0.35);

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #2D9CDB 0%, #D72631 100%);
  --grad-brand-alt: linear-gradient(135deg, #D72631 0%, #2D9CDB 100%);
  --grad-blue: linear-gradient(135deg, #2D9CDB 0%, #1565C0 100%);
  --grad-red: linear-gradient(135deg, #FF4D4D 0%, #D72631 100%);
  --grad-dark: linear-gradient(135deg, #0B1120 0%, #1E293B 100%);
  --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);

  /* Background Colors */
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-slate: #F1F5F9;
  --bg-dark: #0B1120;
  --bg-dark-card: #1E293B;

  /* Text Colors */
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  /* Borders & Glass */
  --border-light: rgba(226, 232, 240, 0.8);
  --border-glass: rgba(255, 255, 255, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-dark: rgba(15, 23, 42, 0.75);

  /* Elevation Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 25px -5px rgba(45, 156, 219, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12), 0 0 20px rgba(45, 156, 219, 0.15);
  --shadow-xl: 0 25px 60px -15px rgba(15, 23, 42, 0.25);
  --shadow-red-glow: 0 10px 30px rgba(215, 38, 49, 0.3);
  --shadow-blue-glow: 0 10px 30px rgba(45, 156, 219, 0.3);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

html {
  background-color: #070B14;
}

html, body {
  scroll-behavior: smooth;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-white);
  color: var(--text-main);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
  word-break: break-word;
  overflow-wrap: break-word;
}

p, span, a, div {
  overflow-wrap: break-word;
  word-break: break-word;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.section {
  padding: 100px 0;
  position: relative;
}

.section-light {
  background-color: var(--bg-white);
}

.section-gray {
  background-color: var(--bg-light);
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.section-dark p {
  color: var(--text-light);
}

/* Section Titles */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.tag-blue {
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
  border: 1px solid rgba(45, 156, 219, 0.2);
}

.tag-red {
  background-color: var(--primary-red-light);
  color: var(--primary-red);
  border: 1px solid rgba(215, 38, 49, 0.2);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.section-title span.blue-text {
  color: var(--primary-blue);
}

.section-title span.red-text {
  color: var(--primary-red);
}

.section-title span.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  outline: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-red);
  color: var(--text-white);
  box-shadow: var(--shadow-red-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(215, 38, 49, 0.45);
}

.btn-blue {
  background: var(--grad-blue);
  color: var(--text-white);
  box-shadow: var(--shadow-blue-glow);
}

.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(45, 156, 219, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text-main);
}

.btn-outline:hover {
  background: var(--bg-white);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-white);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.glass-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(45, 156, 219, 0.4);
}

/* Ambient Floating Shapes & Glows */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}

.glow-blue {
  background: rgba(45, 156, 219, 0.25);
}

.glow-red {
  background: rgba(215, 38, 49, 0.2);
}

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

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.08); }
}

.floating-elem {
  animation: floatAnim 6s ease-in-out infinite;
}

.floating-elem-delayed {
  animation: floatAnim 8s ease-in-out infinite 2s;
}
