/* ═══════════════════════════════════════════════════════════════
   MEG Müşavirlik — Main Stylesheet
   Colors: #0d1b3e (navy) | #2c7a7b (teal) | #c9a84c (gold)
═══════════════════════════════════════════════════════════════ */

:root {
  --navy:      #0d1b3e;
  --navy-light:#1a2f6e;
  --teal:      #2c7a7b;
  --teal-light:#38989a;
  --gold:      #c9a84c;
  --gold-light:#e0c06e;
  --white:     #ffffff;
  --gray-50:   #f8f9fa;
  --gray-100:  #f1f3f5;
  --gray-200:  #e9ecef;
  --gray-400:  #adb5bd;
  --gray-600:  #6c757d;
  --gray-800:  #343a40;
  --text:      #2d3748;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 20px rgba(13,27,62,0.08);
  --shadow-lg: 0 8px 40px rgba(13,27,62,0.14);
  --transition:0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.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: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}
.btn-primary   { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-light); color: #fff; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-secondary:hover { background: var(--teal); color: #fff; }
.btn-gold      { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-1px); }
.btn-white     { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--gray-100); }
.btn-whatsapp  { background: #25D366; color: #fff; font-size: 14px; padding: 9px 18px; border-radius: 50px; }
.btn-whatsapp:hover { background: #1ebe5d; color: #fff; }
.btn-sm        { padding: 8px 18px; font-size: 13px; }
.btn-lg        { padding: 16px 36px; font-size: 16px; }

/* ─── Topbar ──────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  z-index: 100;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a, .topbar span { color: rgba(255,255,255,0.8); display: inline-flex; align-items: center; gap: 6px; margin-right: 16px; }
.topbar a:hover { color: var(--gold); }
.topbar-right { display: flex; align-items: center; gap: 4px; }
.lang-switcher { display: flex; align-items: center; gap: 6px; margin-left: 8px; border-left: 1px solid rgba(255,255,255,0.2); padding-left: 12px; }
.lang-switcher a { color: rgba(255,255,255,0.6); font-weight: 600; margin: 0; padding: 2px 4px; border-radius: 3px; }
.lang-switcher a.active { color: var(--gold); }
.lang-switcher a:hover { color: var(--gold-light); }
.lang-switcher span { color: rgba(255,255,255,0.3); }

/* ─── Header ──────────────────────────────────────────────── */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 1px 0 var(--gray-200);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-meg { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--navy); letter-spacing: -0.5px; }
.logo-sub { font-size: 10px; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 2px; }

/* Main nav */
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--teal); background: var(--gray-50); }
.main-nav .fa-chevron-down { font-size: 10px; transition: transform var(--transition); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: block;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 200;
  white-space: nowrap;
}
.has-dropdown:last-child .dropdown,
.has-dropdown:nth-last-child(-n+2) .dropdown {
  left: auto;
  right: 0;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .fa-chevron-down { transform: rotate(180deg); }
.dropdown { display: block; flex-direction: column; }
.dropdown li { display: block; width: 100%; }
.dropdown li a {
  padding: 10px 14px; display: block; border-radius: var(--radius);
  font-size: 14px; color: var(--gray-800);
}
.dropdown li a:hover { background: var(--gray-50); color: var(--teal); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px; }
.hamburger span { height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.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); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 12px; }

/* ─── Page Hero ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3070 60%, var(--teal) 100%);
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 5vw, 42px); font-weight: 700; margin-bottom: 12px; position: relative; }
.page-hero p  { font-size: 17px; opacity: 0.85; max-width: 600px; margin: 0 auto; position: relative; }
.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 8px; font-size: 13px; opacity: 0.7; margin-top: 16px; position: relative; }
.breadcrumb a:hover { opacity: 1; color: var(--gold); }
.breadcrumb .sep { opacity: 0.5; }

/* ─── Section ─────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-light { background: var(--gray-50); }
.section-dark  { background: var(--navy); color: #fff; }
.section-teal  { background: var(--teal); color: #fff; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .label {
  display: inline-block;
  background: rgba(44,122,123,0.1);
  color: var(--teal);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 12px;
}
.section-dark .section-header .label  { background: rgba(201,168,76,0.15); color: var(--gold); }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 38px); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.section-dark .section-header h2 { color: #fff; }
.section-header p  { font-size: 17px; color: var(--gray-600); max-width: 600px; margin: 0 auto; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* ─── Hero Slider ─────────────────────────────────────────── */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
  max-height: 800px;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(13,27,62,0.92) 0%, rgba(13,27,62,0.55) 50%, rgba(44,122,123,0.3) 100%);
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 20px;
}
.hero-slide h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 20px;
}
.hero-slide p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; max-width: 560px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider controls */
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  z-index: 10;
  backdrop-filter: blur(4px);
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-prev:hover, .slider-next:hover { background: rgba(255,255,255,0.3); }

