/* ================================================
   TIMEFOLIO WEB - DESIGN SYSTEM
   Jungle Theme Implementation
   ================================================ */

/* ================================================
   CSS VARIABLES - DESIGN TOKENS
   ================================================ */
:root {
  /* Jungle Theme Colors */
  --color-primary: #081C15;
  --color-secondary: #1B4332;
  --color-tertiary: #2D6A4F;
  --color-accent: #40916C;

  /* Functional Colors */
  --color-success: #34C759;
  --color-warning: #FF9500;
  --color-error: #FF3B30;
  --color-purple: #AF52DE;
  --color-blue: #007AFF;
  --color-gold: #FFD700;

  /* Text Colors */
  --color-text-primary: #FFFFFF;
  --color-text-secondary: rgba(255, 255, 255, 0.7);
  --color-text-tertiary: rgba(255, 255, 255, 0.5);

  /* Background Colors */
  --color-bg-gradient-start: var(--color-primary);
  --color-bg-gradient-mid: var(--color-secondary);
  --color-bg-gradient-end: var(--color-tertiary);

  /* Glass Effects */
  --glass-light: rgba(255, 255, 255, 0.1);
  --glass-medium: rgba(255, 255, 255, 0.15);
  --glass-heavy: rgba(255, 255, 255, 0.2);

  /* Spacing System */
  --spacing-xs: 4px;
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;

  /* Corner Radius */
  --radius-s: 8px;
  --radius-m: 12px;
  --radius-l: 16px;
  --radius-xl: 20px;

  /* Shadows */
  --shadow-light: 0 2px 5px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 4px 10px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 8px 20px rgba(0, 0, 0, 0.15);

  /* Typography */
  --font-base: -apple-system, BlinkMacSystemFont, 'SF Pro Rounded', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-rounded: 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --font-size-caption: 12px;
  --font-size-footnote: 13px;
  --font-size-subheadline: 15px;
  --font-size-callout: 16px;
  --font-size-body: 17px;
  --font-size-headline: 17px;
  --font-size-title3: 20px;
  --font-size-title2: 22px;
  --font-size-title: 28px;
  --font-size-large-title: 34px;
  --font-size-timer: 48px;
}

/* ================================================
   RESET & BASE STYLES
   ================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-size: var(--font-size-body);
  color: var(--color-text-primary);
  background: linear-gradient(135deg, var(--color-bg-gradient-start) 0%, var(--color-bg-gradient-mid) 50%, var(--color-bg-gradient-end) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */
.large-title {
  font-size: var(--font-size-large-title);
  font-weight: 700;
  font-family: var(--font-rounded);
  line-height: 1.2;
}

.title {
  font-size: var(--font-size-title);
  font-weight: 700;
  font-family: var(--font-rounded);
  line-height: 1.3;
}

.title2 {
  font-size: var(--font-size-title2);
  font-weight: 600;
  font-family: var(--font-rounded);
  line-height: 1.3;
}

.title3 {
  font-size: var(--font-size-title3);
  font-weight: 600;
  font-family: var(--font-rounded);
  line-height: 1.3;
}

.headline {
  font-size: var(--font-size-headline);
  font-weight: 600;
  font-family: var(--font-rounded);
}

.body {
  font-size: var(--font-size-body);
  font-weight: 400;
}

.callout {
  font-size: var(--font-size-callout);
  font-weight: 400;
}

.subheadline {
  font-size: var(--font-size-subheadline);
  font-weight: 400;
}

.footnote {
  font-size: var(--font-size-footnote);
  font-weight: 400;
  color: var(--color-text-secondary);
}

.caption {
  font-size: var(--font-size-caption);
  font-weight: 400;
  color: var(--color-text-tertiary);
}

