/* ==========================================================================
   ORG ELEVATE — PREMIUM UI/UX DESIGN SYSTEM & LUXURY TYPOGRAPHY
   Domain: orgelevate.com | Email: contact@orgelevate.com | Mobile: +91 6309361947
   Fonts: Space Grotesk (Display Headings) + Inter (Body Text)
   Palette: Deep Obsidian Onyx (#030712), Platinum Gold (#fbbf24), Electric Sapphire (#38bdf8), Mint Emerald (#34d399)
   Constraints: Zero Pink Allowed | 100% Form-Free Connectivity | 100% Responsive
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Obsidian Onyx Surface Spectrum */
  --bg-main: #030712;
  --bg-surface: #0b1120;
  --bg-card: rgba(15, 23, 42, 0.85);
  --bg-card-hover: rgba(30, 41, 59, 0.95);
  --bg-glass: rgba(255, 255, 255, 0.04);

  /* Primary Accent: Radiant Platinum Gold */
  --primary-gold: #fbbf24;
  --primary-gold-bright: #fef08a;
  --primary-gold-dark: #d97706;
  --primary-gold-glow: rgba(251, 191, 36, 0.38);

  /* Secondary Accent: Electric Sapphire Cyan */
  --accent-cyan: #38bdf8;
  --accent-cyan-bright: #e0f2fe;
  --accent-cyan-glow: rgba(56, 189, 248, 0.38);

  /* Tertiary Accent: Luminous Mint Emerald */
  --accent-emerald: #34d399;
  --accent-emerald-bright: #d1fae5;
  --accent-emerald-glow: rgba(52, 211, 153, 0.38);

  /* Quaternary Accent: Luxury Amethyst Purple */
  --accent-purple: #c084fc;
  --accent-purple-bright: #f3e8ff;

  /* Maximum Contrast Text System */
  --text-bright: #ffffff;
  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;

  /* High-Visibility Glass Borders */
  --border-subtle: rgba(255, 255, 255, 0.12);
  --border-medium: rgba(255, 255, 255, 0.24);
  --border-gold: rgba(251, 191, 36, 0.55);
  --border-cyan: rgba(56, 189, 248, 0.55);
  --border-emerald: rgba(52, 211, 153, 0.55);

  /* Radius & Shadows */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.75);
  --shadow-glow-gold: 0 0 50px rgba(251, 191, 36, 0.25);
  --shadow-glow-cyan: 0 0 50px rgba(56, 189, 248, 0.25);

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Strict Bounds */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Vivid Ambient Mesh Background */
.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: 
    radial-gradient(circle at 12% 15%, rgba(251, 191, 36, 0.14) 0%, transparent 42%),
    radial-gradient(circle at 88% 22%, rgba(56, 189, 248, 0.14) 0%, transparent 44%),
    radial-gradient(circle at 50% 85%, rgba(52, 211, 153, 0.12) 0%, transparent 48%),
    linear-gradient(180deg, #030712 0%, #0b1120 100%);
}

/* Visually Appealing Executive Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-bright);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2.5rem, 5.8vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.8vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  color: var(--text-muted);
  font-size: 1.08rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

strong {
  color: var(--text-bright);
  font-weight: 700;
}

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

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

/* Vibrant Gradient Text Fills */
.text-gradient-gold {
  background: linear-gradient(135deg, #ffffff 0%, #fef08a 40%, #fbbf24 80%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 25px rgba(251, 191, 36, 0.35));
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 40%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 25px rgba(56, 189, 248, 0.35));
}

.text-gradient-emerald {
  background: linear-gradient(135deg, #ffffff 0%, #d1fae5 40%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 25px rgba(52, 211, 153, 0.35));
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Header Navigation UX */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(3, 7, 18, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-bright);
  letter-spacing: -0.5px;
}

.logo-badge {
  width: 46px;
  height: 46px;
  background: #0b1120;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px var(--primary-gold-glow);
  padding: 5px;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.brand-logo:hover .logo-badge {
  transform: rotate(6deg) scale(1.06);
  box-shadow: 0 0 32px rgba(251, 191, 36, 0.6);
}

.brand-logo span.accent {
  color: var(--primary-gold);
}

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

.nav-links a {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-bright);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-cyan));
  border-radius: 3px;
}

/* Mobile Nav Toggle Button */
.nav-toggle {
  display: none;
  background: rgba(15, 23, 42, 0.95);
  border: 1.5px solid var(--border-gold);
  color: var(--primary-gold);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.25);
  flex-shrink: 0;
}

