/* ========================================
   ANATOLIAN NILE - نيل الأناضول
   International Trade Platform Website
   Arabic-First Design with RTL Support
   ======================================== */

/* ----------------------------------------
   Custom Font Definitions
   ---------------------------------------- */
@font-face {
  font-family: 'Almarai';
  src: url('../images/assets/Almarai,Baloo_Bhaijaan_2/Almarai/Almarai-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Almarai';
  src: url('../images/assets/Almarai,Baloo_Bhaijaan_2/Almarai/Almarai-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Almarai';
  src: url('../images/assets/Almarai,Baloo_Bhaijaan_2/Almarai/Almarai-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Almarai';
  src: url('../images/assets/Almarai,Baloo_Bhaijaan_2/Almarai/Almarai-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../images/assets/Outfit/Outfit-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ----------------------------------------
   CSS Custom Properties - 60-30-10 COLOR RULE
   60% = Dark Navy backgrounds
   30% = Secondary text/surfaces  
   10% = Orange accent (CTAs ONLY)
   ---------------------------------------- */
:root {
  /* ===== 60% - PRIMARY BACKGROUNDS ===== */
  --bg-dark: #0A1628;
  /* Main dark background */
  --bg-dark-elevated: #0D1F35;
  /* Elevated surfaces, cards */
  --bg-dark-card: #112840;
  /* Glass cards, modals */
  --bg-dark-subtle: #0F2233;
  /* Subtle variation */

  /* ===== 30% - TEXT HIERARCHY ===== */
  --text-primary: #FFFFFF;
  /* Headlines, important text */
  --text-secondary: #B8C5D3;
  /* Body text, paragraphs */
  --text-muted: #65738A;
  /* Captions, subtle text */
  --text-on-accent: #FFFFFF;
  /* Text on orange buttons */

  /* ===== 10% - ACCENT (ACTION ONLY) ===== */
  --accent: #FF5722;
  /* Primary CTA buttons */
  --accent-hover: #E64A19;
  /* Button hover state */
  --accent-soft: rgba(255, 87, 34, 0.12);
  /* Icon backgrounds */
  --accent-border: rgba(255, 87, 34, 0.4);
  /* Accent borders */

  /* ===== SEMANTIC COLORS ===== */
  --success: #25D366;
  /* WhatsApp, success states */
  --success-hover: #20BD5A;
  --info: #0EA5A4;
  /* Info states */
  --warning: #E09B3D;
  /* Warnings (use dark text) */

  /* ===== BORDERS & SURFACES ===== */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(255, 87, 34, 0.3);
  --surface-glass: rgba(255, 255, 255, 0.03);
  --surface-glass-hover: rgba(255, 255, 255, 0.06);

  /* Legacy mappings for compatibility */
  --color-orange: var(--accent);
  --color-orange-light: #FF8C5A;
  --color-orange-dark: var(--accent-hover);
  --color-green: var(--success);
  --color-white: var(--text-primary);
  --color-navy: var(--bg-dark);
  --color-deep-sea-900: var(--bg-dark);
  --color-deep-sea-800: var(--bg-dark-elevated);
  --color-deep-sea-700: var(--bg-dark-card);
  --color-deep-sea-600: #163552;
  --color-gray-400: var(--text-secondary);
  --color-gray-500: var(--text-muted);
  --color-gray-600: var(--text-muted);

  /* ===== GRADIENTS (SUBTLE ONLY) ===== */
  --gradient-dark: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-elevated) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);

  /* REMOVED: Purple/red gradients - using solid orange instead */
  --gradient-primary: var(--accent);
  /* Fallback to solid */

  /* ===== TYPOGRAPHY ===== */
  --font-arabic: 'Almarai', 'Cairo', 'Tajawal', sans-serif;
  --font-english: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-primary: var(--font-arabic);

  /* ===== SPACING ===== */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* ===== SHADOWS ===== */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 30px rgba(255, 87, 34, 0.2);
  --shadow-accent: 0 6px 20px rgba(255, 87, 34, 0.25);

  /* ===== TRANSITIONS ===== */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* ===== BORDER RADIUS ===== */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-gray-800);
  background: var(--color-navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* RTL Default */
body {
  direction: rtl;
  text-align: right;
}

body[dir="ltr"] {
  direction: ltr;
  text-align: left;
  font-family: var(--font-english);
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ----------------------------------------
   Typography
   ---------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Text Accent - WHITE TEXT with orange underline */
/* Strong override to prevent any orange/gradient text */
.text-gradient,
.text-accent-underline,
span.text-gradient,
span.text-accent-underline {
  color: #FFFFFF !important;
  /* Force WHITE text */
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  /* Force WHITE */
  background-clip: unset !important;
  position: relative;
  display: inline;
}

.text-gradient::after,
.text-accent-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  /* Orange underline */
  border-radius: 2px;
}

/* ----------------------------------------
   Layout
   ---------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-24) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-top: var(--space-4);
}

.section-tag {
  display: inline-block;
  padding: var(--space-2) var(--space-6);
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--radius-full);
  color: var(--color-orange);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.section-tag-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

/* ----------------------------------------
   Navigation
   ---------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 10px 0;
  /* Reduced padding to keep bar height reasonable */
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  /* Background removed for transparent logo */
  padding: 8px 16px;
  border-radius: 12px;
}

.logo img {
  height: 80px;
  width: auto;
  transition: transform var(--transition-base);
  /* Remove any background from the image itself */
  background: transparent;
  mix-blend-mode: normal;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  padding: var(--space-2) 0;
}

.nav-link:hover {
  color: var(--color-white);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ----------------------------------------
   Language Toggle - Premium Glassmorphism Design
   ---------------------------------------- */
.language-toggle {
  position: relative;
  margin-inline-start: var(--space-6);
}

.language-btn {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.language-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.flag-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.lang-text {
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.chevron-icon {
  transition: transform var(--transition-base);
  opacity: 0.7;
}

.language-toggle.active .chevron-icon {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + var(--space-3));
  inset-inline-start: 0;
  min-width: 180px;
  background: linear-gradient(180deg, rgba(13, 31, 53, 0.98) 0%, rgba(10, 22, 40, 0.98) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all var(--transition-base) cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 8px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 10000;
  pointer-events: none;
}

.language-toggle.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.lang-option:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.08) 100%);
  color: var(--color-white);
  transform: translateX(-4px);
}

[dir="ltr"] .lang-option:hover {
  transform: translateX(4px);
}

.lang-option.active {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
  color: var(--color-orange);
  font-weight: 700;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

/* ----------------------------------------
   Buttons - SOLID COLORS (No Gradients)
   ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  /* SOLID orange, no gradient */
  color: var(--text-on-accent);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 87, 34, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

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

/* WhatsApp - Solid green, no gradient */
.btn-whatsapp {
  background: var(--success) !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--success-hover) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 1rem;
}

.btn-nav {
  padding: var(--space-2) var(--space-5);
}

.btn-icon {
  font-size: 1.1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(3, 10, 22, 0.95) 0%,
      rgba(3, 10, 22, 0.8) 40%,
      rgba(3, 10, 22, 0.4) 100%);
  z-index: 2;
}

[dir="rtl"] .hero-overlay {
  background: linear-gradient(-90deg,
      rgba(3, 10, 22, 0.95) 0%,
      rgba(3, 10, 22, 0.8) 40%,
      rgba(3, 10, 22, 0.4) 100%);
}

.hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  max-width: 750px;
  padding: var(--space-8) 0;
}

.hero-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-5);
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--radius-full);
  color: var(--color-orange-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-6);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: var(--space-4);
  font-weight: 800;
  color: var(--color-white);
}