/* ================================================
   LAYOUT UTILITIES
   ================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-m);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-large {
  padding: 60px 0;
}

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
  background: rgb(8, 28, 21);
  padding: var(--spacing-m);
  position: sticky;
  top: 0;
  z-index: 1001;
  border-bottom: 1px solid rgba(64, 145, 108, 0.3);
}

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

.navbar-brand {
  font-size: var(--font-size-title2);
  font-weight: 700;
  font-family: var(--font-rounded);
  color: var(--color-text-primary);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.navbar-nav {
  display: flex;
  gap: var(--spacing-l);
  list-style: none;
}

.nav-link {
  color: var(--color-text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: var(--spacing-s) var(--spacing-m);
  border-radius: var(--radius-s);
  border: 2px solid transparent;
}

.nav-link:hover {
  color: var(--color-accent);
  border: 2px solid rgba(64, 145, 108, 0.8);
}

.nav-link.active {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid rgba(64, 145, 108, 0.8);
}

/* Mobile Menu Header (hidden on desktop) */
.mobile-menu-header {
  display: none;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: var(--spacing-s);
  margin-left: var(--spacing-l);
}

.lang-btn {
  padding: var(--spacing-s) var(--spacing-m);
  background: transparent;
  border: 2px solid rgba(64, 145, 108, 0.5);
  border-radius: var(--radius-s);
  color: var(--color-text-secondary);
  font-size: var(--font-size-footnote);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.lang-btn:hover {
  border-color: rgba(64, 145, 108, 0.8);
  color: var(--color-text-primary);
  background: rgba(64, 145, 108, 0.1);
}

.lang-btn.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 2px solid rgba(64, 145, 108, 0.5);
  border-radius: var(--radius-s);
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
  transition: all 0.3s ease;
  width: 44px;
  height: 44px;
  position: relative;
}

.hamburger:hover {
  border-color: var(--color-accent);
  background: rgba(64, 145, 108, 0.1);
}

.hamburger span {
  width: 22px;
  height: 3px;
  background: var(--color-text-primary);
  transition: all 0.3s ease;
  border-radius: 3px;
  display: block;
}

.hamburger.active {
  border-color: var(--color-accent);
  background: rgba(64, 145, 108, 0.15);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: var(--color-accent);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: var(--color-accent);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar .container {
    position: relative;
  }

  .nav-menu {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: 90vh;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-top-left-radius: var(--radius-xl);
    border-top-right-radius: var(--radius-xl);
    padding: var(--spacing-l);
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    bottom: 0;
  }

  .mobile-menu-header {
    display: none;
  }

  .mobile-menu-logo {
    display: none;
  }

  .navbar-nav {
    flex-direction: column;
    gap: var(--spacing-m);
    margin-top: 0;
    flex: 0;
    width: 100%;
  }

  .navbar-nav li {
    width: 100%;
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    width: 100%;
    min-height: 60px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    border-radius: var(--radius-l);
    border: 2px solid rgba(64, 145, 108, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
  }

  .nav-link:hover {
    background: rgba(64, 145, 108, 0.2);
    border-color: var(--color-accent);
    transform: scale(1.02);
  }

  .nav-link.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
  }

  .lang-switcher {
    margin-left: 0;
    margin-top: var(--spacing-m);
    padding-top: var(--spacing-m);
    border-top: 2px solid rgba(64, 145, 108, 0.4);
    gap: var(--spacing-m);
  }

  .lang-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    min-height: 60px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    border-width: 2px;
    border-radius: var(--radius-l);
    box-sizing: border-box;
  }

  .lang-btn.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
  }

  /* Overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 998;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Adjust main container for mobile */
  .container {
    padding: 0 var(--spacing-m);
  }

  /* Better hero text on mobile */
  .hero-title {
    font-size: 32px !important;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: var(--font-size-body);
  }
}

/* ================================================
   CARDS
   ================================================ */

/* QCard - Border Style */
.qcard {
  background: transparent;
  border: 2px solid rgba(64, 145, 108, 0.8);
  border-radius: var(--radius-m);
  padding: var(--spacing-m);
  transition: all 0.3s ease;
}