.nav-toggle:hover,
.nav-toggle:focus {
  background: rgba(251, 191, 36, 0.2);
  color: var(--text-bright);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Visually Appealing Interactive Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.btn-gold {
  background: linear-gradient(135deg, #fef08a 0%, var(--primary-gold) 60%, #d97706 100%);
  color: #030712;
  box-shadow: 0 4px 28px var(--primary-gold-glow);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 38px rgba(251, 191, 36, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, #fef08a 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-medium);
  color: var(--text-bright);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary-gold);
  color: var(--primary-gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 0 26px rgba(251, 191, 36, 0.25);
}

.btn-emerald {
  background: linear-gradient(135deg, #d1fae5 0%, var(--accent-emerald) 60%, #059669 100%);
  color: #030712;
  box-shadow: 0 4px 28px var(--accent-emerald-glow);
}

.btn-emerald:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 38px rgba(52, 211, 153, 0.6);
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.94rem;
  border-radius: var(--radius-sm);
}

/* Glassmorphism Cards UI/UX */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

/* Hero Section UI */
.hero-section {
  padding: 170px 0 90px;
  position: relative;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(251, 191, 36, 0.14);
  border: 1.5px solid var(--border-gold);
  color: var(--primary-gold-bright);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 26px rgba(251, 191, 36, 0.22);
  max-width: 100%;
  text-align: center;
}

.hero-subtitle {
  max-width: 860px;
  margin: 24px auto 40px;
  font-size: 1.28rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Stats Banner Grid UI */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 64px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(11, 17, 32, 0.85);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.stat-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary-gold-bright);
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 0 24px rgba(251, 191, 36, 0.35);
}

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

/* Section Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(251, 191, 36, 0.14);
  border: 1px solid var(--border-gold);
  color: var(--primary-gold-bright);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

/* Section Layout */
.section {
  padding: 85px 0;
  position: relative;
}

.section:last-of-type {
  padding-bottom: 45px;
}

/* Responsive Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* Icon Box */
.icon-box {
  width: 64px;
  height: 64px;
  background: rgba(251, 191, 36, 0.16);
  border: 1.5px solid rgba(251, 191, 36, 0.5);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-gold-bright);
  box-shadow: 0 0 26px rgba(251, 191, 36, 0.25);
  flex-shrink: 0;
}

.icon-box svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Feature List UI */
.feature-list {
  list-style: none;
  margin-top: 24px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--text-main);
  font-size: 1.05rem;
}

.feature-list svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 10px rgba(52, 211, 153, 0.5));
}

/* Form-Free Contact Hub UI */
.contact-hub-card {
  background: linear-gradient(135deg, rgba(11, 17, 32, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 60px 44px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-glow-gold);
}

.contact-direct-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.direct-method-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 34px 20px;
  text-align: center;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.direct-method-card:hover {
  background: rgba(251, 191, 36, 0.14);
  border-color: var(--primary-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.direct-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.2);
  border: 1.5px solid var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold-bright);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.direct-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.direct-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-bright);
  margin: 12px 0 20px;
  word-break: break-all;
}

/* Single-Point Labeled SVG Graphic Canvas Container UI */
.svg-graphic-box {
  width: 100%;
  min-height: 200px;
  background: radial-gradient(circle at center, rgba(30, 41, 59, 0.95) 0%, rgba(3, 7, 18, 0.98) 100%);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  padding: 18px;
  transition: var(--transition-normal);
}

.svg-graphic-box:hover {
  border-color: var(--border-gold);
  box-shadow: 0 0 32px rgba(251, 191, 36, 0.3);
  transform: scale(1.02);
}

.svg-graphic-box text {
  font-family: var(--font-display);
  letter-spacing: 0.5px;
}

/* Tabs Navigation Bar UX */
.tabs-header {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 36px 0;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.tab-btn:hover,
.tab-btn.active {
  background: rgba(251, 191, 36, 0.18);
  border-color: var(--primary-gold);
  color: var(--primary-gold-bright);
  box-shadow: 0 0 26px rgba(251, 191, 36, 0.35);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Secure Toast Notification UX */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0b1120;
  border: 1.5px solid var(--accent-emerald);
  color: var(--text-bright);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

/* Footer UI (Tight, Gap-Free Executive Layout) */
.footer {
  background: #02040a;
  border-top: 1.5px solid var(--border-subtle);
  padding: 36px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-brand p {
  margin-top: 0;
  max-width: 480px;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col h5 {
  color: var(--text-bright);
  font-size: 1.05rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--primary-gold-bright);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-dim);
  text-align: center;
}

/* ==========================================================================
   100% FLUID RESPONSIVE BREAKPOINTS ACROSS ALL MOBILE AND TABLET DEVICES
   ========================================================================== */

@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 68px 0; }
  
  .hero-section {
    padding: 115px 0 58px;
  }

  .hero-pill {
    font-size: 0.85rem;
    padding: 7px 18px;
  }

  .hero-subtitle {
    font-size: 1.15rem;
    margin: 16px auto 28px;
  }

  .tabs-header {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    margin: 20px -20px 28px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
  }
  .tabs-header::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    flex-shrink: 0;
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .glass-card {
    padding: 24px 16px;
  }

  .card-actions {
    flex-direction: column;
    width: 100%;
  }

  .card-actions .btn {
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 68px);
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 28px 20px;
    gap: 18px;
    border-bottom: 1.5px solid var(--border-gold);
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.35s ease;
    z-index: 999;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.2rem;
    font-weight: 700;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .contact-hub-card {
    padding: 34px 18px;
  }

  .svg-graphic-box {
    min-height: 180px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    font-size: 1.4rem;
  }

  .logo-badge {
    width: 40px;
    height: 40px;
  }

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

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

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

  .direct-value {
    font-size: 1.1rem;
  }
}
