:root {
  --primary: #004aad;
  --primary-dark: #003a86;
  --primary-light: #1a5fc4;
  --accent: #fdb813;
  --accent-dark: #e5a512;
  --text: #1f2a37;
  --muted: #6b7280;
  --bg: #f6f7fb;
  --white: #ffffff;
  --border: #e5e7eb;
  --success: #10b981;
  --shadow-sm: 0 2px 8px rgba(31, 42, 55, 0.08);
  --shadow-md: 0 8px 24px rgba(31, 42, 55, 0.12);
  --shadow-lg: 0 20px 60px rgba(31, 42, 55, 0.15);
  --shadow-xl: 0 30px 80px rgba(31, 42, 55, 0.2);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Tüm elementlerin genişliğini kontrol et */
img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

/* Tüm section'lar için genişlik kontrolü */
section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

footer {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(0.5rem, 2vw, 2rem) clamp(1rem, 4vw, 2rem);
}

/* ============================================
   HERO SECTION - MODERNLEŞTIRILMIŞ
   ============================================ */
.hero {
  position: relative;
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg, #e8f4ff 0%, #f0f7ff 50%, var(--bg) 100%);
  width: 100%;
  max-width: 100vw;
}

.hero .container {
  padding-top: 0;
  padding-bottom: 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 74, 173, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(253, 184, 19, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(77, 122, 255, 0.15), transparent 60%);
  pointer-events: none;
  opacity: 0.6;
}

/* ============================================
   NAVIGATION - GELİŞTİRİLMİŞ
   ============================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin: 0.5rem 30px 1rem -20px;
  padding: 0;
  position: relative;
  z-index: 101;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  height: clamp(120px, 20vw, 180px);
  width: auto;
  display: block;
  object-fit: contain;
  max-width: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 74, 173, 0.1));
}

.logo-text {
  display: none;
}

.logo-title {
  color: #003a86;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  text-align: left;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1000;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text);
  display: block;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-close {
  display: none;
}

/* ============================================
   HERO CONTENT - GELİŞTİRİLMİŞ
   ============================================ */
.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(2rem, 5vw, 3rem);
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.pretitle {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: rgba(0, 74, 173, 0.08);
  border-radius: 50px;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  color: var(--muted);
  max-width: 520px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-actions {
  margin: 2rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================
   BUTTONS - MODERNLEŞTİRİLMİŞ
   ============================================ */
.btn {
  border-radius: 999px;
  padding: clamp(0.85rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 1rem);
  border: 2px solid transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(0, 74, 173, 0.3);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 74, 173, 0.4);
}

.btn.primary:active {
  transform: translateY(-1px);
}

.btn.ghost {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
  position: relative;
}

.btn.ghost::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn.ghost:hover {
  color: var(--white);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 74, 173, 0.25);
}

.btn.ghost:hover::after {
  opacity: 1;
}

.btn.block {
  width: 100%;
}

/* ============================================
   HERO STATS - GELİŞTİRİLMİŞ
   ============================================ */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  color: var(--primary);
  margin-top: 2rem;
}

.hero-stats > div {
  position: relative;
  padding: 1rem 1.5rem;
  background: rgba(0, 74, 173, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(0, 74, 173, 0.1);
  transition: all 0.3s ease;
}

.hero-stats > div:hover {
  background: rgba(0, 74, 173, 0.08);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ============================================
   CARDS - MODERNLEŞTİRİLMİŞ
   ============================================ */
.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 74, 173, 0.08);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.card-title {
  margin-top: 0;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

/* ============================================
   FORMS - GELİŞTİRİLMİŞ
   ============================================ */
form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: visible;
  transform: none !important;
}

#contact-form,
#fast-apply,
.hero-card {
  transform: none !important;
}

.hero-card form {
  transform: none !important;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

input,
select,
textarea {
  border-radius: 12px;
  border: 2px solid var(--border);
  padding: 0.95rem 1.1rem;
  font: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.1);
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--primary-light);
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: -0.5rem;
}

/* ============================================
   HIGHLIGHTS SECTION - GELİŞTİRİLMİŞ
   ============================================ */
.highlights {
  padding: 4rem 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background: var(--white);
}

.highlights .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.highlights article {
  background: var(--bg);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 74, 173, 0.1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.highlights article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transition: height 0.4s ease;
}

.highlights article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 74, 173, 0.2);
}

.highlights article:hover::before {
  height: 100%;
}

.highlights h3 {
  color: var(--primary);
  margin-top: 0;
  font-size: 1.3rem;
  font-weight: 700;
}

