/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2563EB;
  --primary-rgb: 37, 99, 235;
  --secondary-color: #1E40AF;
  --accent-color: #60A5FA;
  --text-primary: #0F172A;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --bg-primary: #ffffff;
  --bg-secondary: #F8FAFC;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --border-radius: 1rem;
  --border-radius-lg: 1.5rem;
  --border-radius-xl: 2rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #0F172A;
  background: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(1.5rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

p {
  margin-bottom: 1rem;
  color: #64748b;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.875rem;
}

.btn-primary {
  background: #2563EB !important;
  border-color: #2563EB !important;
  color: white !important;
}

.btn-primary:hover {
  background: #1E40AF !important;
  border-color: #1E40AF !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-ghost {
  background: transparent;
  color: #0F172A;
  border: 1px solid transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 2rem;
}

.btn-icon {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}

/* Top Header */
.top-header {
  background: #0F172A;
  color: white;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-text {
  display: none;
  font-size: 0.75rem;
  color: #cbd5e1 !important;
  text-decoration: none !important;
}

.phone-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none !important;
  color: inherit !important;
}

.phone-info:hover {
  text-decoration: none !important;
  color: inherit !important;
}

.phone-number {
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none !important;
}

.phone-number:hover {
  text-decoration: none !important;
  color: #ffffff !important;
}



.phone-icon {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 640px) {
  .contact-text {
    display: block;
  }
}

@media (max-width: 639px) {
  .contact-text {
    display: none;
    text-decoration: none !important;
    color: #cbd5e1 !important;
  }
  
  .top-header .container {
    justify-content: center;
  }
  
  .phone-info {
    font-size: 0.8rem;
    text-decoration: none !important;
    color: inherit !important;
  }
  
  .phone-number {
    font-size: 0.8rem;
    text-decoration: none !important;
    color: #ffffff !important;
  }
  
  .top-header {
    padding: 0.25rem 0;
  }
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  position: relative;
  z-index: 50;
  background: #0F172A;
}

.navbar .btn-ghost {
  color: #ffffff;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #ffffff;
}

.logo-shape {
  width: 2rem;
  height: 2rem;
  background: white;
  transform: skewX(-12deg);
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-logo {
  height: 2rem;
  width: auto;
  object-fit: contain;
  max-width: 150px;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 0.5rem;
  display: none;
}

@media (min-width: 768px) {
  .brand-tagline {
    display: block;
  }
}

@media (max-width: 767px) {
  .brand-logo {
    height: 2rem;
    max-width: 120px;
  }
  
  .brand-text {
    font-size: 1.25rem;
  }
  
  .nav-brand {
    gap: 0.25rem;
  }
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

/* Mobile menu styles */
@media (max-width: 1023px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  body.menu-open .nav-menu {
    left: 0;
  }

  /* Mobil menü kapatma butonu */
  .mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1001;
  }

  .mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-close svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
  }

  .nav-menu .nav-link {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    gap: 0.25rem;
  }

  .nav-menu .dropdown-toggle {
    color: white;
    font-size: 24px !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    gap: 0.25rem;
  }

  .nav-menu .dropdown {
    width: 100%;
    text-align: center;
  }

  .nav-menu .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: auto;
    margin-top: 0;
  }

  .nav-menu .services-grid-new {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .nav-menu .service-card-new {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-menu .service-card-new:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .nav-menu .service-content h3 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0;
  }

  .nav-menu .service-content p {
    display: none;
  }

  .nav-menu .dropdown-toggle {
    color: white;
  }

  .nav-menu .dropdown-icon {
    color: white;
  }

  /* Mobilde dropdown'ları kapalı tut */
  .nav-menu .dropdown {
    position: static;
  }

  .nav-menu .dropdown-menu {
    display: none;
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: auto;
    margin-top: 0;
  }

  .nav-menu .dropdown.active .dropdown-menu {
    display: block;
  }

  /* Mobilde dropdown icon'u düzgün çalışsın */
  .nav-menu .dropdown.active .dropdown-icon {
    transform: rotate(180deg);
  }

  /* Mobilde dropdown'ların otomatik açılmasını engelle */
  .nav-menu .dropdown:hover .dropdown-menu {
    display: none;
  }

  .nav-menu .dropdown.active:hover .dropdown-menu {
    display: block;
  }
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link:hover {
  color: var(--text-muted);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link.dropdown-toggle {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #ffffff;
  font-weight: 500;
  display: contents;
  align-items: center; 
  /* text-decoration: none; */
  /* transition: var(--transition); */
  /* gap: 0.25rem; */
  font-size: 16px !important;
}

.dropdown-icon {
  width: 1rem;
  height: 1rem;
  transition: var(--transition);
}

.dropdown.active .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  min-width: 600px;
  margin-top: 1rem;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* New Services Grid */
.services-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-card-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  color: #475569;
  transition: var(--transition);
  border: 1px solid #e2e8f0;
  background: white;
}

.service-card-new:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.service-icon-new {
  width: 3rem;
  height: 3rem;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon-new.blue {
  background: #dbeafe;
  color: #2563eb;
}
.service-icon-new.green {
  background: #d1fae5;
  color: #059669;
}
.service-icon-new.blue-dark {
  background: #DBEAFE;
  color: #1E40AF;
}
.service-icon-new.orange {
  background: #fed7aa;
  color: #ea580c;
}

.service-icon-new svg {
  width: 1.5rem;
  height: 1.5rem;
}

.service-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #0f172a;
}

.service-content p {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.4;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  color: #475569;
  transition: var(--transition);
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon.blue {
  background: #dbeafe;
  color: #2563eb;
}
.service-icon.green {
  background: #d1fae5;
  color: #059669;
}
.service-icon.blue-dark {
  background: #DBEAFE;
  color: #1E40AF;
}
.service-icon.orange {
  background: #fed7aa;
  color: #ea580c;
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.service-card p {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .nav-actions {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
  .mobile-menu-close {
    display: none !important;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  position: relative;
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 50%, #EFF6FF 100%);
  overflow: hidden;
}

/* Dark Hero Variant */
.hero.hero-dark {
  background: linear-gradient(160deg, #0a0e27 0%, #111640 30%, #151b4a 50%, #1a1f52 70%, #0d1130 100%);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 39, 0.75) 0%,
    rgba(17, 22, 64, 0.6) 40%,
    rgba(21, 27, 74, 0.5) 70%,
    rgba(10, 14, 39, 0.7) 100%
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.1);
  color: #2563EB;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-dark .hero-badge {
  background: rgba(37, 99, 235, 0.2);
  color: #93C5FD;
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.hero-badge svg {
  flex-shrink: 0;
  stroke: #2563EB;
}

.hero-dark .hero-badge svg {
  stroke: #93C5FD;
}

.hero-title {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #0F172A 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3rem;
  line-height: 1.2;
}

.hero-dark .hero-title {
  background: linear-gradient(135deg, #ffffff 0%, #BFDBFE 60%, #93C5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #64748b;
}

.hero-dark .hero-description {
  color: rgba(255, 255, 255, 0.7);
}

.hero-description-secondary {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.hero-dark .hero-description-secondary {
  color: rgba(255, 255, 255, 0.55);
}

/* Flags */
.hero-flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.hero-flag {
  width: 52px;
  height: 36px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-flag:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero CTA Button */
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  margin-bottom: 2rem;
}

.btn-hero-cta:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-hero-cta .btn-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* Primary & Outline Large Buttons (used across pages) */
.btn-primary-large {
  background: #2563EB;
  color: #fff;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary-large:hover {
  background: #1E40AF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  text-decoration: none;
  color: #fff;
}

.btn-outline-large {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
}

.btn-outline-large:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: #fff;
}

.arrow-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Support Type Card Icons (tesvik-destekler, sirket-kurulumu) */
.support-type-card .type-icon,
.type-card .type-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #2563EB, #1E40AF);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}

.support-type-card .type-icon svg,
.type-card .type-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #fff;
  flex-shrink: 0;
}

/* Hero Avatars */
.hero-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.hero-avatar-stack {
  display: flex;
}

.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid #1a1f52;
  margin-left: -8px;
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-avatars-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.hero-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #2563EB, #1E40AF);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* International Section - removed */

/* Split Sections (Hakkında, Ne Yapar, Kimler Üye Olabilir) */
.split-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.split-section-1 {
  background: linear-gradient(160deg, #0f172a 0%, #0F172A 50%, #1a2332 100%);
}

.split-section-2 {
  background: linear-gradient(160deg, #0F172A 0%, #0f172a 50%, #162032 100%);
}

.split-section-3 {
  background: linear-gradient(160deg, #0f172a 0%, #1a2332 50%, #0F172A 100%);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-grid-reverse {
  direction: ltr;
}

.split-image {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 350px;
  max-height: 500px;
}

.split-text {
  color: #fff;
}

.split-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.15);
  color: #93C5FD;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.split-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #fff;
  line-height: 1.3;
}

.split-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.split-intro {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.split-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.split-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.split-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  background: #2563EB;
  border-radius: 50%;
}

.split-list li strong {
  color: #fff;
  font-weight: 700;
}

.split-summary {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
  .split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-grid-reverse .split-text {
    order: -1;
  }

  .split-text h2 {
    font-size: 1.75rem;
  }

  .split-image img {
    min-height: 250px;
    max-height: 350px;
  }
}

.flag-item,
.profile-item {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.profile-item {
  background: linear-gradient(135deg, #2563EB, #3B82F6);
}

@media (min-width: 768px) {
  .flag-item,
  .profile-item {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
}

/* Statistics Section */
.stats-section {
  background: #F8FAFC;
  padding: 4rem 0 6rem;
  color: #0f172a;
}

.stats-header {
  text-align: center;
  margin-bottom: 4rem;
}

.logo-shapes {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
}

.shape {
  width: 3rem;
  height: 3rem;
  border-radius: var(--border-radius);
}

.shape-1 {
  background: #1E40AF;
  transform: rotate(12deg);
}

.shape-2 {
  background: #2563EB;
  transform: rotate(-12deg);
  position: absolute;
  left: 1rem;
  top: -0.5rem;
}

.stats-header h2 {
  color: #0f172a;
  max-width: 800px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.stat-icon.red {
  background: #fef2f2;
  color: #dc2626;
}

.stat-icon.pink {
  background: #fdf2f8;
  color: #ec4899;
}

.stat-icon.blue-dark {
  background: #EFF6FF;
  color: #3B82F6;
}

.stat-icon svg {
  width: 2rem;
  height: 2rem;
}

.stat-number {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

/* Stacking Sections */
.stacking-container {
  position: relative;
  height: 400vh;
}

.stacking-section {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.section-1 {
  background: linear-gradient(135deg, #0d9488 0%, #1E40AF 100%);
  z-index: 1;
}

.section-2 {
  background: linear-gradient(135deg, #1d4ed8 0%, #1E40AF 100%);
  z-index: 2;
}

.section-3 {
  background: linear-gradient(135deg, #1E40AF 0%, #0d9488 100%);
  z-index: 3;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 0;
}

.section-number {
  color: #2563EB;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-content h2 {
  margin-bottom: 2rem;
}

.section-content .highlight {
  color: #2563EB;
}

.section-content p {
  font-size: 1.125rem;
  max-width: 600px;
}

.section-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

/* Professional Illustration */
.professional-illustration {
  position: relative;
  background: linear-gradient(135deg, #0d9488, #1E40AF);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-docs {
  position: absolute;
  inset: 0;
}

.doc {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

.doc-1 {
  width: 4rem;
  height: 4rem;
  top: -1rem;
  left: -1rem;
  transform: rotate(12deg);
}

.doc-2 {
  width: 5rem;
  height: 5rem;
  top: -1.5rem;
  right: -1.5rem;
  transform: rotate(-6deg);
}

.doc-3 {
  width: 3.5rem;
  height: 3.5rem;
  bottom: -1rem;
  right: -2rem;
  transform: rotate(6deg);
}

.professional-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.professional-figure .head {
  width: 12rem;
  height: 12rem;
  background: linear-gradient(to bottom, #93C5FD, #60A5FA);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  position: relative;
}

.professional-figure .body {
  width: 8rem;
  height: 10rem;
  background: #0f172a;
  border-radius: 3rem 3rem 0 0;
  position: relative;
}

/* Business Icons */
.business-icons {
  position: relative;
  background: linear-gradient(135deg, #1d4ed8, #1E40AF);
  border-radius: var(--border-radius-xl);
  padding: 4rem 2rem;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-item {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
}

.chart-icon {
  width: 5rem;
  height: 5rem;
  top: 2rem;
  left: 2rem;
  transform: rotate(12deg);
}

.award-icon {
  width: 6rem;
  height: 6rem;
  top: 4rem;
  right: 3rem;
  transform: rotate(-6deg);
}

.location-icon {
  width: 7rem;
  height: 7rem;
  bottom: 2rem;
  right: 2rem;
  border-radius: 50%;
}

.start-button {
  background: #0f172a;
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-lg);
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
}

.start-button:hover {
  transform: scale(1.05);
}

/* People Illustration */
.people-illustration {
  position: relative;
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  overflow: hidden;
}

.geometric-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1E40AF, #0d9488);
}

.geometric-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1) 0px,
    rgba(255, 255, 255, 0.1) 2rem,
    transparent 2rem,
    transparent 4rem
  );
}

.person {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.person::before {
  content: "";
  width: 8rem;
  height: 8rem;
  background: linear-gradient(to bottom, #93C5FD, #60A5FA);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.person::after {
  content: "";
  width: 6rem;
  height: 8rem;
  background: #f1f5f9;
  border-radius: 3rem 3rem 0 0;
}

@media (min-width: 1024px) {
  .section-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-2 .section-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-3 .section-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E40AF 50%, #0F172A 100%);
  padding: 6rem 0;
  position: relative;
  z-index: 35;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  color: #2563EB;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: block;
}

.services-header h2 {
  color: #2563EB;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-header p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.service-feature {
  position: relative;
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  overflow: hidden;
}

.service-feature.blue-dark {
  background: linear-gradient(135deg, #1E40AF, #3B82F6);
}

.service-feature.teal {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.service-feature.gray {
  background: linear-gradient(135deg, #475569, #1e293b);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 1rem;
  right: 1rem;
  backdrop-filter: blur(10px);
}

.service-feature h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-feature p {
  font-size: 0.875rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-feature:last-child {
    grid-column: 1 / -1;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: #f8fafc;
  padding: 6rem 0;
  position: relative;
  z-index: 35;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.testimonials-header .section-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: #2563EB;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.testimonials-header h2 {
  margin-bottom: 1.5rem;
  color: #0F172A;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.testimonials-header .highlight-blue {
  color: #2563EB;
}

.testimonials-header .highlight-blue-dark {
  color: #1E40AF;
}

.testimonials-header p {
  color: #64748b;
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  border-color: #BFDBFE;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.1);
}

.testimonial-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: #93C5FD;
}

.stars svg {
  width: 1.125rem;
  height: 1.125rem;
}

.quote-icon {
  color: #BFDBFE;
  display: flex;
}

.quote-icon svg {
  width: 2rem;
  height: 2rem;
}

.testimonial-text {
  margin-bottom: 2rem;
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.author-avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #60A5FA 0%, #60A5FA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.875rem;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.author-info h4 {
  color: #0F172A;
  font-weight: 600;
  margin-bottom: 0.125rem;
  font-size: 0.9375rem;
}

.author-info .author-title {
  color: #64748b;
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.author-info .author-company {
  color: #2563EB;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(160deg, #0f172a 0%, #0F172A 50%, #1a2332 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  z-index: 35;
}

.final-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 3rem;
}

.final-cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.4;
  margin-bottom: 1rem;
  font-weight: 700;
}

.final-cta p {
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.btn-cta-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2563EB;
  color: #ffffff;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-cta-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
  background: #1E40AF;
  text-decoration: none;
  color: #ffffff;
}

.btn-cta-action svg {
  transition: transform 0.3s;
}

.btn-cta-action:hover svg {
  transform: translateX(4px);
}

/* Index Alt Section */
.index-alt-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E40AF 50%, #0F172A 100%);
  padding: 4rem 0;
  position: relative;
  z-index: 35;
}

.index-alt-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.index-alt-image {
  max-width: 100%;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.delayed-scroll-image {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease-out;
  transform: translateY(50px);
  opacity: 0;
}

.delayed-scroll-image.visible {
  transform: translateY(0);
  opacity: 1;
}

/* World Support Section */
.world-support-section {
  position: relative;
  z-index: 35;
  padding: 5rem 0;
  background: linear-gradient(160deg, #0f172a 0%, #0F172A 50%, #162032 100%);
  overflow: hidden;
}

.world-support-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.world-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.world-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(30, 41, 59, 0.5));
}

.world-support-section .container {
  position: relative;
  z-index: 2;
}

.world-support-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.world-text-block {
  text-align: center;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 1.25rem;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.world-text-block h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 1rem 0;
  line-height: 1.3;
  font-weight: 700;
}

.world-text-block p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  margin: 0 0 2.5rem 0;
  line-height: 1.6;
}

.world-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 2rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.world-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.world-stat-number {
  color: #60A5FA;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.world-stat-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.world-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.15);
}

/* Footer */
.footer {
  background: #0F172A;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 0;
  position: relative;
  z-index: 35;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-brand p {
  margin: 1.5rem 0;
  color: #94a3b8;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
  font-weight: 600;
}

.footer-links h3 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: white;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Chat Widget */


/* Responsive Design */
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }
  .hero {
    min-height: 100vh;
    padding: 2rem 0;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-highlight {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
  .about-motto {
    font-size: 1.75rem;
  }
  .services-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .about-services-section {
    padding: 3rem 0;
  }
  .target-audience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .target-audience-section {
    padding: 3rem 0;
  }
  .stats-section {
    padding: 3rem 0 4rem;
  }
  .services-section,
  .testimonials-section,
  .final-cta {
    padding: 4rem 0;
  }
  .stacking-container {
    height: auto;
  }
  .stacking-section {
    position: relative;
    height: auto;
    min-height: 100vh;
  }
  .section-grid {
    min-height: auto;
    padding: 4rem 0;
  }
  .services-grid-new {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .world-stats-row {
    gap: 1rem;
    padding: 1.5rem 1rem;
    flex-wrap: wrap;
  }
  .world-stat-number {
    font-size: 1.5rem;
  }
  .final-cta-inner {
    padding: 2.5rem 1.5rem;
  }
  .dropdown-content {
    flex-direction: column;
  }
  .country-selection {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .country-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .country-btn {
    flex: 1;
    min-width: 120px;
  }
  
  .navbar {
    padding: 0.75rem 0;
  }
  
  .navbar .container {
    gap: 1rem;
  }
  
  .nav-brand {
    flex-shrink: 0;
  }
}

/* Loading States */
.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

/* User Menu Styles */
.user-menu {
  position: relative;
}

.user-menu-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: transparent;
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.user-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.user-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 280px;
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
  margin-top: 0.5rem;
}

.user-menu.active .user-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: #2563EB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.user-details h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.user-details p {
  margin: 0;
  font-size: 0.8rem;
  color: #94a3b8;
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.5rem 0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.875rem;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.dropdown-item-form {
  margin: 0;
}

.logout-btn {
  color: #ef4444 !important;
}

.logout-btn:hover {
  background: rgba(239, 68, 68, 0.1) !important;
  color: #fca5a5 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .user-dropdown-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.9);
  }
  
  .user-menu.active .user-dropdown-menu {
    transform: none;
  }
  
  .dropdown-header {
    text-align: center;
    border-bottom: none;
    margin-bottom: 1rem;
  }
  
  .user-info {
    flex-direction: column;
    text-align: center;
  }
  
  .dropdown-item {
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
  }
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-link:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.whatsapp-text {
  font-size: 0.875rem;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.8);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

@media (max-width: 768px) {
  .whatsapp-button {
    bottom: 1rem;
    left: 1rem;
  }
  
  .whatsapp-link {
    padding: 0.75rem 1rem;
  }
  
  .whatsapp-text {
    display: none;
  }
  
  .whatsapp-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* Mobil Giriş/Kayıt Butonları - Sadece Mobil için */
#mobile-auth-buttons {
  display: none;
}

@media (max-width: 1023px) {
  #mobile-auth-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    width: auto;
    margin-top: 1rem;
    padding: 0;
    background: none;
    border: none;
    justify-content: center;
  }

  #mobile-auth-buttons .btn {
    width: auto;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.2s ease;
    min-width: 80px;
  }

  #mobile-auth-buttons .btn-ghost {
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
  }

  #mobile-auth-buttons .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
  }

  #mobile-auth-buttons .btn-primary {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
  }

  #mobile-auth-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
  }
}

/* Hero Responsive */
@media (max-width: 768px) {
  .hero-dark .hero-title {
    font-size: 2rem;
  }

  .hero-flags {
    gap: 0.75rem;
  }

  .hero-flag {
    width: 42px;
    height: 28px;
  }

  .hero-avatars {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn-hero-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* =====================================================
   GLOBAL COLOR OVERRIDE - Bootstrap & Framework Reset
   Tüm renkleri zorla palete uygun hale getirir.
   Primary: #2563EB | Secondary: #1E40AF | Accent: #60A5FA
   Background: #F8FAFC | Text: #0F172A
   ===================================================== */
.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:visited {
  background-color: #2563EB !important;
  border-color: #2563EB !important;
  color: #fff !important;
}
.btn-primary:hover {
  background-color: #1E40AF !important;
  border-color: #1E40AF !important;
  color: #fff !important;
}
.btn-outline-primary {
  color: #2563EB !important;
  border-color: #2563EB !important;
  background-color: transparent !important;
}
.btn-outline-primary:hover,
.btn-outline-primary:active {
  background-color: #2563EB !important;
  border-color: #2563EB !important;
  color: #fff !important;
}
a.text-primary,
.text-primary {
  color: #2563EB !important;
}
.bg-primary {
  background-color: #2563EB !important;
}
.border-primary {
  border-color: #2563EB !important;
}
.link-primary {
  color: #2563EB !important;
}
.link-primary:hover {
  color: #1E40AF !important;
}
a {
  color: #2563EB;
}
a:hover {
  color: #1E40AF;
}
.btn-check:checked + .btn-primary,
.btn-check:active + .btn-primary,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
  background-color: #1E40AF !important;
  border-color: #1E40AF !important;
}
.btn-primary:focus,
.btn-primary.focus {
  box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.5) !important;
}
.form-control:focus,
.form-select:focus {
  border-color: #2563EB !important;
  box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25) !important;
}
.form-check-input:checked {
  background-color: #2563EB !important;
  border-color: #2563EB !important;
}
.form-check-input:focus {
  border-color: #60A5FA !important;
  box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25) !important;
}
.nav-link.active,
.nav-pills .nav-link.active {
  background-color: #2563EB !important;
  color: #fff !important;
}
.page-link {
  color: #2563EB !important;
}
.page-item.active .page-link {
  background-color: #2563EB !important;
  border-color: #2563EB !important;
  color: #fff !important;
}
.badge.bg-primary {
  background-color: #2563EB !important;
}
.progress-bar {
  background-color: #2563EB !important;
}
.list-group-item.active {
  background-color: #2563EB !important;
  border-color: #2563EB !important;
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: #2563EB !important;
}
::selection {
  background-color: #DBEAFE;
  color: #0F172A;
}
