/* ==========================================================================
   ReducerImage - Main Core Stylesheet (style.css)
   ========================================================================== */

/* Import Google Fonts - Inter & Outfit */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Custom Variables (Design System - Glassmorphism & 3D Trendy) */
:root {
  /* Colors - Rich Violet to Blue Gradients */
  --primary: #8b5cf6; /* Violet */
  --primary-hover: #7c3aed;
  --primary-light: rgba(139, 92, 246, 0.15);
  --primary-gradient: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
  --secondary: #f43f5e; /* Rose */
  --secondary-gradient: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
  --accent: #06b6d4; /* Cyan */
  --accent-gradient: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  
  /* Mesh Gradient Colors */
  --mesh-1: rgba(168, 85, 247, 0.25);
  --mesh-2: rgba(99, 102, 241, 0.2);
  --mesh-3: rgba(6, 182, 212, 0.15);
  
  /* Light Mode Palette */
  --bg-primary: #f8fafc; /* Ultra clean slate foundation */
  --bg-secondary: #f1f5f9;
  --bg-tertiary: #e2e8f0;
  --text-primary: #0b0f19; /* Rich dark navy for high contrast */
  --text-secondary: #334155; /* Slate-700 secondary text */
  --text-muted: #64748b; /* Slate-500 muted text */
  --border-color: rgba(99, 102, 241, 0.12); /* Subtle violet border for luxury definition */
  --card-bg: rgba(255, 255, 255, 0.88); /* Higher opacity glassmorphic base */
  --card-shadow: 0 12px 40px rgba(31, 38, 135, 0.06);
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(99, 102, 241, 0.16);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 32px rgba(31, 38, 135, 0.06);
  --shadow-lg: 0 20px 48px rgba(31, 38, 135, 0.1);
  --btn-text: #ffffff;
  --btn-shadow: rgba(139, 92, 246, 0.35);
}

body.dark-mode {
  --bg-primary: #090d16; /* Deep Space Dark Blue */
  --bg-secondary: #0f172a;
  --bg-tertiary: #1e293b;
  --text-primary: #f9fafb;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  --border-color: rgba(255, 255, 255, 0.08);
  --card-bg: rgba(15, 23, 42, 0.45); /* Dark translucent glass */
  --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  --glass-bg: rgba(15, 23, 42, 0.5);
  --glass-border: rgba(255, 255, 255, 0.08);
  
  --primary: #a855f7;
  --primary-hover: #9333ea;
  --primary-light: rgba(168, 85, 247, 0.18);
  --primary-gradient: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
  --secondary: #f43f5e;
  --secondary-gradient: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
  --btn-text: #ffffff;
  --btn-shadow: rgba(168, 85, 247, 0.45);
}

/* Visually Hidden Helper (Accessibility standard) */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Toast Notifications */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.toast {
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s;
}
.toast.toast-show {
  transform: translateX(0);
  opacity: 1;
}
.toast-success { border-left-color: var(--success); }
.toast-error { border-left-color: var(--danger); }

/* Animated Mesh Background */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after, .hero-mesh {
  content: '';
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.6;
  animation: mesh-float 15s infinite alternate ease-in-out;
}
.hero::before {
  background: var(--mesh-1);
  top: -20%;
  left: -10%;
}
.hero::after {
  background: var(--mesh-2);
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
}
.hero-mesh {
  background: var(--mesh-3);
  top: 20%;
  left: 30%;
  animation-delay: -10s;
}
@keyframes mesh-float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, 15%) scale(1.1); }
  100% { transform: translate(-10%, 10%) scale(0.9); }
}

:root {
  /* Status Colors */
  --success: #10b981;
  --success-light: rgba(16, 185, 129, 0.1);
  --warning: #f59e0b;
  --warning-light: rgba(245, 158, 11, 0.1);
  --danger: #ef4444;
  --danger-light: rgba(239, 68, 68, 0.1);
  --info: #3b82f6;
  --info-light: rgba(59, 130, 246, 0.1);
  
  /* Typography System */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Outfit', var(--font-sans);
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  /* Unified Spacing System */
  --sp-4: 4px;
  --sp-8: 8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-20: 20px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-40: 40px;
  --sp-48: 48px;
  --sp-64: 64px;
  --sp-80: 80px;
  --sp-96: 96px;

  /* Layout & Sizing */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --header-height: 80px;
  --max-width: 1140px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Variables Override */
html[data-theme="dark"] {
  --bg-primary: #0b0f19;
  --bg-secondary: #0f172a;
  --bg-tertiary: #1e293b;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: rgba(51, 65, 85, 0.5);
  --card-bg: rgba(15, 23, 42, 0.65);
  --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.1);
  --glass-bg: rgba(15, 23, 42, 0.6);
  --glass-border: rgba(255, 255, 255, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.4);
}

