html {
  scroll-behavior: smooth;
  scroll-padding-top: 75px;
}

body {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #f1f5f9;
  font-family: 'Inter', system-ui, sans-serif;
}

/* Consistent Color Variables */
:root {
  --primary-teal: #06d6a0;
  --primary-cyan: #06b6d4;
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --text-tertiary: #cbd5e1;
  --bg-dark: #0f172a;
  --bg-medium: #1e293b;
  --bg-card: rgba(30, 41, 59, 0.8);
  --border-color: rgba(6, 182, 212, 0.3);
  --border-hover: rgba(6, 182, 212, 0.6);
}

/* Header Styling */
.header-minimal {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(100, 116, 139, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.logo-gradient {
  color: #06d6a0 !important;
  font-weight: 800;
}

.nav-link {
  position: relative;
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #06d6a0, #06b6d4);
  transition: width 0.3s;
}

.nav-link:hover {
  color: #06b6d4;
}

.nav-link:hover::before {
  width: 100%;
}

/* Language Dropdown - Compact */
.lang-select {
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(100, 116, 139, 0.3);
  color: #e2e8f0;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s;
}

/* Dropdown Arrow Color Fix */
.lang-select::after,
.faq-toggle i,
button i.fa-chevron-down,
.faq-toggle .fa-chevron-down {
  color: #06b6d4 !important;
}

/* Ensure all chevron icons are visible */
.faq-toggle i.fa-chevron-down,
.faq-toggle .fa-solid.fa-chevron-down {
  color: #06b6d4 !important;
  opacity: 1 !important;
}

.lang-select:hover {
  background: rgba(6, 182, 212, 0.2);
  border-color: rgba(6, 182, 212, 0.5);
  color: #06b6d4;
}

.dropdown-item {
  background: rgba(15, 23, 42, 0.9);
  color: #e2e8f0;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(100, 116, 139, 0.2);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-item:hover {
  background: rgba(6, 182, 212, 0.2);
  color: #06b6d4;
}

.dropdown-item img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
}

#langDropdown {
  max-height: 350px;
  overflow-y: auto;
}

#langDropdown::-webkit-scrollbar {
  width: 6px;
}

#langDropdown::-webkit-scrollbar-track {
  background: rgba(100, 116, 139, 0.1);
  border-radius: 3px;
}

#langDropdown::-webkit-scrollbar-thumb {
  background: rgba(6, 182, 212, 0.4);
  border-radius: 3px;
}

#langDropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(6, 182, 212, 0.6);
}

/* Mobile Menu */
#mobileMenu {
  display: none;
  position: fixed;
  top: 75px;
  right: 0;
  bottom: 0;
  width: 280px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-left: 1px solid rgba(100, 116, 139, 0.3);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  pointer-events: auto;
}

#mobileMenu.translate-x-full {
  transform: translateX(100%) !important;
}

#mobileMenu.active,
#mobileMenu.open {
  display: block;
  transform: translateX(0) !important;
}

#hamburger {
  display: none;
  background: none;
  border: none;
  color: #e2e8f0 !important;
  cursor: pointer;
  font-size: 1.5rem;
  pointer-events: auto;
}

#hamburger i,
#hamburger .fa-bars {
  color: #e2e8f0 !important;
  display: inline-block;
}

/* Ensure all icons have visible colors */
i[class*="fa-"],
[class*="fa-"] {
  display: inline-block;
}

/* Ensure contact page icons are visible */
.contact-card i.fa-solid,
.contact-card .fa-solid {
  display: inline-block !important;
  color: inherit !important;
}

.contact-card .text-teal-400 i,
.contact-card i.text-teal-400 {
  color: #2dd4bf !important;
}

.contact-card .text-cyan-500 i,
.contact-card i.text-cyan-500 {
  color: #06b6d4 !important;
}

/* Ensure "Why choose us" section icons are visible */
section[class*="bg-slate-800"] i.fa-solid,
section[class*="bg-slate-800"] .fa-solid,
div[class*="bg-slate-800"] i.fa-solid,
div[class*="bg-slate-800"] .fa-solid {
  display: inline-block !important;
}

section[class*="bg-slate-800"] .text-teal-400 i,
section[class*="bg-slate-800"] i.text-teal-400,
div[class*="bg-slate-800"] .text-teal-400 i,
div[class*="bg-slate-800"] i.text-teal-400 {
  color: #2dd4bf !important;
}

section[class*="bg-slate-800"] .text-cyan-500 i,
section[class*="bg-slate-800"] i.text-cyan-500,
div[class*="bg-slate-800"] .text-cyan-500 i,
div[class*="bg-slate-800"] i.text-cyan-500 {
  color: #06b6d4 !important;
}

/* Ensure all contact page icons are prominent */
.contact-card i,
.contact-card .fa-solid {
  font-size: 3rem !important;
  display: inline-block !important;
}

/* Ensure contact card text (email, phone) is visible */
.contact-card p.text-teal-400,
.contact-card .text-teal-400 {
  color: #2dd4bf !important;
  font-weight: 600 !important;
}