.hero-tagline {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  line-height: 1.8;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

/* Hero Trust Indicators */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.trust-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 204, 113, 0.2);
  color: var(--color-green);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: bold;
}

/* ========================================
   VALUE PROPOSITION SECTION - DARK THEME
   ======================================== */
.value-prop {
  background: linear-gradient(180deg, var(--bg-dark-elevated) 0%, var(--bg-dark-card) 100%);
  position: relative;
  overflow: visible;
  padding-top: var(--space-16);
}

.value-prop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  /* Solid orange, no gradient */
}

.value-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.value-text h2 {
  color: var(--text-primary);
  /* WHITE headlines */
  margin-bottom: var(--space-4);
}

.value-lead {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.value-lead strong {
  color: var(--text-primary);
  /* White, not orange */
  font-weight: 700;
}

.value-text>p {
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.no-need-list {
  background: var(--surface-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--border-subtle);
}

.no-need-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.no-need-items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.no-need-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--accent-soft);
  /* Orange tint for tags */
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Single Partner Card - New Design with 3D Asset */
.value-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-partner-card {
  position: relative;
  max-width: 550px;
  margin: 0 auto;
}

.partner-card-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.partner-3d-image {
  position: relative;
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
  z-index: 10;
  pointer-events: none;
}

.partner-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  margin-top: var(--space-4);
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: var(--accent);
  /* SOLID orange */
  border: 1px solid var(--accent-hover);
  border-radius: var(--radius-full);
  color: var(--text-on-accent);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-accent);
}

