/* =========================================
   BETÜL KARAKAŞ – PREMIUM STYLE
   Palet: Lacivert · Açık Mavi · Altın
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- RENK SİSTEMİ ---------- */
:root {
  /* Ana renkler */
  --navy:         #0B1426;   /* koyu lacivert – hero & dark bloklar */
  --navy-2:       #112040;   /* ikinci lacivert */
  --navy-3:       #1A2F5A;   /* üçüncü lacivert (card bg) */
  --blue:         #4F8EF7;   /* açık mavi – primary accent */
  --blue-2:       #3B7CE8;   /* daha doygun mavi */
  --blue-light:   #93C5FD;   /* çok açık mavi */
  --blue-pale:    #EEF4FF;   /* soluk mavi bg */
  --gold:         #C9902A;   /* altın – buton & vurgu */
  --gold-light:   #E8B84B;   /* açık altın */
  --gold-pale:    #FEF9EE;   /* soluk altın bg */
  --gold-bright:  #F5C842;   /* parlak altın */

  /* Nötr */
  --dark:         #0B1426;
  --dark-2:       #1A2847;
  --body:         #374151;
  --muted:        #6B7280;
  --border:       #E5E7EB;
  --border-dark:  rgba(255,255,255,.10);
  --bg-light:     #F7F9FC;
  --white:        #FFFFFF;

  /* Gölgeler */
  --shadow-sm:    0 1px 4px rgba(11,20,38,.08);
  --shadow-md:    0 4px 24px rgba(11,20,38,.12);
  --shadow-lg:    0 10px 48px rgba(11,20,38,.18);
  --shadow-blue:  0 4px 24px rgba(79,142,247,.30);
  --shadow-gold:  0 4px 24px rgba(201,144,42,.35);

  /* Layout */
  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --transition:   0.3s cubic-bezier(.4,0,.2,1);
  --max-w:        1200px;
  --section-py:   100px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', system-ui, sans-serif; font-size: 16px; line-height: 1.7; color: var(--body); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- TİPOGRAFİ ---------- */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.22; color: var(--dark); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { line-height: 1.8; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-label--gold {
  color: var(--gold);
  background: var(--gold-pale);
}
.section-label--light {
  color: var(--blue-light);
  background: rgba(255,255,255,.10);
}
.section-title { color: var(--dark); margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--muted); max-width: 620px; margin: 0 auto; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section { padding: var(--section-py) 0; }
.section--light { background: var(--bg-light); }
.section--navy  { background: var(--navy);  color: var(--white); }
.section--navy2 { background: var(--navy-2); color: var(--white); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ---------- BUTONLAR ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap; letter-spacing: .01em;
}
/* Altın – ana CTA */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #E8B84B);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
  border-color: transparent;
}
.btn-gold:hover { background: linear-gradient(135deg, #B8820A, var(--gold)); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,144,42,.45); }

/* Mavi – ikincil */
.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover { background: var(--blue-2); transform: translateY(-2px); }

/* Outline beyaz (koyu bg üzerinde) */
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.40);
}
.btn-outline:hover { background: rgba(255,255,255,.10); border-color: var(--white); }

/* Outline lacivert (açık bg üzerinde) */
.btn-outline-navy {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-outline-blue {
  background: transparent; color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--white); padding: 13px 0;
  box-shadow: 0 2px 24px rgba(11,20,38,.10);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
  color: var(--white); transition: color var(--transition);
}
.nav-logo span { color: var(--gold-light); }
.navbar.scrolled .nav-logo { color: var(--navy); }
.navbar.scrolled .nav-logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.85);
  padding: 7px 12px; border-radius: var(--radius-sm); transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.10); }
.navbar.scrolled .nav-links a { color: var(--body); }
.navbar.scrolled .nav-links a:hover { color: var(--blue); background: var(--blue-pale); }