/* Base Reset & Core Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

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

ul {
  list-style: none;
}

/* Typography Utility Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 { font-size: 3rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Structure Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Dynamic Grid */
.grid {
  display: grid;
  gap: 32px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Flex Utilities */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-column { display: flex; flex-direction: column; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* Section Styles */
.section {
  padding: 80px 0;
  position: relative;
}
.section-bg {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px auto;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  height: 70px;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

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

/* Logo Design */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width var(--transition-normal);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
  /* position: relative; removed for screen-centered dropdowns */
}
.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px) scale(0.95);
  width: 800px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.35s;
  z-index: 100;
}
.dropdown-menu.col-5 {
  width: 1050px;
  grid-template-columns: repeat(5, 1fr);
}
.dropdown-menu.col-3 {
  width: 720px;
  grid-template-columns: repeat(3, 1fr);
}
.dropdown-menu.col-2 {
  width: 600px;
  grid-template-columns: repeat(2, 1fr);
}
.dropdown-menu.dropdown-center {
  position: fixed !important;
  top: 85px !important;
  left: 50vw !important;
  right: auto !important;
  transform: translateX(-50%) translateY(15px) scale(0.95) !important;
}
.header.scrolled .dropdown-menu.dropdown-center {
  top: 70px !important;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}
.nav-dropdown:hover .dropdown-menu.dropdown-center {
  transform: translateX(-50%) translateY(0) scale(1) !important;
}
.dropdown-callout {
  background-color: var(--bg-secondary);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}
.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dropdown-col-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-left: 8px;
  border-left: 2px solid var(--primary);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.dropdown-item:hover {
  background-color: var(--bg-tertiary);
  color: var(--primary);
}
.dropdown-item p {
  display: none !important;
}
.dropdown-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Action Controls (Theme, Language, Action Button) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
}

.theme-toggle, .lang-selector-btn {
  height: 40px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background-color: var(--card-bg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
}
.theme-toggle {
  width: 40px;
  border-radius: 50%;
}
.lang-selector-btn {
  padding: 0 16px;
  border-radius: 20px;
  gap: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}
.theme-toggle:hover, .lang-selector-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.lang-dropdown-wrapper {
  position: relative;
}
.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateY(15px);
  width: 140px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 100;
}
.lang-dropdown-wrapper:hover .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.lang-item:hover, .lang-item.active {
  background-color: var(--primary-light);
  color: var(--primary);
}

/* Footer Section - Premium */
.footer {
  background-color: var(--bg-secondary);
  position: relative;
  padding: 80px 0 40px 0;
  font-size: 0.95rem;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), var(--primary), var(--border-color), transparent);
  opacity: 0.8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 280px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-link:hover {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px) scale(1.05);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}
.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 16px;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
}
.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  max-width: 400px;
  width: calc(100% - 48px);
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translate(-50%, 150%);
  transition: transform var(--transition-slow);
}
.cookie-banner.show {
  transform: translate(-50%, 0);
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}
.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}
.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--border-color);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 1s linear infinite;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 999;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Keyframes */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   Advanced Header & Footer Design Enhancements
   ========================================================================== */

/* Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 10001;
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--primary-gradient);
  transition: width 0.1s ease-out;
}

/* Chevron Rotation on Hover */
.nav-dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}
.dropdown-trigger i {
  transition: transform var(--transition-normal) !important;
}

/* Theme Toggle Morphs */
.theme-toggle i {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.theme-toggle:hover i {
  transform: rotate(45deg) scale(1.1);
}

/* Pulsing Status Dot */
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  margin-right: 8px;
  position: relative;
  vertical-align: middle;
}
.status-dot::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 50%;
  background-color: #10b981;
  animation: status-pulse 2s infinite ease-in-out;
}
@keyframes status-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* Brand matching social links colors */
.social-link[aria-label="Facebook"]:hover {
  background: #1877f2 !important;
  border-color: #1877f2 !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.45);
}
.social-link[aria-label="Twitter"]:hover {
  background: #1da1f2 !important;
  border-color: #1da1f2 !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(29, 161, 242, 0.45);
}
.social-link[aria-label="Linkedin"]:hover {
  background: #0077b5 !important;
  border-color: #0077b5 !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.45);
}
.social-link[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.45);
}