.slider-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all var(--transition); cursor: pointer;
}
.slider-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ─── Hero Stats Bar (hızlı erişim altında, hero grubu) ───── */
.hero-stats-bar {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.3);
  padding: 28px 0;
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-stat-card {
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-card:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-card:nth-child(2) { border-right: none; }
  .hero-stat-card { padding: 14px 12px; }
}


.hero-quick-links {
  background: var(--teal);
  padding: 18px 0;
  border-top: 1px solid rgb(255, 255, 255);
}
.hero-quick-links .container { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.hero-ql-title { color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding-right: 20px; border-right: 1px solid rgba(255,255,255,0.1); margin-right: 16px; white-space: nowrap; }
.hero-ql-list { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }
.hero-ql-item {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 8px 14px;
  color: rgba(255,255,255,0.8);
  font-size: 13px; font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}
.hero-ql-item:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.hero-ql-item i { font-size: 15px; color: var(--gold); }

/* ─── Stats ───────────────────────────────────────────────── */
.stats-section { background: #133c3d; color: #fff; padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 54px); font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 14px; opacity: 0.85; margin-top: 6px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ─── Services Grid ───────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.service-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(44,122,123,0.1), rgba(44,122,123,0.05));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--teal);
  transition: all var(--transition);
}
.service-icon .service-emoji-icon {
  font-size: 30px;
  line-height: 1;
}
.service-card:hover .service-icon { background: var(--teal); color: #fff; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.service-card .read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--teal); margin-top: 16px; }
.service-card .read-more:hover { gap: 10px; }

/* ─── About section ───────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; }
.about-image img { width: 100%; height: 500px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
}
.about-badge .num { font-size: 36px; line-height: 1; }
.about-badge .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.about-label { font-size: 12px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.about-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 38px); font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.about-content p  { color: var(--gray-600); font-size: 16px; line-height: 1.8; margin-bottom: 24px; }
.about-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.about-feature { display: flex; align-items: center; gap: 12px; }
.about-feature i { color: var(--teal); font-size: 16px; width: 20px; }
.about-feature span { font-size: 15px; font-weight: 500; color: var(--gray-800); }

/* Expertise items */
.expertise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 32px; }
.expertise-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.expertise-icon { color: var(--teal); font-size: 18px; margin-top: 2px; }
.expertise-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.expertise-item p  { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ─── Team ────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card-img { position: relative; height: 260px; overflow: hidden; background: var(--gray-50); }
.team-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 24px; transition: transform 0.5s ease; }
.team-card:hover .team-card-img img { transform: scale(1.05); }
.team-card-social {
  position: absolute; inset: 0;
  background: rgba(13,27,62,0.6);
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  opacity: 0; transition: opacity var(--transition);
}
.team-card:hover .team-card-social { opacity: 1; }
.team-card-social a { width: 40px; height: 40px; background: #fff; color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.team-card-social a:hover { background: var(--teal); color: #fff; }
.team-card-info { padding: 22px 20px; }
.team-card-info h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card-info .role { font-size: 14px; color: var(--teal); font-weight: 500; margin-bottom: 10px; }
.team-card-info p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ─── Blog Cards ──────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; overflow: hidden; background: var(--gray-100); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--gray-600); margin-bottom: 10px; }
.blog-card-meta .cat { background: rgba(44,122,123,0.1); color: var(--teal); padding: 2px 10px; border-radius: 20px; font-weight: 600; }
.blog-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-card p  { font-size: 14px; color: var(--gray-600); line-height: 1.7; flex: 1; }
.blog-card-footer { margin-top: 16px; }