.qcard:hover {
  border-color: var(--color-accent);
  background: rgba(64, 145, 108, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Glass Card */
.glass-card {
  background: var(--glass-medium);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-m);
  padding: var(--spacing-l);
  box-shadow: var(--shadow-light);
}

/* Solid Card */
.card {
  background: var(--glass-heavy);
  border-radius: var(--radius-m);
  padding: var(--spacing-l);
  box-shadow: var(--shadow-medium);
}

/* Action Card */
.action-card {
  display: flex;
  align-items: center;
  gap: var(--spacing-m);
  padding: var(--spacing-m) var(--spacing-l);
  background: transparent;
  border: 2px solid rgba(64, 145, 108, 0.8);
  border-radius: var(--radius-m);
  min-height: 72px;
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}

.action-card:hover {
  border-color: var(--color-accent);
  background: rgba(64, 145, 108, 0.1);
  transform: translateY(-2px);
}

.action-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-accent);
}

.action-card-content {
  flex: 1;
}

.action-card-title {
  font-weight: 600;
  font-size: var(--font-size-callout);
  margin-bottom: var(--spacing-xs);
}

.action-card-subtitle {
  font-size: var(--font-size-footnote);
  color: var(--color-text-secondary);
}

.action-card-chevron {
  font-size: 20px;
  color: var(--color-text-tertiary);
}

/* Stat Card */
.stat-card {
  padding: var(--spacing-l);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-heavy);
}

.stat-card-icon {
  font-size: 32px;
  margin-bottom: var(--spacing-s);
}

.stat-card-value {
  font-size: var(--font-size-title);
  font-weight: 700;
  font-family: var(--font-rounded);
  margin-bottom: var(--spacing-xs);
}

.stat-card-label {
  font-size: var(--font-size-footnote);
  color: var(--color-text-secondary);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-block;
  padding: var(--spacing-m) var(--spacing-l);
  border-radius: var(--radius-m);
  font-weight: 600;
  font-size: var(--font-size-callout);
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-rounded);
}

.btn-primary {
  background: var(--color-text-primary);
  color: var(--color-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: var(--glass-heavy);
  color: var(--color-text-primary);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: var(--glass-medium);
  border-color: var(--color-accent);
}

.btn-success {
  background: linear-gradient(135deg, rgba(52, 199, 89, 0.3) 0%, var(--glass-heavy) 100%);
  color: var(--color-text-primary);
  border: 2px solid rgba(52, 199, 89, 0.4);
}

.btn-success:hover {
  border-color: var(--color-success);
  transform: translateY(-2px);
}

.btn-large {
  padding: var(--spacing-l) var(--spacing-xl);
  font-size: var(--font-size-headline);
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-s);
}

/* ================================================
   TAG CHIPS
   ================================================ */
.tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-s);
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px var(--spacing-s);
  border-radius: var(--radius-s);
  font-size: var(--font-size-footnote);
  font-weight: 500;
  border: 1px solid;
  transition: all 0.3s ease;
}

.tag-chip:hover {
  transform: scale(1.05);
}

.tag-chip.tag-green {
  background: rgba(52, 199, 89, 0.2);
  border-color: rgba(52, 199, 89, 0.3);
  color: var(--color-success);
}

.tag-chip.tag-blue {
  background: rgba(0, 122, 255, 0.2);
  border-color: rgba(0, 122, 255, 0.3);
  color: var(--color-blue);
}

.tag-chip.tag-orange {
  background: rgba(255, 149, 0, 0.2);
  border-color: rgba(255, 149, 0, 0.3);
  color: var(--color-warning);
}

.tag-chip.tag-purple {
  background: rgba(175, 82, 222, 0.2);
  border-color: rgba(175, 82, 222, 0.3);
  color: var(--color-purple);
}

/* ================================================
   PROGRESS BAR
   ================================================ */
.progress-bar {
  width: 100%;
  height: 12px;
  background: var(--glass-heavy);
  border-radius: var(--radius-s);
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-success) 0%, var(--color-accent) 100%);
  border-radius: var(--radius-s);
  transition: width 0.3s ease;
}

/* ================================================
   GRID SYSTEM
   ================================================ */
