/* ============================================================
   AKDENIZ SAĞLIK DANIŞMANLIĞI — WEBSITE STYLES
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --navy:        #0B1F4B;
  --navy-dark:   #071430;
  --navy-mid:    #112358;
  --navy-light:  #1A3A6E;
  --teal:        #1BAAAA;
  --teal-light:  #22C9C9;
  --teal-pale:   rgba(27,170,170,0.12);
  --gold:        #C9A060;
  --gold-light:  #E8C07A;
  --gold-pale:   rgba(201,160,96,0.12);
  --white:       #FFFFFF;
  --gray-50:     #F0F4FA;
  --gray-100:    #E2E8F4;
  --gray-300:    #B8C4D8;
  --gray-500:    #6B7DA0;
  --gray-700:    #334D7A;

  --font-h: 'Montserrat', sans-serif;
  --font-b: 'Inter', sans-serif;

  --sh-sm:  0 2px 12px rgba(11,31,75,.08);
  --sh-md:  0 8px 32px rgba(11,31,75,.12);
  --sh-lg:  0 20px 60px rgba(11,31,75,.18);
  --sh-xl:  0 32px 80px rgba(11,31,75,.22);

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  40px;
  --ease:  cubic-bezier(.4,0,.2,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--gray-50);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Simulate 80-85% zoom on desktop screens for more side margins as requested */
@media (min-width: 1200px) {
  body {
    zoom: 0.85;
  }
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- RTL SUPPORT ---------- */
[dir="rtl"] .nav-logo { margin-right: 0; margin-left: auto; }
[dir="rtl"] .nav-right { margin-left: 0; margin-right: auto; }
[dir="rtl"] .hero-actions { flex-direction: row-reverse; }
[dir="rtl"] .step-arrow { transform: scaleX(-1); }
[dir="rtl"] .hero-wave { transform: scaleX(-1); }
[dir="rtl"] .form-row { direction: rtl; }

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(201,160,96,.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,160,96,.55);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- SECTION HEADERS ---------- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.section-header h2, h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}
.text-white { color: var(--white) !important; }
.text-white-70 { color: rgba(255,255,255,.75) !important; }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-right {
  transform: translateX(40px);
}
.reveal-right.visible { transform: translateX(0); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,20,48,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .4s var(--ease);
}
#navbar.scrolled {
  background: rgba(7,20,48,.98);
  box-shadow: var(--sh-md);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,170,170,.4);
}
.logo-img {
  height: 84px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}
.logo-img-footer {
  height: 180px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: all .25s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* --- Language Selector --- */
.lang-selector { position: relative; }
.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 7px 12px;
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
}
.lang-current:hover { background: rgba(255,255,255,.14); }
.lang-arrow {
  font-size: .65rem;
  opacity: .7;
  transition: transform .25s;
}
.lang-selector.open .lang-arrow { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xl);
  min-width: 160px;
  overflow: hidden;
  display: none;
  border: 1px solid var(--gray-100);
}
.lang-selector.open .lang-dropdown { display: block; }
.lang-dropdown li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: background .2s;
}
.lang-dropdown li:hover { background: var(--gray-50); }
.lang-dropdown li.active { color: var(--teal); font-weight: 700; }

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,170,170,.18) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,160,96,.12) 0%, transparent 70%);
  bottom: 0; left: -120px;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,170,170,.15);
  border: 1px solid rgba(27,170,170,.3);
  color: var(--teal-light);
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-text h1 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}
.trust-item i { color: var(--teal); font-size: .9rem; }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.hero-main-icon {
  position: relative;
  width: 200px; height: 200px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem;
  color: var(--teal);
  border: 2px solid rgba(27,170,170,.3);
  box-shadow: var(--sh-xl);
}
.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(27,170,170,.25);
  animation: pulse-expand 2.5s infinite;
}
.pulse-ring { width: 240px; height: 240px; }
.pulse-ring-2 { width: 300px; height: 300px; animation-delay: 1.25s; }
@keyframes pulse-expand {
  0%   { transform: scale(.9); opacity: .7; }
  100% { transform: scale(1.15); opacity: 0; }
}
.hero-card-float i { color: var(--gold); font-size: 1.1rem; }
.hero-card-float {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 30px;
  padding: 8px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 600; color: var(--white);
  box-shadow: var(--sh-md);
  white-space: nowrap;
  z-index: 10;
  /* Centering the cards precisely before orbiting */
  margin-top: -18px; 
  margin-left: -70px;
  
  /* Circle configuration */
  --radius: 240px;
  animation: wave-float 2s ease-in-out infinite alternate;
}