.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: .65rem; opacity: .7; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  padding-top: 10px; min-width: 250px; z-index: 10;
}
.dropdown-inner {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 8px;
  border: 1px solid var(--border);
}
.has-dropdown .dropdown.open { display: block; }
.dropdown a { display: block; padding: 10px 16px; font-size: .87rem; color: var(--body) !important; border-radius: var(--radius-sm); }
.dropdown a:hover { background: var(--blue-pale); color: var(--blue) !important; }

.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 9px 20px !important; border-radius: var(--radius-md) !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .hamburger span { background: var(--navy); }
.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); }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; padding: 100px 28px 40px; overflow-y: auto;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.05rem; font-weight: 500; color: var(--dark);
  padding: 14px 0; border-bottom: 1px solid var(--border); display: block;
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu .mobile-cta { margin-top: 24px; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--navy);
}
.hero > .container { display: flex; justify-content: flex-end; }
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(130deg, #050D1C 0%, #0B1426 50%, #0E1B35 100%);
}
.hero-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to left,
    rgba(5,13,28,.95) 0%,
    rgba(5,13,28,.80) 35%,
    rgba(5,13,28,.40) 65%,
    rgba(5,13,28,.10) 100%
  );
}
.hero-content { position: relative; z-index: 2; max-width: 620px; margin-left: auto; text-align: left; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(79,142,247,.12); border: 1px solid rgba(79,142,247,.25);
  border-radius: 100px; padding: 7px 18px; font-size: .8rem;
  color: var(--blue-light); margin-bottom: 28px; backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 7px; height: 7px; background: var(--gold-bright);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(1.4); }
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold-bright); }
.hero-subtitle { font-size: 1.08rem; color: rgba(255,255,255,.70); margin-bottom: 40px; line-height: 1.8; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.35); font-size: .72rem; letter-spacing: .1em;
  animation: bounceY 2s infinite;
}
.hero-scroll::after { content: ''; width: 1px; height: 36px; background: rgba(255,255,255,.2); }
@keyframes bounceY {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ---------- STATS BAR ---------- */
.stats-bar { background: var(--navy-2); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center; color: var(--white); padding: 36px 20px;
  position: relative; border-right: 1px solid var(--border-dark);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700;
  line-height: 1; color: var(--gold-bright); margin-bottom: 6px;
}
.stat-label { font-size: .8rem; color: rgba(255,255,255,.60); letter-spacing: .04em; }

/* ---------- HİZMET KARTLARI ---------- */
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px; border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card--premium {
  background: linear-gradient(145deg, var(--navy), var(--navy-3));
  border-color: rgba(201,144,42,.30);
  color: var(--white);
}
.service-card--premium::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}
.service-card--premium h3 { color: var(--white); }
.service-card--premium p  { color: rgba(255,255,255,.70); }
.service-icon {
  width: 52px; height: 52px; background: var(--blue-pale); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 1.4rem;
}
.service-icon--gold { background: var(--gold-pale); }
.service-icon--dark { background: rgba(79,142,247,.15); }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: .88rem; font-weight: 600; color: var(--blue); }
.service-link--gold { color: var(--gold-bright); }
.service-link:hover { gap: 10px; }

/* ---------- PREMIUM BLOK (ana sayfada) ---------- */
.premium-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 50%, #1A2F5A 100%);
  border-radius: var(--radius-lg); padding: 56px;
  border: 1px solid rgba(201,144,42,.20);
  position: relative; overflow: hidden;
}
.premium-block::before {
  content: '';position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,144,42,.12) 0%, transparent 70%);
}
.premium-block::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(79,142,247,.08) 0%, transparent 70%);
}
.premium-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,144,42,.15); border: 1px solid rgba(201,144,42,.30);
  border-radius: 100px; padding: 6px 16px;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-bright); margin-bottom: 20px;
}
.premium-block h2 { color: var(--white); margin-bottom: 16px; }
.premium-block p  { color: rgba(255,255,255,.72); }
.premium-list { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 32px; }
.premium-list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,.85); font-size: .92rem;
}
.premium-list li::before {
  content: '✦'; color: var(--gold-bright); flex-shrink: 0; font-size: .75rem; margin-top: 4px;
}