.grid {
  display: grid;
  gap: var(--spacing-l);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  padding: 80px 0;
  text-align: center;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-rounded);
  margin-bottom: var(--spacing-l);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: var(--font-size-title2);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-m);
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================
   FORMS
   ================================================ */
.form-group {
  margin-bottom: var(--spacing-l);
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing-s);
  font-size: var(--font-size-subheadline);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--spacing-m);
  background: var(--glass-medium);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-m);
  color: var(--color-text-primary);
  font-size: var(--font-size-callout);
  font-family: var(--font-base);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--glass-heavy);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-tertiary);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ================================================
   EMPTY STATE
   ================================================ */
.empty-state {
  text-align: center;
  padding: var(--spacing-xl);
}

.empty-state-icon {
  font-size: 64px;
  opacity: 0.4;
  margin-bottom: var(--spacing-l);
}

.empty-state-title {
  font-size: var(--font-size-title2);
  font-weight: 600;
  margin-bottom: var(--spacing-m);
}

.empty-state-description {
  font-size: var(--font-size-callout);
  color: var(--color-text-secondary);
  max-width: 400px;
  margin: 0 auto;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: rgb(8, 28, 21);
  padding: var(--spacing-xl);
  margin-top: 80px;
  border-top: 1px solid rgba(64, 145, 108, 0.3);
}

.footer-content {
  text-align: center;
}

.footer-text {
  color: var(--color-text-secondary);
  font-size: var(--font-size-footnote);
}

/* ================================================
   UTILITIES
   ================================================ */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-s { margin-bottom: var(--spacing-s); }
.mb-m { margin-bottom: var(--spacing-m); }
.mb-l { margin-bottom: var(--spacing-l); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-s { margin-top: var(--spacing-s); }
.mt-m { margin-top: var(--spacing-m); }
.mt-l { margin-top: var(--spacing-l); }
.mt-xl { margin-top: var(--spacing-xl); }

.p-s { padding: var(--spacing-s); }
.p-m { padding: var(--spacing-m); }
.p-l { padding: var(--spacing-l); }
.p-xl { padding: var(--spacing-xl); }

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-s { gap: var(--spacing-s); }
.gap-m { gap: var(--spacing-m); }
.gap-l { gap: var(--spacing-l); }

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 768px) {
  .navbar-nav {
    gap: var(--spacing-m);
  }

  .nav-link {
    padding: var(--spacing-s);
    font-size: var(--font-size-subheadline);
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: var(--font-size-headline);
  }

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

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* ================================================
   FONT AWESOME ICON STYLES
   ================================================ */

/* Icon Display */
.fas,
.far,
.fab {
  display: inline-block;
  vertical-align: middle;
}

/* Base Icon Styling with Gradient and Shadow */
i.fas,
i.far,
i.fab {
  background: linear-gradient(135deg, currentColor, currentColor);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: all var(--transition-fast);
}

/* Stat Card Icons */
.stat-card-icon i {
  font-size: 48px;
  text-shadow: 0 4px 12px rgba(64, 145, 108, 0.4);
}

/* Action Card Icons */
.action-card-icon i {
  font-size: 32px;
}

/* Icon Animation on Hover */
.qcard:hover i,
.action-card:hover i {
  transform: scale(1.1) translateY(-2px);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  transition: all var(--transition-fast);
}

/* ================================================
   ICON COLOR VARIATIONS
   ================================================ */

/* Time & Clock Icons - Blue */
.fa-clock,
.fa-stopwatch {
  color: var(--color-blue);
}

/* Money & Earnings Icons - Gold */
.fa-dollar-sign,
.fa-coins,
.fa-chart-line {
  color: var(--color-gold);
}

/* Speed & Performance Icons - Orange */
.fa-bolt,
.fa-rocket {
  color: var(--color-warning);
}

/* Files & Documents Icons - Purple */
.fa-folder,
.fa-file-invoice,
.fa-file-invoice-dollar,
.fa-clipboard-list {
  color: var(--color-purple);
}

/* Goals & Success Icons - Green */
.fa-bullseye,
.fa-chart-bar {
  color: var(--color-success);
}

/* Security & Privacy Icons - Accent Green */
.fa-lock,
.fa-shield-alt,
.fa-user-shield,
.fa-fingerprint {
  color: var(--color-accent);
}

/* Calendar & Organization Icons - Blue */
.fa-calendar-alt,
.fa-tags {
  color: var(--color-blue);
}

/* User & People Icons - Accent Green */
.fa-users,
.fa-laptop-code {
  color: var(--color-accent);
}

/* Briefcase Icon - Brown */
.fa-briefcase {
  color: #8B4513;
}

/* Day/Night Icons - Special Colors */
.fa-sun {
  color: var(--color-warning);
}

.fa-moon {
  color: var(--color-purple);
}

.fa-play {
  color: var(--color-success);
}

/* Creative Icons - Purple/Pink */
.fa-palette,
.fa-paint-brush,
.fa-magic {
  color: var(--color-purple);
}

/* Quality & Premium Icons - Gold */
.fa-gem,
.fa-database {
  color: var(--color-gold);
}

/* Love & Care Icons - Error Red (used as pink) */
.fa-heart,
.fa-fire {
  color: var(--color-error);
}

/* ================================================
   ABOUT PAGE - GRADIENT ICONS
   ================================================ */

/* Why Choose Section Gradients */
#about-why .fa-palette {
  background: linear-gradient(135deg, #AF52DE, #FF2D92);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(175, 82, 222, 0.4));
}

#about-why .fa-shield-alt {
  background: linear-gradient(135deg, #40916C, #52B788);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(64, 145, 108, 0.4));
}

#about-why .fa-rocket {
  background: linear-gradient(135deg, #FF9500, #FF3B30);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(255, 149, 0, 0.4));
}

/* Built For Section Gradients */
#about-builtfor .fa-laptop-code {
  background: linear-gradient(135deg, #40916C, #52B788);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 10px rgba(64, 145, 108, 0.5));
}

#about-builtfor .fa-paint-brush {
  background: linear-gradient(135deg, #AF52DE, #FF2D92);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 10px rgba(175, 82, 222, 0.5));
}

#about-builtfor .fa-briefcase {
  background: linear-gradient(135deg, #8B4513, #D2691E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 10px rgba(139, 69, 19, 0.5));
}

/* Values Section Gradients */
#about-values .fa-user-shield {
  background: linear-gradient(135deg, #40916C, #52B788);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(64, 145, 108, 0.4));
}

#about-values .fa-gem {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.5));
}