.hc-1 { --angle: 0deg; animation-delay: 0s; }
.hc-2 { --angle: 30deg; animation-delay: -0.2s; }
.hc-3 { --angle: 60deg; animation-delay: -0.4s; }
.hc-4 { --angle: 90deg; animation-delay: -0.6s; }
.hc-5 { --angle: 120deg; animation-delay: -0.8s; }
.hc-6 { --angle: 150deg; animation-delay: -1.0s; }
.hc-7 { --angle: 180deg; animation-delay: -1.2s; }
.hc-8 { --angle: 210deg; animation-delay: -1.4s; }
.hc-9 { --angle: 240deg; animation-delay: -1.6s; }
.hc-10 { --angle: 270deg; animation-delay: -1.8s; }
.hc-11 { --angle: 300deg; animation-delay: -2.0s; }
.hc-12 { --angle: 330deg; animation-delay: -2.2s; }

@keyframes wave-float {
  0% { transform: rotate(var(--angle)) translateX(var(--radius)) rotate(calc(-1 * var(--angle))) translateY(0px); }
  100% { transform: rotate(var(--angle)) translateX(var(--radius)) rotate(calc(-1 * var(--angle))) translateY(-15px); }
}

@media (max-width: 992px) {
  .hero-card-float { --radius: 170px; }
}

@media (max-width: 576px) {
  .hero-card-float { --radius: 120px; }
  .hero-card-float span { display: none; } /* Show only icons on small mobile so they fit in circle */
  .hero-card-float { padding: 10px; margin-left: -18px; border-radius: 50%; }
}

/* Wave */
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  box-shadow: var(--sh-md);
  position: relative; z-index: 2;
}
.stats-grid {
  display: flex;
  align-items: center;
  padding: 32px 24px;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 8px;
}
.stat-num {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num::after { content: '+'; font-size: .7em; color: var(--gold); }
.stat-label { font-size: .85rem; color: var(--gray-500); font-weight: 500; }
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-100);
  margin: 0 8px;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 100px 0;
  background: var(--gray-50);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 140px;
}
.service-card:hover {
  transform: translateY(-6px);
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(11,31,75,.15);
  border-color: var(--navy);
}
.service-card h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0;
  line-height: 1.4;
  transition: color 0.4s var(--ease);
}
.service-card:hover h3 {
  color: var(--white);
}
.service-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-top: 0;
}
.service-card.active {
  background: var(--navy);
  border-color: var(--navy);
}
.service-card.active h3 {
  color: var(--white);
}
.service-card.active p {
  max-height: 180px;
  opacity: 1;
  margin-top: 16px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-works {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.how-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
}
.how-works .container { position: relative; z-index: 1; }
.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.step-card {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 40px 32px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  transition: all .35s var(--ease);
}
.step-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.step-num {
  font-family: var(--font-h);
  font-size: 3.5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(201,160,96,.4);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 8px 32px rgba(27,170,170,.4);
}
.step-card h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-card p { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.6; }
.step-arrow {
  font-size: 1.5rem;
  color: rgba(201,160,96,.5);
  padding: 0 16px;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-card-main {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-xl);
}
.about-card-main::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(27,170,170,.12);
}
.about-icon-big {
  font-size: 4rem;
  color: var(--teal);
  margin-bottom: 32px;
  display: block;
  position: relative;
}
.about-card-inner { position: relative; }
.about-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}
.about-badge-item:last-child { border-bottom: none; }
.about-badge-item i { color: var(--gold); font-size: .85rem; }
.about-text .section-tag { display: inline-block; }
.about-text h2 { color: var(--navy); margin: 12px 0 20px; }
.about-text > p {
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 32px;
  font-size: 1rem;
}
.about-mv { display: flex; flex-direction: column; gap: 16px; }
.mv-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-100);
}
.mv-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--teal-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 1.1rem;
}
.mv-card h4 { font-family: var(--font-h); font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.mv-card p { font-size: .85rem; color: var(--gray-500); line-height: 1.5; }

/* ============================================================
   APPLY / FORM
   ============================================================ */
.apply-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.apply-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0D2A5E 100%);
}
.apply-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.apply-info h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }
.apply-info > p { margin-bottom: 36px; }
.apply-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.apply-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
}
.apply-feature i { color: var(--gold); font-size: 1rem; width: 20px; }
.apply-contact { display: flex; flex-direction: column; gap: 12px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: color .2s;
}
.contact-link:hover { color: var(--gold); }
.contact-link i { color: var(--teal); width: 18px; }