.contact-card p.text-cyan-400,
.contact-card .text-cyan-400 {
  color: #06b6d4 !important;
  font-weight: 600 !important;
}

/* Ensure "Why choose us" icons are prominent */
.space-y-6 i.fa-solid,
.space-y-6 .fa-solid {
  font-size: 1.5rem !important;
  display: inline-block !important;
}

/* Ensure CTA button is prominent */
a[href*="/contact"],
button.submit-btn {
  background-color: #2dd4bf !important;
  color: #0f172a !important;
  font-weight: 700 !important;
  padding: 14px 32px !important;
  border-radius: 8px !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

a[href*="/contact"]:hover,
button.submit-btn:hover {
  background-color: #14b8a6 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(45, 212, 191, 0.4) !important;
}

/* Ensure about page statistics are visible */
.bg-slate-800\/50 .text-4xl.text-teal-400,
.bg-slate-800\/50 div.text-teal-400 {
  color: #2dd4bf !important;
  font-weight: 700 !important;
}

/* Ensure team member names and titles are visible */
.bg-slate-800\/50 h3.font-bold,
.bg-slate-800\/50 .font-bold.text-lg {
  color: #ffffff !important;
}

.bg-slate-800\/50 .text-teal-400,
.bg-slate-800\/50 p.text-teal-400 {
  color: #2dd4bf !important;
}

.bg-slate-800\/50 .text-cyan-400,
.bg-slate-800\/50 p.text-cyan-400 {
  color: #22d3ee !important;
}

.bg-slate-800\/50 .text-slate-300,
.bg-slate-800\/50 p.text-slate-300 {
  color: #cbd5e1 !important;
}

/* Ensure timeline headings and text are visible */
.bg-slate-800\/50 h3.font-bold.text-lg {
  color: #ffffff !important;
}

.bg-slate-800\/50 p.text-slate-200 {
  color: #e2e8f0 !important;
}

/* Ensure FAQ section is visible */
.bg-slate-800\/50 h3.font-outfit {
  color: #ffffff !important;
}

.bg-slate-800\/50 h4.font-bold.text-teal-400 {
  color: #2dd4bf !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
}

.bg-slate-800\/50 h4.font-bold.text-cyan-500 {
  color: #06b6d4 !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
}

.bg-slate-800\/50 .space-y-4 p.text-slate-200 {
  color: #e2e8f0 !important;
}

/* Ensure mission section icons are visible */
.space-y-4 .text-teal-400 i,
.space-y-4 i.text-teal-400,
.flex.items-start .text-teal-400 i,
.flex.items-start i.text-teal-400 {
  color: #2dd4bf !important;
  display: inline-block !important;
  font-size: 1.5rem !important;
}

.space-y-4 .text-cyan-500 i,
.space-y-4 i.text-cyan-500,
.flex.items-start .text-cyan-500 i,
.flex.items-start i.text-cyan-500 {
  color: #06b6d4 !important;
  display: inline-block !important;
  font-size: 1.5rem !important;
}

/* Ensure timeline year circles are visible */
.space-y-8 .rounded-full.bg-gradient-to-br {
  background: linear-gradient(135deg, #2dd4bf 0%, #06b6d4 100%) !important;
}

.space-y-8 .rounded-full span,
.space-y-8 .rounded-full {
  color: #ffffff !important;
  font-weight: 700 !important;
}

/* Ensure timeline content boxes are visible */
.space-y-8 .bg-slate-800\/50 h3 {
  color: #ffffff !important;
}

.space-y-8 .bg-slate-800\/50 p {
  color: #e2e8f0 !important;
}

/* Ensure "Mehr erfahren" button is visible */
button.border-teal-400.text-teal-300,
button[class*="border-teal-400"][class*="text-teal-300"] {
  border-color: #2dd4bf !important;
  color: #2dd4bf !important;
  background-color: transparent !important;
  font-weight: 700 !important;
}

button.border-teal-400.text-teal-300:hover {
  background-color: rgba(45, 212, 191, 0.2) !important;
  color: #ffffff !important;
  border-color: #2dd4bf !important;
}

/* Ensure feature icons are always visible */
.feature-icon i.fa-solid {
  color: #0f172a !important;
  display: inline-block !important;
}

/* Force website_title visibility */
.logo-gradient,
span.logo-gradient,
.logo-gradient span {
  color: #06d6a0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: inline-block !important;
}

/* Ensure all gradient text replacements are visible */
.text-teal-400 {
  color: #2dd4bf !important;
}

.text-cyan-400,
.text-cyan-500 {
  color: #22d3ee !important;
}

/* Ensure all headings are visible */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff !important;
}

/* Ensure paragraphs are visible */
p {
  color: #e2e8f0 !important;
}

/* Ensure spans with website_title are visible */
span:contains("[website_title]"),
span[class*="logo"] {
  color: #06d6a0 !important;
  visibility: visible !important;
}

@media (max-width: 768px) {
  #hamburger {
    display: block;
  }

  nav.desktop-nav {
    display: none !important;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(6, 182, 160, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
  border-bottom: 1px solid rgba(6, 182, 212, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  pointer-events: none;
}

/* Form Styling */
.form-input {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(100, 116, 139, 0.3);
  color: #e2e8f0;
  padding: 12px 14px;
  border-radius: 8px;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.form-input::placeholder {
  color: rgba(203, 213, 225, 0.7);
}

.form-input:focus {
  outline: none;
  background: rgba(30, 41, 59, 0.7);
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.2);
}

.submit-btn {
  background: linear-gradient(135deg, #06d6a0 0%, #06b6d4 100%);
  color: #0f172a;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.3);
}

/* Cards Grid */
.feature-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(6, 182, 160, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(6, 182, 212, 0.5);
  background: rgba(30, 41, 59, 0.8);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #06d6a0 0%, #06b6d4 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a !important;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.feature-icon i,
.feature-icon .fa-solid {
  color: #0f172a !important;
  display: inline-block !important;
}

/* FAQ Section Styling */
.faq-toggle {
  color: #ffffff;
}

.faq-toggle i,
.faq-toggle .fa-chevron-down,
.faq-toggle .fa-solid.fa-chevron-down {
  color: #06b6d4 !important;
  opacity: 1 !important;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-toggle:hover i,
.faq-toggle:hover .fa-chevron-down {
  color: #06d6a0 !important;
}

.faq-content {
  color: #e2e8f0 !important;
}

/* Footer */
.footer-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-top: 1px solid rgba(6, 182, 212, 0.2);
  color: #e2e8f0;
}

.footer-link {
  color: #e2e8f0;
  transition: color 0.3s;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: #06b6d4;
}

/* intl-tel-input customization */
.iti {
  width: 100%;
}

.iti input {
  background: rgba(30, 41, 59, 0.5) !important;
  border: 1px solid rgba(100, 116, 139, 0.3) !important;
  color: #e2e8f0 !important;
  border-radius: 8px !important;
  padding-left: 80px !important;
}

.iti input:focus {
  border-color: rgba(6, 182, 212, 0.5) !important;
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.2) !important;
}

/* intl-tel-input dropdown styling */
.iti__country-list {
  background: #1e293b !important;
  border: 1px solid rgba(100, 116, 139, 0.3) !important;
  max-height: 300px !important;
  overflow-y: auto !important;
}

.iti__country {
  padding: 10px 12px !important;
  color: #e2e8f0 !important;
  border-bottom: 1px solid rgba(100, 116, 139, 0.2) !important;
  transition: all 0.2s !important;
}

.iti__country:hover,
.iti__country.iti__preferred {
  background: rgba(6, 182, 212, 0.15) !important;
  color: #06b6d4 !important;
}

.iti__country-name {
  color: #e2e8f0 !important;
}

.iti__country:hover .iti__country-name,
.iti__country.iti__preferred .iti__country-name {
  color: #06b6d4 !important;
}

.iti__dial-code {
  color: #64748b !important;
}

.iti__country:hover .iti__dial-code,
.iti__country.iti__preferred .iti__dial-code {
  color: #06b6d4 !important;
}

.iti__flag {
  margin-right: 8px !important;
}

/* Terms, Privacy, and Cookies Pages Styling */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s;
}

nav a {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s;
  margin: 0 20px;
}

nav a:hover {
  color: #06b6d4;
}

/* Main Content */
.content-wrapper {
  margin-top: 75px;
  padding: 80px 20px;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #06d6a0 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header p {
  color: #e2e8f0;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.content-box {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.content-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: #06d6a0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.content-box h2 i {
  font-size: 1.5rem;
}

.content-box h3 {
  font-size: 1.2rem;
  color: #06b6d4;
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}

.content-box p {
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.content-box ul {
  list-style: none;
  padding-left: 0;
  color: #e2e8f0;
  margin-bottom: 16px;
}

.content-box li {
  padding: 8px 0 8px 28px;
  position: relative;
  line-height: 1.6;
}

.content-box li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #06d6a0;
  font-weight: bold;
}

.highlight {
  color: #06b6d4;
  font-weight: 600;
}

/* Warning Box */
.warning-box {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 8px;
  padding: 16px;
  margin-top: 20px;
  color: #fca5a5;
}

.warning-box strong {
  color: #f87171;
}

/* Cookie Type Box */
.cookie-type {
  background: rgba(30, 41, 59, 0.4);
  border-left: 3px solid #06d6a0;
  padding: 16px;
  margin: 16px 0;
  border-radius: 6px;
}

.cookie-type strong {
  color: #06b6d4;
  display: block;
  margin-bottom: 8px;
}

.cookie-type p {
  margin-bottom: 8px;
}

/* Toggle Switch */
.toggle-switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 8px;
  margin: 12px 0;
  cursor: pointer;
}

.toggle-switch input {
  cursor: pointer;
}

/* Footer */
.footer {
  background: rgba(6, 182, 160, 0.05);
  border-top: 1px solid rgba(6, 182, 212, 0.2);
  padding: 40px 20px;
  margin-top: 60px;
  text-align: center;
  color: #e2e8f0;
}

.footer a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #06d6a0;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }

  .content-box {
    padding: 24px;
  }

  nav a {
    margin: 0 12px;
    font-size: 0.8rem;
  }
}