/* ---------- HAKKIMDA ---------- */
.about-image-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-image-wrap img { width: 100%; height: 540px; object-fit: cover; object-position: top; border-radius: var(--radius-lg); }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); padding: 20px 26px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold); text-align: center;
}
.about-badge-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge-txt { font-size: .75rem; font-weight: 600; margin-top: 2px; opacity: .85; }
.about-text h2 { margin-bottom: 20px; }
.about-text p  { color: var(--body); margin-bottom: 16px; }
.about-list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-size: .95rem; }
.about-list li::before {
  content: '✓'; width: 22px; height: 22px;
  background: var(--blue); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 700; flex-shrink: 0;
}

/* ---------- NEDEN BU EĞİTİM ---------- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--border); transition: var(--transition);
}
.why-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.why-icon {
  width: 44px; height: 44px; background: var(--blue-pale); color: var(--blue);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.why-item h4 { color: var(--dark); margin-bottom: 3px; }
.why-item p  { font-size: .87rem; color: var(--muted); }

/* ---------- YORUMLARtestimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 30px; box-shadow: var(--shadow-md);
  border: 1px solid var(--border); position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 18px; right: 26px;
  font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--blue-pale);
  line-height: 1; pointer-events: none;
}
.testimonial-text { font-size: .93rem; color: var(--body); line-height: 1.85; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--dark); font-size: .92rem; }
.testimonial-role { font-size: .78rem; color: var(--muted); }
.stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }

/* ---------- BLOG ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { border-radius: var(--radius-md); overflow: hidden; background: var(--white); border: 1px solid var(--border); transition: var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card-img {
  height: 200px; background: linear-gradient(135deg, var(--blue-pale), #DBEAFE);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; gap: 12px; font-size: .78rem; color: var(--muted); margin-bottom: 10px; }
.blog-tag { background: var(--blue-pale); color: var(--blue); padding: 2px 10px; border-radius: 100px; font-weight: 600; }
.blog-card h3 { font-size: 1.02rem; margin-bottom: 10px; color: var(--dark); }
.blog-card p  { font-size: .87rem; color: var(--muted); }
.blog-read-more { display: inline-flex; align-items: center; gap: 4px; margin-top: 14px; font-size: .84rem; font-weight: 600; color: var(--blue); }

/* ---------- SSS ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; padding: 20px 24px; background: var(--white);
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  font-size: .96rem; font-weight: 600; color: var(--dark);
  display: flex; justify-content: space-between; align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-question.active { background: var(--blue-pale); color: var(--blue); }
.faq-icon {
  width: 26px; height: 26px; border: 2px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; transition: transform var(--transition), border-color var(--transition);
}
.faq-question.active .faq-icon { transform: rotate(45deg); border-color: var(--blue); color: var(--blue); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--body); font-size: .94rem; line-height: 1.8; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, #1A2F5A 100%);
  padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,144,42,.12) 0%, transparent 70%);
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -60px; left: -40px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(79,142,247,.10) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.72); margin-bottom: 36px; font-size: 1.05rem; }
.cta-banner .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- FOOTER ---------- */
footer { background: var(--navy); color: rgba(255,255,255,.70); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 56px; }
.footer-brand .logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.footer-brand .logo span { color: var(--gold-bright); }
.footer-brand p { font-size: .88rem; line-height: 1.75; max-width: 280px; color: rgba(255,255,255,.55); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.social-btn {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.07); border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: var(--transition); color: rgba(255,255,255,.65);
}
.social-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.social-btn--whatsapp:hover { background: #25D366; border-color: #25D366; }
.social-btn--instagram:hover { background: linear-gradient(135deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; }
.social-btn--youtube:hover { background: #FF0000; border-color: #FF0000; }
.footer-col h5 {
  font-family: 'Inter', sans-serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul li a { font-size: .87rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact p { font-size: .87rem; display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; color: rgba(255,255,255,.55); }
.footer-contact p a { color: rgba(255,255,255,.70); }
.footer-contact p a:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid var(--border-dark); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.30); flex-wrap: wrap; gap: 10px;
}

/* ---------- WHATSAPP ---------- */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45); transition: var(--transition);
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,.6); }
.whatsapp-btn svg { width: 30px; height: 30px; fill: white; }
.whatsapp-tooltip {
  position: absolute; right: 70px; background: var(--navy);
  color: var(--white); font-size: .78rem; font-weight: 600;
  padding: 6px 12px; border-radius: var(--radius-sm); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ---------- SAYFA HERO ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 70%, #162240 100%);
  padding: 156px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,142,247,.12) 0%, transparent 65%);
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.65); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 20px; font-size: .8rem; color: rgba(255,255,255,.45);
}
.breadcrumb a { color: rgba(255,255,255,.60); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.30); }