/* ============================================
   PROCESS SECTION - GELİŞTİRİLMİŞ
   ============================================ */
.process {
  padding: 4rem 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.step {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid var(--border);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.step::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 74, 173, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.step:hover::after {
  opacity: 1;
}

.step span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 74, 173, 0.3);
  position: relative;
  z-index: 1;
}

.step h3 {
  color: var(--text);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0.75rem 0;
}

/* ============================================
   COUNTRIES SECTION - MODERNLEŞTİRİLMİŞ
   ============================================ */
.countries {
  padding: 4rem 0;
  background: var(--white);
}

.country-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
}

.country-grid button {
  border-radius: 16px;
  border: 2px solid var(--border);
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--text);
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 3.5rem;
  gap: 0.6rem;
  opacity: 1 !important;
  transform: scale(1) !important;
  position: relative;
  overflow: hidden;
}

.country-grid button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.08), rgba(253, 184, 19, 0.08));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.country-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.country-grid button:hover .country-flag {
  transform: scale(1.1) rotate(5deg);
}

.country-grid button.active,
.country-grid button:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: linear-gradient(135deg, #ffffff 0%, rgba(0, 74, 173, 0.05) 100%);
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-md);
}

.country-grid button:hover::before,
.country-grid button.active::before {
  opacity: 1;
}

.country-info {
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, #ffffff 0%, rgba(0, 74, 173, 0.02) 100%);
  box-shadow: var(--shadow-md);
}

.country-info.is-hidden {
  display: none;
}

.country-info h3 {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0;
}

/* ============================================
   ABOUT SECTION - GELİŞTİRİLMİŞ
   ============================================ */
.about {
  padding: 4rem 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}

.about .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}

.about-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  border: 2px solid rgba(0, 74, 173, 0.1);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 74, 173, 0.2);
}

.about-card ul,
.about-text ul {
  padding-left: 1.5rem;
  line-height: 1.8;
}

.about-card ul li,
.about-text ul li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 0.5rem;
}

.about-card ul li::marker,
.about-text ul li::marker {
  color: var(--primary);
}

.about-highlight {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.08) 0%, rgba(253, 184, 19, 0.08) 100%);
  border: 2px solid rgba(0, 74, 173, 0.15);
  position: relative;
  overflow: hidden;
}

.about-highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(253, 184, 19, 0.1) 0%, transparent 70%);
}

.about-highlight strong {
  color: var(--primary);
  font-weight: 700;
}

/* ============================================
   CONTACT SECTION - GELİŞTİRİLMİŞ
   ============================================ */
.contact {
  padding: 4rem 0 5rem;
  background: var(--white);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  transform: none !important;
}

.contact-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 2.5rem;
  position: relative;
  overflow: visible;
  transform: none !important;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--bg) 0%, #ffffff 100%);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid var(--border);
  position: relative;
  overflow: visible;
  transform: none !important;
}

.contact-info > div {
  padding: 1.5rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 74, 173, 0.1);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  transform: none !important;
  will-change: auto;
}

.contact-info > div:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 74, 173, 0.2);
  transform: none !important;
  /* Tüm transform'lar kaldırıldı - kayma sorununu önlemek için */
}

.contact-info h3 {
  color: var(--primary);
  font-weight: 700;
  margin-top: 0;
  font-size: 1.2rem;
}