.partner-badge:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 87, 34, 0.35);
}

/* ========================================
   SERVICES SECTION - DARK THEME
   ======================================== */
.services {
  background: linear-gradient(180deg, var(--bg-dark-card) 0%, var(--bg-dark-elevated) 100%);
}

.services h2,
.services h3,
.services h4 {
  color: var(--text-primary);
  /* WHITE headlines */
}

.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.service-card {
  position: relative;
  background: var(--surface-glass);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
  border: 1px solid var(--border-subtle);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--accent);
}

.service-card-featured {
  background: linear-gradient(145deg, rgba(255, 87, 34, 0.08) 0%, var(--surface-glass) 100%);
  border-color: var(--accent-border);
}

.service-card-free {
  position: relative;
  overflow: hidden;
}

.service-badge {
  position: absolute;
  top: var(--space-4);
  inset-inline-end: var(--space-4);
  padding: var(--space-1) var(--space-3);
  background: var(--success);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.service-icon-wrapper {
  margin-bottom: var(--space-5);
}

/* MONOTONE ICONS - Orange only, no fruit salad */
.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  /* Subtle orange background */
  color: var(--accent);
  /* Orange icon */
  border-radius: var(--radius-lg);
  font-size: 2rem;
  border: 1px solid var(--accent-border);
}

.service-content h3 {
  margin-bottom: var(--space-3);
  font-size: 1.25rem;
}

.service-content>p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-5);
  line-height: 1.7;
}

.service-features {
  list-style: none;
}

.service-features li {
  position: relative;
  padding: var(--space-2) 0;
  padding-inline-start: var(--space-6);
  color: var(--text-muted);
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border-subtle);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  color: var(--accent);
  /* Orange checkmarks */
  font-weight: bold;
}

/* ========================================
   CUSTOMER JOURNEY SECTION
   ======================================== */
.journey {
  background: linear-gradient(180deg, var(--color-deep-sea-700) 0%, var(--color-deep-sea-800) 100%);
  position: relative;
  overflow: hidden;
}

.journey::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(30, 74, 110, 0.15) 0%, transparent 50%);
}

.journey .container {
  position: relative;
  z-index: 1;
}

.journey-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-12);
  align-items: stretch;
}

.journey-step {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.step-number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin: 0 auto var(--space-4);
  box-shadow: var(--shadow-glow);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.step-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: all var(--transition-base);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey-step:hover .step-content {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-5px);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-3);
}

.step-content h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: var(--space-2);
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  top: 25px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: var(--accent);
  opacity: 0.8;
  z-index: 1;
  transform: translateY(-50%);
}

body[dir="rtl"] .step-connector {
  left: auto;
  right: 50%;
}

/* Hide connector on the last step */
.journey-step:last-child .step-connector {
  display: none;
}

.journey-cta {
  text-align: center;
  margin-top: var(--space-12);
}

/* ========================================
   GLOBAL REACH SECTION
   ======================================== */
.global-reach {
  background: linear-gradient(180deg, var(--color-deep-sea-800) 0%, var(--color-deep-sea-900) 100%);
  overflow: hidden;
}

.global-reach .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-12);
}

.reach-content h2 {
  margin-bottom: var(--space-4);
}

.reach-content>p {
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  font-size: 1.1rem;
  line-height: 1.8;
}

.reach-stats {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.stat-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  text-align: center;
  transition: all var(--transition-base);
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 53, 0.3);
}

.stat-box h3 {
  font-size: 2.25rem;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat-box span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.reach-regions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.region-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.reach-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.reach-visual img {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 0 40px rgba(74, 144, 226, 0.2));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* ========================================
   WHY US SECTION
   ======================================== */
.why-us {
  background: linear-gradient(180deg, var(--color-deep-sea-light) 0%, var(--color-deep-sea-lighter) 100%);
}

.why-us h2,
.why-us h3 {
  color: var(--color-deep-sea-800);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.why-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid rgba(17, 40, 64, 0.08);
  box-shadow: 0 4px 15px rgba(10, 22, 40, 0.05);
}

.why-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--accent);
}