#about-values .fa-magic {
  background: linear-gradient(135deg, #007AFF, #5856D6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(0, 122, 255, 0.4));
}

#about-values .fa-heart {
  background: linear-gradient(135deg, #FF3B30, #FF2D92);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(255, 59, 48, 0.4));
}

/* Hover Effects for About Page Gradients */
#about-why .qcard:hover i,
#about-builtfor .qcard:hover i,
#about-values .qcard:hover i {
  transform: scale(1.15) rotate(5deg) translateY(-4px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5)) brightness(1.1);
}

/* ================================================
   HOME PAGE - GRADIENT ICONS
   ================================================ */

/* Stats Section Gradients */
#home-stats .fa-clock {
  background: linear-gradient(135deg, #007AFF, #5AC8FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(0, 122, 255, 0.5));
}

#home-stats .fa-dollar-sign {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.6));
}

#home-stats .fa-bolt {
  background: linear-gradient(135deg, #FF9500, #FFD60A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(255, 149, 0, 0.5));
}

/* Home Features Section Gradients */
#home-features .fa-stopwatch {
  background: linear-gradient(135deg, #007AFF, #5AC8FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 3px 6px rgba(0, 122, 255, 0.4));
}

#home-features .fa-folder {
  background: linear-gradient(135deg, #AF52DE, #BF5AF2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 3px 6px rgba(175, 82, 222, 0.4));
}

#home-features .fa-bullseye {
  background: linear-gradient(135deg, #34C759, #30D158);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 3px 6px rgba(52, 199, 89, 0.4));
}