.cta-box {
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0, 74, 173, 0.3);
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.cta-box h3 {
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.cta-box p {
  color: var(--text);
  margin: 0 0 1rem 0;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.cta-box .btn {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  font-weight: 700;
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 0.5rem;
}

.cta-box .btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.consent input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
}

.consent a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.consent a:hover {
  color: var(--primary-dark);
}

/* ============================================
   FOOTER - MODERNLEŞTİRİLMİŞ
   ============================================ */
footer {
  background: linear-gradient(135deg, #0b1727 0%, #1a2332 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 20px;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-copyright {
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-socials a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-socials a svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

.footer-socials a:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(253, 184, 19, 0.3);
}

.footer-socials a:hover::before {
  opacity: 1;
}

/* ============================================
   FLOATING SOCIALS - GELİŞTİRİLMİŞ
   ============================================ */
.floating-socials {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  transform: none;
  display: flex !important;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
  opacity: 1 !important;
  visibility: visible !important;
}

.floating-social-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  overflow: hidden;
}

.floating-social-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.floating-social-btn:hover::before {
  width: 300px;
  height: 300px;
}

.floating-social-btn svg {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 1;
}

.floating-social-btn span {
  position: relative;
  z-index: 1;
}

.floating-social-btn:hover {
  transform: translateX(-8px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.floating-social-btn.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1ebe5d 100%);
}

.floating-social-btn.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* ============================================
   ANIMATIONS - GELİŞTİRİLMİŞ
   ============================================ */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

/* Scroll Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Delay classes */
.delay-100 { transition-delay: 0.1s; }
.delay-150 { transition-delay: 0.15s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE - MOBİL UYUMLU
   ============================================ */
@media (max-width: 768px) {
  .hero .container {
    padding-top: 0;
  }

  .nav {
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
    z-index: 3;
  }
  
  .logo {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    margin: 0.5rem 0 0 0;
    padding: 0;
    position: relative;
    z-index: 1;
  }

  .logo-img {
    height: clamp(100px, 25vw, 140px);
    margin: 0px;
    padding: clamp(10px, 3vw, 20px);
  }

  .nav-toggle {
    display: flex;
    position: absolute;
    top: 0.5rem;
    right: -1rem;
    z-index: 1000000 !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0 !important;
    right: -100%;
    width: 100vw;
    max-width: 100vw;
    min-width: 100vw;
    height: 100vh !important;
    height: 100dvh !important;
    background: linear-gradient(135deg, #004aad 0%, #003a86 100%) !important;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    padding: 4rem 2rem 2rem !important;
    gap: 0.5rem;
    transition: right 0.3s ease;
    overflow: hidden !important;
    overflow-y: hidden !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: stretch;
    justify-content: flex-start;
    list-style: none !important;
    margin: 0 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  
  .nav-links.open {
    right: 0 !important;
    left: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  
  body.menu-open .nav-toggle {
    display: none !important;
  }

  body.menu-open {
    overflow: hidden;
    position: fixed;
    inset: 0;
  }

  body.menu-open .logo,
  body.menu-open .hero-content,
  body.menu-open .hero-gradient,
  body.menu-open .highlights,
  body.menu-open .countries,
  body.menu-open .about,
  body.menu-open .contact,
  body.menu-open footer,
  body.menu-open .floating-socials {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  body.menu-open .nav-links,
  body.menu-open .nav-close {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .nav-links li {
    width: 100% !important;
    list-style: none !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }

  .nav-links a {
    color: var(--white) !important;
    font-size: clamp(1.1rem, 3vw, 1.3rem) !important;
    padding: 1rem 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    border-radius: 12px;
    transition: all 0.2s ease;
    min-height: 54px;
    white-space: nowrap;
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 0.75rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
  }

  .nav-close {
    color: white !important;
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 1001 !important;
    flex-shrink: 0;
    margin: 0;
    transition: all 0.3s ease;
  }

  .nav-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
  }

  .nav-close span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.2s ease;
  }

  .nav-close span:first-child {
    transform: rotate(45deg);
  }

  .nav-close span:last-child {
    transform: rotate(-45deg);
  }

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

  .hero-stats {
    gap: 1rem;
    justify-content: center;
  }

  .hero-content {
    text-align: center;
    justify-items: center;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .floating-socials {
    bottom: 1rem;
    right: 1rem;
    gap: 0.75rem;
  }

  .floating-social-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .cta-box {
    padding: 1.5rem;
    gap: 0.75rem;
  }

  .cta-box p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .cta-box .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  .scroll-to-top {
    bottom: 1rem;
    left: 1rem;
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 769px) {
  .nav-links {
    margin-top: -80px;
  }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 74, 173, 0.3);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.scroll-to-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scroll-to-top:hover::before {
  opacity: 1;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 74, 173, 0.4);
}

.scroll-to-top:active {
  transform: translateY(-2px) scale(1.02);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
  fill: currentColor;
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 1rem;
    left: 1rem;
    width: 50px;
    height: 50px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   FORM SUCCESS POPUP
   ============================================ */
.form-success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 42, 55, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-success-popup.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 90%;
  width: 100%;
  max-width: 450px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.form-success-popup.show .popup-content {
  transform: scale(1) translateY(0);
}

.popup-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popupIconBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popupIconBounce {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.popup-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.popup-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.popup-content p {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .popup-content {
    padding: 2rem 1.5rem;
    max-width: 95%;
  }

  .popup-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }

  .popup-icon svg {
    width: 35px;
    height: 35px;
  }

  .popup-content h3 {
    font-size: 1.25rem;
  }

  .popup-content p {
    font-size: 0.9rem;
  }
}