/* Form Card */
.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  box-shadow: 0 24px 48px rgba(11,26,48,.1);
}
.form-title {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  font-family: var(--font-h);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-100);
  border-radius: 12px;
  font-family: var(--font-b);
  font-size: .9rem;
  color: var(--navy);
  background: var(--gray-50);
  transition: all .25s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,170,170,.12);
}
.form-group input.error,
.form-group select.error { border-color: #E53E3E; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236B7DA0'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  cursor: pointer;
}
.form-group select[multiple] {
  background-image: none;
  min-height: 120px;
  padding: 8px;
}
.form-group select[multiple] option {
  padding: 8px;
  border-radius: 4px;
}
.field-error { font-size: .75rem; color: #E53E3E; margin-top: 4px; display: block; min-height: 16px; }

/* Selection Group & Pills */
.selection-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.selection-pill {
  cursor: pointer;
  margin: 0;
}
.selection-pill input {
  display: none;
}
.selection-pill span {
  display: inline-block;
  padding: 12px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 30px;
  font-size: 0.9rem;
  color: var(--navy);
  transition: all 0.2s var(--ease);
  user-select: none;
}
.selection-pill input:checked + span {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.selection-pill:hover span {
  border-color: var(--teal);
}
/* Checkbox */
.form-check { margin-bottom: 24px; }
.form-group label.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: var(--font-b);
  font-weight: 400;
  margin-bottom: 0;
  font-size: .85rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid var(--gray-300);
  border-radius: 6px;
  transition: all .2s;
  position: relative;
}
.checkbox-label input:checked ~ .checkbox-custom {
  background: var(--teal);
  border-color: var(--teal);
}
.checkbox-label input:checked ~ .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 6px; height: 10px;
  border: 2px solid var(--white);
  border-top: none; border-left: none;
  transform: rotate(45deg);
}

/* Submit button loader */
#submitBtn { position: relative; overflow: hidden; }
#submitBtn.loading { pointer-events: none; opacity: .8; }
#submitBtn.loading::after {
  content: '';
  position: absolute;
  right: 20px;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Success State */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success.hidden { display: none; }
.success-icon {
  font-size: 4rem;
  color: var(--teal);
  margin-bottom: 20px;
  animation: successPop .5s var(--ease);
}
@keyframes successPop { from{transform:scale(0)} to{transform:scale(1)} }
.form-success h3 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.form-success p { color: var(--gray-500); margin-bottom: 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 4px;
}
.footer-logo .logo-main { font-size: .95rem; }
.footer-logo .logo-sub { font-size: .65rem; }
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: all .25s;
}
.social-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-h);
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.contact-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .875rem; color: rgba(255,255,255,.55);
}
.contact-list li i { color: var(--teal); width: 16px; font-size: .85rem; }
.contact-list li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-bottom a { font-size: .8rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(201,160,96,.5);
  opacity: 0;
  transform: translateY(16px);
  transition: all .3s var(--ease);
  pointer-events: none;
  z-index: 900;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy-dark); flex-direction: column; padding: 20px; gap: 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero-content { text-align: center; padding: 40px 0 80px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .stats-grid { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1 1 45%; }
  .steps-grid { flex-direction: column; align-items: stretch; gap: 16px; }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; }
  .apply-grid { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .form-card { padding: 24px 16px; }
  .btn-lg { padding: 13px 24px; font-size: .9rem; }
}