.why-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  font-size: 2rem;
  margin: 0 auto var(--space-5);
  box-shadow: none;
  border: 1px solid var(--border-light);
}

.why-card h3 {
  margin-bottom: var(--space-3);
  font-size: 1.25rem;
  color: #FFFFFF !important;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========================================
   AUDIENCE SECTION
   ======================================== */
.audience {
  background: linear-gradient(180deg, var(--color-deep-sea-600) 0%, var(--color-deep-sea-700) 100%);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.audience-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-base);
}

.audience-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-5px);
}

.audience-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
}

.audience-card h3 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: var(--space-3);
}

.audience-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: linear-gradient(180deg, var(--color-deep-sea-900) 0%, var(--color-deep-sea-800) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(30, 74, 110, 0.15) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: var(--space-4);
}

.cta-tagline {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: var(--space-4);
}

.cta-content>p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: var(--space-8);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.cta-contact {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-secondary);
  font-size: 1rem;
}

.contact-icon {
  font-size: 1.25rem;
}

.cta-promise {
  color: var(--color-orange);
  font-size: 1.1rem;
  font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-deep-sea-900);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand img {
  height: 120px;
  margin-bottom: var(--space-4);
  background: transparent;
}

.footer-tagline {
  color: var(--color-orange);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.footer-brand>p:last-of-type {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-column h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: var(--space-5);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a,
.footer-links span {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: var(--color-gray-600);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom-links a {
  color: var(--color-gray-600);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--color-orange);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }

  .step-connector {
    display: none;
  }
}

@media (max-width: 1024px) {
  .value-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .value-visual {
    order: -1;
  }

  .global-reach .row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .reach-visual {
    order: -1;
  }

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

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

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .logo {
    flex-shrink: 0;
    padding: 4px 8px;
  }

  .logo img {
    height: 50px;
    width: auto;
    max-width: 120px;
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    padding: var(--space-4);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    padding: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-menu-btn {
    display: flex;
  }

  .language-toggle {
    margin-inline-start: auto;
    margin-inline-end: var(--space-4);
  }

  .language-btn {
    padding: var(--space-2) var(--space-3);
  }

  .lang-text {
    display: none;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

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

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

  .hero-overlay {
    background: rgba(3, 10, 22, 0.85);
  }

  .services-grid-4 {
    grid-template-columns: 1fr;
  }

  .journey-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .reach-stats {
    flex-direction: column;
    gap: var(--space-4);
  }

  .cta-contact {
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo {
    padding: 2px 4px;
  }

  .logo img {
    height: 40px;
    max-width: 100px;
  }

  .journey-timeline {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
  }

  .no-need-items {
    flex-direction: column;
  }

  .partner-features {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* ========================================
   LTR SUPPORT (English/Turkish)
   ======================================== */
body[dir="ltr"] {
  text-align: left;
}

body[dir="ltr"] .hero-overlay {
  background: linear-gradient(90deg,
      rgba(3, 10, 22, 0.95) 0%,
      rgba(3, 10, 22, 0.8) 40%,
      rgba(3, 10, 22, 0.4) 100%);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.section,
.hero-content,
.service-card,
.journey-step,
.why-card,
.audience-card,
.stat-box {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible,
.hero-content.visible,
.service-card.visible,
.journey-step.visible,
.why-card.visible,
.audience-card.visible,
.stat-box.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations */
.service-card:nth-child(2) {
  transition-delay: 0.1s;
}

.service-card:nth-child(3) {
  transition-delay: 0.2s;
}

.service-card:nth-child(4) {
  transition-delay: 0.3s;
}

.journey-step:nth-child(2) {
  transition-delay: 0.1s;
}

.journey-step:nth-child(3) {
  transition-delay: 0.2s;
}

.journey-step:nth-child(4) {
  transition-delay: 0.3s;
}

.journey-step:nth-child(5) {
  transition-delay: 0.4s;
}

.journey-step:nth-child(6) {
  transition-delay: 0.5s;
}

.why-card:nth-child(2) {
  transition-delay: 0.1s;
}

.why-card:nth-child(3) {
  transition-delay: 0.2s;
}

.why-card:nth-child(4) {
  transition-delay: 0.3s;
}

.why-card:nth-child(5) {
  transition-delay: 0.4s;
}

.why-card:nth-child(6) {
  transition-delay: 0.5s;
}

/* ========================================
   ORDER MODAL
   ======================================== */
.order-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.order-modal {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(180deg, var(--color-deep-sea-700) 0%, var(--color-deep-sea-800) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  transform: translateY(20px) scale(0.95);
  transition: all var(--transition-base) cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.order-modal-overlay.active .order-modal {
  transform: translateY(0) scale(1);
}

.order-modal-close {
  position: absolute;
  top: var(--space-4);
  inset-inline-end: var(--space-4);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.order-modal-close:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.order-modal-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.order-modal-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--space-3);
}

.order-modal-header h2 {
  color: var(--color-white);
  font-size: 1.75rem;
  margin-bottom: var(--space-2);
}

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

.order-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  color: var(--text-secondary) !important;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

/* Input placeholder - VERY BRIGHT for visibility */
.form-group input::placeholder,
.form-group textarea::placeholder,
.order-form input::placeholder,
.order-form textarea::placeholder,
input::placeholder,
textarea::placeholder {
  color: #B0C4D8 !important;
  /* BRIGHT light blue-gray */
  opacity: 1 !important;
}

/* Webkit placeholder (Chrome, Safari) */
.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
  color: #B0C4D8 !important;
  opacity: 1 !important;
}

/* Firefox placeholder */
.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
  color: #B0C4D8 !important;
  opacity: 1 !important;
}

/* IE/Edge placeholder */
.form-group input:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder {
  color: #B0C4D8 !important;
  opacity: 1 !important;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.15);
}

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

/* Order buttons - SOLID ORANGE, no gradient */
.btn-order {
  background: var(--accent) !important;
  box-shadow: var(--shadow-accent);
}

.btn-order:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 87, 34, 0.45);
}

.btn-submit {
  width: 100%;
  margin-top: var(--space-4);
}

.order-success {
  display: none;
  text-align: center;
  padding: var(--space-8) 0;
}

.order-success.active {
  display: block;
}

.order-form.hidden {
  display: none;
}

.success-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: var(--space-4);
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.order-success h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
}

.order-success p {
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

/* Modal Responsive */
@media (max-width: 640px) {
  .order-modal {
    padding: var(--space-6);
    margin: var(--space-4);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .order-modal-header h2 {
    font-size: 1.4rem;
  }
}

/* LTR form adjustments for English and Turkish */
[dir="ltr"] .dropdown-toggle {
  text-align: left;
}

[dir="ltr"] .dropdown-value {
  text-align: left;
}

[dir="ltr"] .dropdown-item {
  text-align: left;
}

[dir="ltr"] .dropdown-toggle .chevron-icon {
  margin-left: auto;
  margin-right: 0;
}

[dir="ltr"] .form-group label {
  text-align: left;
}

/* FORCE WHITE TEXT overrides per user request */
.btn,
.btn span,
.btn i,
.btn-primary,
.btn-secondary,
.btn-whatsapp {
  color: #FFFFFF !important;
}

/* Force We're Truly / Gradient text to white */
.text-gradient {
  background: none !important;
  -webkit-text-fill-color: #FFFFFF !important;
  color: #FFFFFF !important;
}

h2,
h3,
.section-header h2 {
  color: #FFFFFF !important;
}

/* FORCE WHITE TEXT on partner pills */
.partner-badge,
.partner-badge span {
  color: #FFFFFF !important;
}

/* ========== Custom Dropdown Styles ========== */
.custom-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: right;
}

.dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.dropdown-toggle.active {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.15);
}

.dropdown-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.dropdown-value {
  flex: 1;
  text-align: right;
  color: var(--text-secondary);
}

.dropdown-value.selected {
  color: var(--color-white);
}

.dropdown-toggle .chevron-icon {
  margin-left: auto;
  transition: transform var(--transition-fast);
}

.dropdown-toggle.active .chevron-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  list-style: none;
  padding: var(--space-2);
  margin: 0;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-fast);
}

/* Custom scrollbar for dropdowns */
.dropdown-menu::-webkit-scrollbar {
  width: 8px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: right;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
}

.dropdown-item.selected {
  background: rgba(255, 87, 34, 0.1);
  color: var(--accent);
}

.dropdown-item-header {
  font-weight: 600;
  color: var(--color-white);
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}

.dropdown-item-header .item-icon {
  font-size: 1.1rem;
}

.dropdown-item-sub {
  padding-left: var(--space-6);
  font-size: 0.9rem;
}

.item-icon {
  margin-left: var(--space-2);
}

.item-label {
  font-size: 0.85rem;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

/* Date input styling */
input[type="date"] {
  color-scheme: dark;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}