/* ─── Contact ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info-items { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon { width: 48px; height: 48px; background: rgba(44,122,123,0.1); color: var(--teal); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 14px; color: var(--gray-600); }
.contact-info-item a:hover { color: var(--teal); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; margin-top: 24px; }
.map-wrap iframe { width: 100%; height: 260px; border: none; display: block; }

/* ─── Form ────────────────────────────────────────────────── */
.form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group label .req { color: #e53e3e; margin-left: 2px; }
.form-control {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text);
  transition: border-color var(--transition);
  background: #fff;
}
.form-control:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(44,122,123,0.1); }
.form-control.error { border-color: #e53e3e; }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%236c757d' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { margin-top: 8px; }

/* Alert */
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: 14px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ─── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(44,122,123,0.3), transparent 70%); }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 40px); font-weight: 700; margin-bottom: 14px; position: relative; }
.cta-banner p  { font-size: 17px; opacity: 0.85; max-width: 560px; margin: 0 auto 32px; position: relative; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }

/* ─── Pagination ──────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  color: var(--gray-800);
  transition: all var(--transition);
}
.pagination a:hover { border-color: var(--teal); color: var(--teal); }
.pagination .active { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ─── Blog detail ─────────────────────────────────────────── */
.post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.post-body { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.post-body h1 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 4vw, 36px); color: var(--navy); margin-bottom: 16px; }
.post-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--gray-600); padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); margin-bottom: 28px; }
.post-meta span { display: flex; align-items: center; gap: 6px; }
.post-featured { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; }
.post-featured img { width: 100%; max-height: 400px; object-fit: cover; }
.post-content { font-size: 16px; line-height: 1.9; color: var(--gray-800); }
.post-content h2 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--navy); margin: 32px 0 12px; }
.post-content h3 { font-size: 19px; color: var(--navy); margin: 24px 0 10px; }
.post-content p  { margin-bottom: 16px; }
.post-content ul, .post-content ol { margin: 16px 0 16px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content strong { color: var(--navy); }
.post-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.post-content table th { background: var(--navy); color: #fff; padding: 10px 14px; text-align: left; }
.post-content table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-200); }
.post-content table tr:nth-child(even) td { background: var(--gray-50); }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: #fff; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.sidebar-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.sidebar-card ul li { padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.sidebar-card ul li:last-child { border: none; padding-bottom: 0; }
.sidebar-card ul li a { font-size: 14px; display: flex; align-items: center; gap: 8px; color: var(--gray-800); }
.sidebar-card ul li a:hover { color: var(--teal); }

/* ─── HR / Students ───────────────────────────────────────── */
.positions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 56px; }
.position-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; transition: all var(--transition); }
.position-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.position-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.position-card p  { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 12px; }
.position-tag { display: inline-block; background: rgba(44,122,123,0.1); color: var(--teal); font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }

/* File input */
.file-upload-wrap { position: relative; }
.file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-label { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1.5px dashed var(--gray-400); border-radius: var(--radius); font-size: 14px; color: var(--gray-600); cursor: pointer; transition: all var(--transition); }
.file-label:hover { border-color: var(--teal); color: var(--teal); }