/* ============================================================
   TEAM SECTION (KADROMUZ)
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.team-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--gray-100);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-xl);
  border-color: transparent;
}
.team-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--gray-100);
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.team-card:hover .team-img img {
  transform: scale(1.08);
}
.team-info {
  padding: 24px;
  text-align: center;
  position: relative;
  background: var(--white);
  z-index: 2;
}
.team-info h3 {
  font-family: var(--font-h);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 800;
}
.team-info p {
  font-size: .95rem;
  color: var(--teal);
  font-weight: 600;
}


/* ============================================================
   APPLICATION FORM
   ============================================================ */
.apply-section {
  position: relative;
  padding: 100px 0;
  background: var(--navy-dark);
  overflow: hidden;
}
.apply-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--teal-pale) 0%, transparent 50%);
  opacity: 0.1;
  pointer-events: none;
}
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.apply-info {
  color: var(--white);
}
.apply-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}
.apply-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.apply-feature i {
  color: var(--gold);
}
.apply-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 600;
  transition: color .3s;
}
.contact-link:hover {
  color: var(--gold);
}
.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--sh-lg);
}
.form-title {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: var(--gray-50);
  font-family: var(--font-p);
  font-size: 0.95rem;
  color: var(--navy);
  transition: all .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,170,170,.12);
}
.btn-full {
  width: 100%;
  justify-content: center;
}
.form-group input.error,
.form-group select.error { border-color: #E53E3E; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236B7DA0'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  cursor: pointer;
}
.field-error { font-size: .75rem; color: #E53E3E; margin-top: 4px; display: block; min-height: 16px; }

/* Checkbox */
.form-check { margin-bottom: 24px; }
.form-group label.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: var(--font-b);
  font-weight: 400;
  margin-bottom: 0;
  font-size: .85rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid var(--gray-300);
  border-radius: 6px;
  transition: all .2s;
  position: relative;
}
.checkbox-label input:checked ~ .checkbox-custom {
  background: var(--teal);
  border-color: var(--teal);
}
.checkbox-label input:checked ~ .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 6px; height: 10px;
  border: 2px solid var(--white);
  border-top: none; border-left: none;
  transform: rotate(45deg);
}

/* Submit button loader */
#submitBtn { position: relative; overflow: hidden; }
#submitBtn.loading { pointer-events: none; opacity: .8; }
#submitBtn.loading::after {
  content: '';
  position: absolute;
  right: 20px;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Success State */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success.hidden { display: none; }
.success-icon {
  font-size: 4rem;
  color: var(--teal);
  margin-bottom: 20px;
  animation: successPop .5s var(--ease);
}
@keyframes successPop { from{transform:scale(0)} to{transform:scale(1)} }
.form-success h3 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.form-success p { color: var(--gray-500); margin-bottom: 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 4px;
}
.footer-logo .logo-main { font-size: .95rem; }
.footer-logo .logo-sub { font-size: .65rem; }
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: all .25s;
}
.social-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-h);
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.contact-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .875rem; color: rgba(255,255,255,.55);
}
.contact-list li i { color: var(--teal); width: 16px; font-size: .85rem; }
.contact-list li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-bottom a { font-size: .8rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(201,160,96,.5);
  opacity: 0;
  transform: translateY(16px);
  transition: all .3s var(--ease);
  pointer-events: none;
  z-index: 900;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy-dark); flex-direction: column; padding: 20px; gap: 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero-content { text-align: center; padding: 40px 0 80px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .stats-grid { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1 1 45%; }
  .steps-grid { flex-direction: column; align-items: stretch; gap: 16px; }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; }
  .apply-grid { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .form-card { padding: 24px 16px; }
  .btn-lg { padding: 13px 24px; font-size: .9rem; }
}

/* --- Testimonials Section --- */
.testimonials {
  background-color: var(--teal-pale);
  padding: 80px 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 30px;
  box-shadow: var(--sh-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}
.quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  color: var(--gold-pale);
  opacity: 0.6;
}
.testi-stars {
  color: var(--gold);
  font-size: 1.2rem;
}
.testi-text {
  font-size: 1rem;
  color: var(--navy-light);
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.testi-author {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 10px;
}
