/* Prof. Dr. Özgür İsmailoğlu — Main CSS */


/* ════════════════════════════════
   NAV — shared across all pages
   ════════════════════════════════ */
body > nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,169,110,0.18);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4vw; height: 72px;
  transition: box-shadow 0.3s ease;
}
body > nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.5); }

.nav-logo {
  text-decoration: none; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.nav-logo-name {
  font-family: var(--font-display,'Cormorant Garamond',serif);
  font-size: 20px; font-weight: 500; letter-spacing: 0.02em;
  color: #e8d5a3; line-height: 1.1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-logo-sub {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #7a8fa8; white-space: nowrap;
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin: 0 auto; padding: 0 1vw;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 400; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.72); text-decoration: none;
  text-transform: uppercase; padding: 8px 13px; border-radius: 2px;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li:hover > a { color: #e8d5a3; background: rgba(201,169,110,0.08); }

.nav-arrow {
  width: 10px; height: 10px; opacity: 0.5; flex-shrink: 0;
  transition: transform 0.22s, opacity 0.22s;
}
.nav-links > li:hover .nav-arrow { transform: rotate(180deg); opacity: 1; }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(9,19,36,0.99);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 4px; min-width: 250px;
  padding: 6px 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 9100;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.65); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.18s, background 0.18s, padding-left 0.18s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { color: #e8d5a3; background: rgba(201,169,110,0.07); padding-left: 24px; }
.nav-dropdown .dd-dot {
  width: 4px; height: 4px; background: #c9a96e;
  border-radius: 50%; flex-shrink: 0; opacity: 0.5;
}
.nav-dropdown a:hover .dd-dot { opacity: 1; }

/* Nav right */
.nav-right {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}
.nav-phone {
  font-family: var(--font-display,'Cormorant Garamond',serif);
  font-size: 15px; color: rgba(255,255,255,0.5);
  text-decoration: none; letter-spacing: 0.04em; white-space: nowrap;
  transition: color 0.2s;
}
.nav-phone:hover { color: #e8d5a3; }
.nav-cta-btn {
  background: #c9a96e; color: #0a1628;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  padding: 10px 20px; border-radius: 2px; white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer; display: inline-block;
}
.nav-cta-btn:hover {
  background: #e8d5a3;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,169,110,0.3);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
  padding: 6px; margin-left: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.75); border-radius: 2px;
  transition: all 0.28s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile overlay */
.mobile-nav {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(9,19,36,0.99); backdrop-filter: blur(20px);
  z-index: 8900; flex-direction: column;
  padding: 28px 6vw 40px; overflow-y: auto;
  opacity: 0; transform: translateY(-10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mob-section-title {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: #c9a96e; margin: 20px 0 10px;
  display: flex; align-items: center; gap: 10px;
}
.mob-section-title::before { content:''; width:18px; height:1px; background:#c9a96e; }
.mobile-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 0; font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.72); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav a:hover { color: #e8d5a3; padding-left: 8px; }
.mobile-nav .dd-dot { width:4px; height:4px; background:#c9a96e; border-radius:50%; flex-shrink:0; opacity:.5; }
.mob-cta { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(201,169,110,0.15); display: flex; flex-direction: column; gap: 12px; }
.mob-phone { font-family: var(--font-display,'Cormorant Garamond',serif); font-size: 26px; color: #e8d5a3; text-decoration: none; }
.mob-btn { display: block; background: #c9a96e; color: #0a1628; font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; padding: 16px; text-align: center; border-radius: 2px; }
.mob-btn:hover { background: #e8d5a3; }

/* Responsive */
@media (max-width: 1100px) { .nav-phone { display: none; } }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
}
@media (max-width: 480px) {
  body > nav { height: 64px; padding: 0 4vw; }
  .nav-logo-name { font-size: 16px; }
  .mobile-nav { top: 64px; }
}

:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --navy-light: #1e3a5f;
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --gold-pale: #f5edd9;
  --cream: #faf8f4;
  --white: #ffffff;
  --text-dark: #0a1628;
  --text-mid: #3d4f6b;
  --text-light: #7a8fa8;
  --border: rgba(201,169,110,0.2);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Fotoğraf — tam arka plan, net görünür */
.hero-bg-photo {
  position: absolute; inset: 0;
  background-image: url('hero_home_01-2.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.72;
  z-index: 0;
  pointer-events: none;
}

/* Gradient karartma — sol taraf koyu, sağa doğru fotoğraf açılıyor */
.hero-bg-pattern {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,
      rgba(10,22,40,0.92) 0%,
      rgba(10,22,40,0.78) 35%,
      rgba(10,22,40,0.42) 60%,
      rgba(10,22,40,0.08) 100%),
    linear-gradient(to bottom,
      rgba(10,22,40,0.35) 0%,
      transparent 25%,
      transparent 75%,
      rgba(10,22,40,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 6vw 80px 6vw;
  max-width: 780px;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  font-size: 11px; font-weight: 400; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 40px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(50px, 6vw, 80px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 19px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border: none; cursor: pointer;
  border-radius: 2px;
  transition: all var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,169,110,0.3);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  border-radius: 2px;
  transition: all var(--transition);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.hero-stats {
  display: flex; gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,169,110,0.15);
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 300; color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}
.scroll-text {
  font-size: 9px; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}

/* ── SECTION BASE ── */
section { padding: 100px 5vw; }

.section-label {
  font-size: 10px; font-weight: 400; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: '';
  display: block; width: 30px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300; line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── SERVICES ── */
.services-section {
  background: var(--white);
  padding: 100px 5vw;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.services-intro {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: var(--text-mid);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  gap: 16px;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { background: var(--navy); }
.service-card:hover::after { transform: scaleX(1); }

.service-number {
  font-family: var(--font-display);
  font-size: 13px; color: var(--gold);
  letter-spacing: 0.1em;
}
.service-icon {
  width: 40px; height: 40px;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.service-card:hover .service-icon { opacity: 1; }

.service-name {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
  transition: color var(--transition);
}
.service-card:hover .service-name { color: var(--gold-light); }

.service-desc {
  font-size: 15px; font-weight: 300; line-height: 1.7;
  color: var(--text-light);
  transition: color var(--transition);
}
.service-card:hover .service-desc { color: rgba(255,255,255,0.55); }

.service-keywords {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
}
.kw-pill {
  font-size: 10px; letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 3px 8px;
  border-radius: 20px;
  transition: all var(--transition);
}
.service-card:hover .kw-pill {
  border-color: rgba(201,169,110,0.5);
}

/* ── ABOUT SECTION ── */
.about-section {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.about-image-col {
  position: relative; overflow: hidden; min-height: 600px;
}
.about-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  filter: grayscale(20%);
}
.about-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.4) 0%, transparent 60%);
}
.about-credentials {
  position: absolute; bottom: 48px; left: 48px;
  display: flex; flex-direction: column; gap: 8px;
}
.credential-tag {
  display: inline-block;
  background: rgba(10,22,40,0.85);
  border-left: 2px solid var(--gold);
  padding: 8px 16px;
  font-size: 12px; letter-spacing: 0.1em;
  color: var(--gold-light);
  backdrop-filter: blur(6px);
  width: fit-content;
}

.about-content {
  padding: 80px 7vw 80px 5vw;
  display: flex; flex-direction: column; justify-content: center;
}

.about-body {
  font-size: 19px; font-weight: 300; line-height: 1.9;
  color: var(--text-mid);
  margin: 28px 0 40px;
}
.about-body strong {
  font-weight: 500; color: var(--text-dark);
}

.intl-training {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.intl-label {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 4px;
}
.intl-item {
  display: flex; align-items: baseline; gap: 12px;
}
.intl-year {
  font-family: var(--font-display);
  font-size: 15px; color: var(--gold); min-width: 36px;
}
.intl-place {
  font-size: 15px; color: var(--text-mid); line-height: 1.5;
}

/* ── WHY CHOOSE ── */
.why-section {
  background: var(--navy);
  padding: 100px 5vw;
}

.why-section .section-title { color: var(--white); }
.why-section .section-title em { color: var(--gold-light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.why-card {
  border: 1px solid rgba(201,169,110,0.1);
  padding: 40px 32px;
  border-radius: 2px;
  transition: all var(--transition);
  position: relative;
}
.why-card:hover {
  border-color: rgba(201,169,110,0.35);
  background: rgba(255,255,255,0.02);
}

.why-icon {
  width: 48px; height: 48px; margin-bottom: 24px;
  color: var(--gold); opacity: 0.85;
}
.why-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  color: var(--white); margin-bottom: 12px;
}
.why-text {
  font-size: 17px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--white);
  padding: 100px 5vw;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--cream);
  padding: 36px 32px;
  border-radius: 2px;
  border-left: 3px solid var(--gold);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 80px; line-height: 0.8;
  color: var(--gold); opacity: 0.15;
  position: absolute; top: 20px; left: 24px;
  pointer-events: none;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 24px;
  position: relative; z-index: 1;
}

.testimonial-author {
  display: flex; flex-direction: column; gap: 2px;
}
.author-name {
  font-size: 13px; font-weight: 500; color: var(--text-dark);
}
.author-detail {
  font-size: 12px; color: var(--text-light); letter-spacing: 0.05em;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 100px 5vw;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-eyebrow {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px); font-weight: 300;
  color: var(--white); line-height: 1.2; margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-sub {
  font-size: 19px; font-weight: 300; color: rgba(255,255,255,0.55);
  max-width: 500px; margin: 0 auto 48px; line-height: 1.8;
}

.cta-actions {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}

.contact-strip {
  display: flex; justify-content: center; gap: 48px;
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(201,169,110,0.1);
  flex-wrap: wrap;
}
.contact-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.contact-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.contact-value {
  font-family: var(--font-display);
  font-size: 18px; color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-value:hover { color: var(--white); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 56px 5vw 32px;
  border-top: 1px solid rgba(201,169,110,0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400; color: var(--gold-light);
}
.footer-tagline {
  font-size: 15px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
}
.footer-col-title {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-size: 12px; color: rgba(255,255,255,0.25);
}
.footer-bottom-links {
  display: flex; gap: 24px;
}
.footer-bottom-links a {
  font-size: 12px; color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }

/* ── RESPONSIVE ── */

/* Tablet geniş: 4'lü grid → 2'li */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-content { padding: 100px 4vw 80px 5vw; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet dar */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 100px 6vw 72px; min-height: 100vh; justify-content: center; }

  .scroll-indicator { display: none; }

  .about-section { grid-template-columns: 1fr; }
  .about-image-col { min-height: 320px; }
  .about-content { padding: 56px 6vw; }

  .services-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }

  body > nav .nav-links { display: none; }
  .hamburger { display: flex; }

  .contact-strip { gap: 32px; flex-wrap: wrap; justify-content: center; }

  .cta-title { font-size: clamp(28px, 5vw, 48px); }
}

/* Mobil */
@media (max-width: 640px) {
  section { padding: 64px 5vw; }
  .services-section { padding: 64px 5vw; }
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .service-card { padding: 28px 20px; }

  .hero-content { padding: 88px 5vw 56px; }
  .hero-title { font-size: clamp(36px, 9vw, 52px); }
  .hero-subtitle-name { font-size: clamp(18px, 5vw, 26px); }
  .hero-stats { gap: 20px; flex-wrap: wrap; padding-top: 28px; margin-top: 36px; }
  .stat-num { font-size: 28px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-secondary { justify-content: center; padding: 14px 20px; }

  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 16px; }

  .contact-strip { flex-direction: column; align-items: center; gap: 20px; }
  .contact-item { align-items: center; }

  .about-credentials { left: 20px; bottom: 20px; }
  .credential-tag { font-size: 11px; padding: 6px 12px; }

  .intl-training { gap: 10px; }
  .intl-item { flex-direction: column; gap: 2px; }

  .why-card { padding: 28px 20px; }
  .testimonial-card { padding: 24px 20px; }
  .testimonial-card::before { font-size: 56px; }

  .cta-section { padding: 64px 5vw; }
  .cta-title { font-size: clamp(26px, 7vw, 40px); }
  .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-actions .btn-primary,
  .cta-actions .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }

  nav { padding: 0 4vw; }
  .nav-logo-name { font-size: 15px; }
}