/* ─── Legal pages ─────────────────────────────────────────── */
.legal-content { background: #fff; border-radius: var(--radius-lg); padding: 48px 40px; box-shadow: var(--shadow); max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); }
.legal-content h3 { font-size: 17px; color: var(--navy); margin: 24px 0 8px; }
.legal-content p, .legal-content li { font-size: 15px; color: var(--gray-700); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { margin-left: 20px; }

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.8); }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.1; margin-bottom: 16px; }
.footer-logo-text .logo-meg { color: #fff; }
.footer-logo-text .logo-sub { color: rgba(255,255,255,0.5); }
.footer-desc { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a, .footer-contact span { font-size: 13px; display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold); }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-links .fa-angle-right { font-size: 11px; color: var(--teal); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 15px; transition: all var(--transition); }
.social-links a:hover { background: var(--teal); color: #fff; }
.cert-badge { display: inline-block; border: 1px solid rgba(201,168,76,0.3); color: var(--gold); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: var(--radius); margin-right: 6px; margin-bottom: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 16px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-credit { display: inline-flex; align-items: center; gap: 1px; font-size: 13px; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-credit:hover { color: #fff; }
.footer-credit--accent { color: #00bcd4; font-weight: 700; }

/* ─── WhatsApp float ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 80px; right: 24px;
  width: 52px; height: 52px;
  background: #25D366;
  color: #fff; font-size: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  z-index: 888;
  animation: pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; background: #1ebe5d; }

@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ─── Scroll top ──────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: #fff; font-size: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0; transform: translateY(10px);
  transition: all var(--transition);
  z-index: 887;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--teal); }

/* ─── Cookie banner ───────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 16px 0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cookie-banner p { font-size: 14px; margin: 0; }
.cookie-banner a { color: var(--gold); }

/* ─── Section divider ─────────────────────────────────────── */
.divider { height: 1px; background: var(--gray-200); margin: 0; }
.divider-light { height: 1px; background: rgba(255,255,255,0.08); margin: 0; }

/* ─── 404 ─────────────────────────────────────────────────── */
.error-page { text-align: center; padding: 120px 0; }
.error-page .code { font-size: 120px; font-weight: 800; color: var(--gray-100); line-height: 1; }
.error-page h2 { font-size: 28px; color: var(--navy); margin-bottom: 12px; }
.error-page p  { color: var(--gray-600); margin-bottom: 32px; }

/* ─── Utility ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.mt-0  { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.d-flex { display: flex; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .post-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: 0; right: -100%; bottom: 0;
    width: min(320px, 85vw);
    background: var(--navy);
    flex-direction: column;
    padding: 80px 24px 40px;
    transition: right var(--transition);
    overflow-y: auto;
    z-index: 98;
  }
  .main-nav.open { right: 0; box-shadow: var(--shadow-lg); }
  .main-nav > ul { flex-direction: column; gap: 0; width: 100%; }
  .main-nav a { color: rgba(255,255,255,0.85); padding: 14px 8px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .main-nav a:hover, .main-nav a.active { color: var(--gold); background: transparent; }
  .dropdown { position: static; opacity: 1; visibility: hidden; max-height: 0; overflow: hidden; transform: none; box-shadow: none; background: rgba(0,0,0,0.2); border: none; border-radius: 0; padding: 0; transition: max-height var(--transition), visibility var(--transition); }
  .has-dropdown.open .dropdown { visibility: visible; max-height: 500px; }
  .dropdown li a { color: rgba(255,255,255,0.7); }
  .hamburger { display: flex; z-index: 99; }
  .header-actions .btn-whatsapp span { display: none; }
  .topbar-left { display: none; }
}

@media (max-width: 768px) {
  /* Layout */
  .about-grid         { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid       { grid-template-columns: 1fr; }
  .expertise-grid     { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .section            { padding: 48px 0; }
  .container          { padding: 0 16px; }

  /* Hero */
  .hero-slider        { max-height: none; min-height: 480px; }
  .hero-slide         { padding: 60px 0 48px; }
  .hero-slide h1      { font-size: clamp(24px, 6vw, 40px); }
  .hero-slide p       { font-size: 15px; }
  .hero-btns          { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-btns .btn     { width: 100%; justify-content: center; }
  .slider-prev,
  .slider-next        { display: none; }
  .hero-quick-links .container { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px; }
  .hero-ql-title      { border-right: none; padding-right: 0; margin-right: 0; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.15); width: 100%; }

  /* Header / Topbar */
  .topbar             { display: none; }
  .site-header        { padding: 12px 0; }
  .header-inner       { gap: 12px; }
  .logo-text .logo-meg { font-size: 26px; }
  .header-actions     { gap: 8px; }
  .header-actions .btn-whatsapp span { display: none; }

  /* Footer */
  .footer-grid        { grid-template-columns: 1fr; gap: 28px; }
  .footer-top         { padding: 48px 0 32px; }
  .footer-logo img    { max-height: 70px; }
  .footer-bottom      { padding: 16px 0; font-size: 12px; flex-direction: column; gap: 8px; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 8px; }

  /* Cards / Forms */
  .form-card          { padding: 20px 16px; }
  .post-body          { padding: 20px 16px; }
  .legal-content      { padding: 24px 16px; }
  .contact-info       { padding: 20px 16px; }
  .section-title      { font-size: clamp(22px, 5vw, 32px); }

  /* About */
  .about-badge        { right: 0; bottom: -12px; font-size: 12px; padding: 10px 16px; }
  .about-img-wrap     { max-width: 100%; }

  /* Blog / Pratik */
  .post-header        { padding: 20px 16px 16px; }
  .post-meta          { flex-wrap: wrap; gap: 8px; }

  /* Grids */
  .services-grid      { grid-template-columns: 1fr 1fr; gap: 14px; }
  .blog-grid          { grid-template-columns: 1fr; gap: 20px; }
  .team-grid          { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stats-grid         { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pratik-grid        { grid-template-columns: 1fr; }

  /* Page hero */
  .page-hero          { padding: 40px 0 32px; }
  .page-hero h1       { font-size: clamp(22px, 5vw, 36px); }
  .breadcrumb         { font-size: 12px; }

  /* Beyanname takvimi */
  .beyanname-table th,
  .beyanname-table td { padding: 8px 10px; font-size: 13px; }
}

@media (max-width: 480px) {
  .services-grid      { grid-template-columns: 1fr; }
  .team-grid          { grid-template-columns: 1fr; }
  .stats-grid         { grid-template-columns: 1fr; }
  .blog-card          { border-radius: 10px; }
  .hero-slide h1      { font-size: 22px; }
  .hero-slide p       { font-size: 14px; }

  /* Hizmet detay */
  .hizmet-detay-grid  { grid-template-columns: 1fr !important; }
  .hizmet-sidebar     { display: none; }

  /* Pratik bilgiler filtreleri */
  .pratik-filters     { flex-direction: column; gap: 8px; }
  .pratik-filter-btn  { width: 100%; text-align: center; justify-content: center; }

  /* İletişim */
  .contact-map iframe { height: 220px; }

  /* SSS */
  .faq-question       { font-size: 14px; padding: 14px 16px; }
  .faq-answer         { padding: 0 16px 14px; font-size: 14px; }

  /* Referanslar */
  .referanslar-grid   { grid-template-columns: 1fr 1fr; gap: 10px; }
  .referans-item      { padding: 14px 10px; min-height: 70px; }
}

/* ─── Topbar Login Buttons (SMMM & Mükellef) ──────────────── */
.topbar-login-btns { display: flex; align-items: center; gap: 8px; margin-left: 8px; border-left: 1px solid rgba(255,255,255,0.2); padding-left: 12px; }
.topbar-login-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9) !important;
  margin-right: 0 !important;
  white-space: nowrap;
  transition: all 0.2s;
}
.topbar-login-btn:hover { background: rgba(255,255,255,0.15) !important; color: #fff !important; border-color: rgba(255,255,255,0.6); }
.topbar-smmm { background: rgba(201,168,76,0.2); border-color: rgba(201,168,76,0.5); color: var(--gold) !important; }
.topbar-smmm:hover { background: rgba(201,168,76,0.3) !important; color: var(--gold) !important; }
.topbar-mukellef { background: rgba(44,122,123,0.2); border-color: rgba(44,122,123,0.5); }

/* ─── Nav Language Switcher (WhatsApp yerine) ─────────────── */
.nav-lang-switcher { display: flex; align-items: center; gap: 2px; }
.nav-lang-btn {
  font-size: 13px; font-weight: 700;
  color: var(--navy);
  padding: 5px 9px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-lang-btn:hover, .nav-lang-btn.active { background: var(--teal); color: #fff !important; }
.nav-lang-sep { font-size: 12px; color: var(--gray-400); }

/* ════════════════════════════════════════════════
   MEGA MENÜ  –  3 Sütunlu Cascade Dropdown
   ════════════════════════════════════════════════ */

/* Nav'daki hizmetler li'si */
.has-megamenu { position: static !important; }
.site-header .container { position: relative; }

/* ── Ana Dropdown Kutusu (1. sütun) ── */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  border: 1px solid #e5e7eb;
  padding: 8px 0;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  /* transform animasyonu kaldırıldı – sadece opacity/visibility */
  transition: opacity 0.15s, visibility 0.15s;
}

/* Kapanmayı engelleyen köprü */
.has-megamenu > a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 100%;
  width: 100%; height: 12px;
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}

.has-megamenu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

/* ── 1. Sütun: Kategori başlığı (üstte link) ── */
.mega-header-row {
  padding: 6px 16px 8px;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 4px;
}
.mega-header-row a {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mega-header-row a:hover { color: var(--navy); }

/* ── 1. Sütun: Her li ── */
.mega-l1 { list-style: none; margin: 0; padding: 0; }
.mega-l1 > li { position: relative; }
.mega-l1 > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: #1f2937;
  white-space: nowrap;
  transition: background 0.1s, color 0.1s;
}
.mega-l1 > li > a i { font-size: 9px; color: #9ca3af; }
.mega-l1 > li > a:hover,
.mega-l1 > li:hover > a {
  background: #f9fafb;
  color: var(--teal);
}
.mega-l1 > li > a:hover i,
.mega-l1 > li:hover > a i { color: var(--teal); }

/* ── 2. Sütun ── */
.mega-l2-wrap {
  display: none;
  position: absolute;
  top: -9px; /* header offset */
  left: 100%;
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  border: 1px solid #e5e7eb;
  padding: 8px 0;
  z-index: 510;
}
/* Köprü: sağa geçişte kapanmasın */
.mega-l1 > li::after {
  content: '';
  position: absolute;
  top: 0; right: -12px;
  width: 12px; height: 100%;
}
.mega-l2-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: -12px;
  width: 12px; height: 100%;
}
.mega-l1 > li:hover .mega-l2-wrap { display: block; }

.mega-l2 { list-style: none; margin: 0; padding: 0; }
.mega-l2 > li { position: relative; }
.mega-l2 > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 400;
  color: #374151;
  white-space: nowrap;
  transition: background 0.1s, color 0.1s;
}
.mega-l2 > li > a i { font-size: 9px; color: #9ca3af; }
.mega-l2 > li > a:hover,
.mega-l2 > li:hover > a {
  background: #f9fafb;
  color: var(--teal);
}
.mega-l2 > li > a:hover i,
.mega-l2 > li:hover > a i { color: var(--teal); }

/* ── 3. Sütun ── */
.mega-l3-wrap {
  display: none;
  position: absolute;
  top: 0; left: 100%;
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  border: 1px solid #e5e7eb;
  padding: 8px 0;
  z-index: 520;
}
.mega-l2 > li::after {
  content: '';
  position: absolute;
  top: 0; right: -12px;
  width: 12px; height: 100%;
}
.mega-l3-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: -12px;
  width: 12px; height: 100%;
}
.mega-l2 > li:hover .mega-l3-wrap { display: block; }

.mega-l3 { list-style: none; margin: 0; padding: 0; }
.mega-l3 > li > a {
  display: block;
  padding: 7px 16px;
  font-size: 13px;
  color: #374151;
  white-space: nowrap;
  transition: background 0.1s, color 0.1s;
}
.mega-l3 > li > a:hover { background: #f9fafb; color: var(--teal); }

/* ── Mobil ── */
@media (max-width: 900px) {
  .has-megamenu > a::after,
  .mega-menu::before,
  .mega-l1 > li::after,
  .mega-l2-wrap::before,
  .mega-l2 > li::after,
  .mega-l3-wrap::before { display: none; }

  .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
    background: rgba(0,0,0,0.18);
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s, visibility 0.3s;
  }
  .has-megamenu.open .mega-menu { visibility: visible; max-height: 1200px; }
  .mega-header-row { display: none; }

  .mega-l1 > li > a,
  .mega-l2 > li > a,
  .mega-l3 > li > a {
    color: rgba(255,255,255,0.8);
    background: transparent;
  }
  .mega-l1 > li > a { padding-left: 16px; font-size: 13px; }
  .mega-l2 > li > a { padding-left: 28px; font-size: 12px; }
  .mega-l3 > li > a { padding-left: 40px; font-size: 12px; color: rgba(255,255,255,0.6); }

  .mega-l2-wrap,
  .mega-l3-wrap {
    display: block;
    position: static;
    min-width: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0;
  }
}