/* ---------- İLETİŞİM FORMU ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px; background: var(--bg-light); border-radius: var(--radius-md);
  margin-bottom: 14px; border: 1px solid var(--border); transition: var(--transition);
}
.contact-info-item:hover { border-color: var(--blue); }
.contact-info-icon {
  width: 44px; height: 44px; background: var(--blue-pale); color: var(--blue);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-item h4 { color: var(--dark); margin-bottom: 2px; font-size: .93rem; }
.contact-info-item p, .contact-info-item a { font-size: .88rem; color: var(--muted); }
.contact-info-item a:hover { color: var(--blue); }
.form-wrap {
  background: var(--white); border-radius: var(--radius-lg); padding: 48px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .84rem; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: .94rem;
  color: var(--dark); background: var(--bg-light); transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); background: var(--white);
  box-shadow: 0 0 0 4px rgba(79,142,247,.10);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-success {
  display: none; text-align: center; padding: 32px;
  color: #065F46; background: #ECFDF5; border-radius: var(--radius-md); border: 1px solid #A7F3D0;
}

/* ---------- EĞİTİM DETAY ---------- */
.training-content { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.training-sidebar {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 30px;
  border: 1px solid var(--border); box-shadow: var(--shadow-md); position: sticky; top: 100px;
}
.training-sidebar h3 { color: var(--dark); margin-bottom: 20px; }
.training-price { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.sidebar-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.sidebar-detail { display: flex; justify-content: space-between; font-size: .88rem; margin-bottom: 10px; color: var(--body); }
.sidebar-detail strong { color: var(--dark); }
.content-section h2 { font-size: 1.65rem; margin: 36px 0 16px; color: var(--dark); }
.content-section h2:first-child { margin-top: 0; }
.content-section p  { margin-bottom: 16px; }
.content-list { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.content-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; color: var(--body); }
.content-list li::before {
  content: ''; width: 20px; height: 20px; background: var(--blue); border-radius: 50%;
  flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* ---------- BLOG DETAY ---------- */
.blog-post-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.blog-post h2 { font-size: 1.5rem; margin: 32px 0 12px; }
.blog-post p  { margin-bottom: 18px; }
.blog-sidebar-card { background: var(--blue-pale); border-radius: var(--radius-md); padding: 28px; text-align: center; margin-bottom: 24px; }
.blog-sidebar-card h4 { color: var(--blue); margin-bottom: 10px; }
.blog-sidebar-card p  { font-size: .88rem; color: var(--body); margin-bottom: 18px; }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }

/* ---------- RESPONSİF ---------- */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .training-content { grid-template-columns: 1fr; }
  .training-sidebar { position: static; }
  .blog-post-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --section-py: 60px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.65rem; }
  .grid-2, .grid-3, .testimonials-grid, .blog-grid, .contact-grid, .why-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-image { width: 100%; height: 100%; opacity: 1; }
  .hero-overlay { background: rgba(5,13,28,.78); }
  .hero > .container { justify-content: center; }
  .hero-content { margin-left: 0; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .about-badge { position: static; margin-top: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .premium-block { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .btn-lg { padding: 15px 22px; font-size: .93rem; }
  .whatsapp-btn { bottom: 20px; right: 20px; }
}