#home-features .fa-file-invoice {
  background: linear-gradient(135deg, #AF52DE, #BF5AF2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 3px 6px rgba(175, 82, 222, 0.4));
}

#home-features .fa-lock {
  background: linear-gradient(135deg, #40916C, #52B788);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 3px 6px rgba(64, 145, 108, 0.4));
}

#home-features .fa-calendar-alt {
  background: linear-gradient(135deg, #007AFF, #5AC8FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 3px 6px rgba(0, 122, 255, 0.4));
}

#home-features .fa-sun {
  background: linear-gradient(135deg, #FF9500, #FFCC00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 3px 6px rgba(255, 149, 0, 0.5));
}

#home-features .fa-chart-line {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 3px 6px rgba(255, 215, 0, 0.5));
}

/* Home Workflow Section Gradients */
#home-workflow .action-card-icon .fa-sun {
  background: linear-gradient(135deg, #FF9500, #FFCC00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 3px 6px rgba(255, 149, 0, 0.5));
}

#home-workflow .action-card-icon .fa-play {
  background: linear-gradient(135deg, #34C759, #30D158);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 3px 6px rgba(52, 199, 89, 0.5));
}

#home-workflow .action-card-icon .fa-moon {
  background: linear-gradient(135deg, #AF52DE, #BF5AF2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 3px 6px rgba(175, 82, 222, 0.5));
}

/* ================================================
   FEATURES PAGE - GRADIENT ICONS
   ================================================ */

/* Core Features Section Gradients */
#features-core .fa-clock {
  background: linear-gradient(135deg, #007AFF, #5AC8FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(0, 122, 255, 0.5));
}

#features-core .fa-folder {
  background: linear-gradient(135deg, #AF52DE, #BF5AF2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(175, 82, 222, 0.4));
}

#features-core .fa-users {
  background: linear-gradient(135deg, #40916C, #52B788);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(64, 145, 108, 0.4));
}

#features-core .fa-tags {
  background: linear-gradient(135deg, #007AFF, #5AC8FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(0, 122, 255, 0.4));
}

/* Productivity Features Section Gradients */
#features-productivity .fa-bullseye {
  background: linear-gradient(135deg, #34C759, #30D158);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(52, 199, 89, 0.5));
}

#features-productivity .fa-fire {
  background: linear-gradient(135deg, #FF3B30, #FF6961);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(255, 59, 48, 0.5));
}

#features-productivity .fa-sun {
  background: linear-gradient(135deg, #FF9500, #FFCC00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(255, 149, 0, 0.5));
}

#features-productivity .fa-chart-bar {
  background: linear-gradient(135deg, #34C759, #30D158);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(52, 199, 89, 0.4));
}

/* Business Features Section Gradients */
#features-business .fa-file-invoice-dollar {
  background: linear-gradient(135deg, #AF52DE, #BF5AF2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(175, 82, 222, 0.5));
}

#features-business .fa-clipboard-list {
  background: linear-gradient(135deg, #AF52DE, #BF5AF2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(175, 82, 222, 0.4));
}

#features-business .fa-calendar-alt {
  background: linear-gradient(135deg, #007AFF, #5AC8FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(0, 122, 255, 0.4));
}

#features-business .fa-coins {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.5));
}

/* Security Features Section Gradients */
#features-security .fa-lock {
  background: linear-gradient(135deg, #40916C, #52B788);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(64, 145, 108, 0.5));
}

#features-security .fa-fingerprint {
  background: linear-gradient(135deg, #40916C, #52B788);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(64, 145, 108, 0.5));
}

#features-security .fa-database {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.5));
}

/* Hover Effects for Home & Features Pages */
#home-stats .qcard:hover i,
#home-features .qcard:hover i,
#home-workflow .action-card:hover i,
#features-core .qcard:hover i,
#features-productivity .qcard:hover i,
#features-business .qcard:hover i,
#features-security .qcard:hover i {
  transform: scale(1.15) rotate(5deg) translateY(-4px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5)) brightness(1.1);
}

