:root {
  --bg: #f6faf7;
  --bg-2: #ffffff;
  --text: #0b1511;
  --muted: #53625c;
  --line: rgba(12, 25, 20, .12);
  --card: rgba(255, 255, 255, .78);
  --card-strong: rgba(255, 255, 255, .96);
  --brand: #1fd37a;
  --brand-dark: #0ba45a;
  --brand-soft: rgba(31, 211, 122, .16);
  --hero-overlay-1: rgba(246, 250, 247, .96);
  --hero-overlay-2: rgba(246, 250, 247, .80);
  --hero-overlay-3: rgba(246, 250, 247, .42);
  --surface: rgba(255, 255, 255, .82);
  --surface-solid: #ffffff;
  --shadow: 0 28px 70px rgba(13, 46, 31, .12);
  --spotlight: rgba(31, 211, 122, .20);
  --radius: 26px;
  --max: 1180px;
}

[data-theme="dark"] {
  --bg: #07100d;
  --bg-2: #0d1914;
  --text: #f4fff9;
  --muted: #a8b9b1;
  --line: rgba(255, 255, 255, .12);
  --card: rgba(255, 255, 255, .07);
  --card-strong: rgba(255, 255, 255, .11);
  --brand-soft: rgba(31, 211, 122, .18);
  --hero-overlay-1: rgba(7, 16, 13, .96);
  --hero-overlay-2: rgba(7, 16, 13, .78);
  --hero-overlay-3: rgba(7, 16, 13, .35);
  --surface: rgba(7, 16, 13, .76);
  --surface-solid: #0d1914;
  --shadow: 0 28px 80px rgba(0, 0, 0, .34);
  --spotlight: rgba(31, 211, 122, .26);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 5%, rgba(31, 211, 122, .20), transparent 34rem),
    radial-gradient(circle at 95% 35%, rgba(31, 211, 122, .12), transparent 26rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background .35s ease, color .35s ease;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(31, 211, 122, .28), rgba(31, 211, 122, .10) 38%, transparent 68%);
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
  z-index: 1;
  opacity: .72;
  mix-blend-mode: multiply;
  filter: blur(4px);
  transition: opacity .2s ease;
}

[data-theme="dark"] .cursor-glow {
  mix-blend-mode: screen;
  opacity: .55;
}

a { color: inherit; text-decoration: none; }
.topbar, .site-header, main, .site-footer { position: relative; z-index: 2; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(100% - 36px, var(--max)); margin: 0 auto; }

.topbar {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(12px);
  font-size: 13px;
  color: var(--muted);
}
.topbar-inner { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; }
.topbar-links { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar a:hover { color: var(--brand); }

.site-header {
  z-index: 20;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; }
.brand img { width: 178px; }
.main-nav { display: flex; align-items: center; gap: 26px; color: var(--muted); font-size: 14px; }
.main-nav a { position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--brand); transition: .25s ease; }
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle, .menu-toggle {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
}
.theme-toggle {
  min-height: 44px;
  padding: 5px 14px 5px 6px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-color: rgba(31, 211, 122, .38);
  background: var(--surface-solid);
  box-shadow: 0 12px 32px rgba(31, 211, 122, .12);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}
.theme-toggle:hover { transform: translateY(-2px); border-color: rgba(31, 211, 122, .70); transition: .2s ease; }
.theme-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-soft);
}
.theme-label { line-height: 1; }
[data-theme="dark"] .theme-toggle { background: rgba(255,255,255,.08); }
.menu-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 18px; height: 2px; background: var(--text); display: block; transition: .2s ease; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #80ffc0);
  color: #04120c;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(31, 211, 122, .22);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); transition: .2s ease; }
.btn-small { min-height: 42px; padding: 0 18px; font-size: 14px; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); box-shadow: none; }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

.hero { position: relative; min-height: 780px; display: grid; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--hero-overlay-1), var(--hero-overlay-2), var(--hero-overlay-3)),
    url("assets/hero-abstract.svg") center/cover no-repeat;
  transform: scale(1.02);
  z-index: -2;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 220px;
  background: linear-gradient(transparent, var(--bg)); z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; padding: 92px 0 70px; }
.eyebrow { margin: 0 0 14px; color: var(--brand); font-weight: 850; letter-spacing: .14em; text-transform: uppercase; font-size: 12px; }
.hero h1 { margin: 0; font-size: clamp(44px, 7vw, 92px); line-height: .96; letter-spacing: -.06em; max-width: 850px; }
.hero-lead { max-width: 640px; margin: 28px 0 0; color: var(--muted); font-size: 19px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.hero-panel {
  min-height: 470px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card-strong), var(--card));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.hero-panel::before { content:""; position:absolute; width:260px; height:260px; border-radius:999px; background:var(--brand-soft); right:-70px; top:-70px; filter: blur(12px); }
.panel-head { display: flex; justify-content: space-between; gap: 18px; color: var(--muted); position: relative; z-index: 1; }
.panel-head span { color: var(--brand); font-weight: 900; font-size: 30px; }
.panel-head strong { max-width: 180px; text-align: right; color: var(--text); line-height: 1.25; }
.hero-service { position: absolute; inset: 130px 30px auto; opacity: 0; transform: translateY(18px); transition: .45s ease; pointer-events: none; }
.hero-service.active { opacity: 1; transform: translateY(0); }
.hero-service small { color: var(--brand); text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.hero-service h2 { font-size: clamp(30px, 4vw, 54px); letter-spacing: -.04em; line-height: 1.02; margin: 18px 0 0; }
.slide-dots { position: absolute; left: 30px; bottom: 30px; display: flex; gap: 10px; }
.dot { width: 44px; height: 6px; border: 0; border-radius: 99px; background: rgba(255,255,255,.22); cursor: pointer; }
.dot.active { background: var(--brand); }

.section { padding: 105px 0; }
.section-head { max-width: 780px; margin-bottom: 42px; }
.section h2, .section-head h2 { margin: 0; font-size: clamp(32px, 4.8vw, 62px); line-height: 1.02; letter-spacing: -.045em; }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.intro-text { color: var(--muted); font-size: 18px; }
.intro-text p { margin-top: 0; }

.stats-section { padding-top: 20px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); }
.stat-card { padding: 34px; border-right: 1px solid var(--line); min-height: 160px; }
.stat-card:last-child { border-right: 0; }
.stat-card strong { display: block; font-size: 52px; letter-spacing: -.05em; line-height: 1; }
.stat-card strong::after { content: "+"; color: var(--brand); font-size: .55em; margin-left: 2px; }
.stat-card span { color: var(--muted); display: block; margin-top: 14px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  min-height: 330px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--card-strong), var(--card));
  position: relative;
  overflow: hidden;
  transition: .25s ease;
}
.service-card::after { content:""; position:absolute; width:140px; height:140px; right:-45px; bottom:-45px; background:var(--brand-soft); border-radius:999px; filter: blur(8px); opacity:0; transition:.25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(31,211,122,.45); }
.service-card:hover::after { opacity: 1; }
.service-card span { color: var(--brand); font-weight: 900; }
.service-card h3 { font-size: 26px; line-height: 1.12; letter-spacing: -.025em; margin: 42px 0 16px; }
.service-card p { color: var(--muted); margin: 0 0 30px; }
.service-card a { color: var(--brand); font-weight: 800; position: absolute; bottom: 28px; }

.principles { background: linear-gradient(180deg, transparent, rgba(31, 211, 122, .05), transparent); }
.principles-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: center; }
.principles-visual { min-height: 560px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(135deg, rgba(31,211,122,.18), rgba(255,255,255,.06)); position: relative; overflow: hidden; box-shadow: var(--shadow); }
.orb { position:absolute; border-radius:999px; background:var(--brand-soft); filter: blur(6px); }
.orb-one { width: 300px; height: 300px; left: -80px; top: 60px; }
.orb-two { width: 220px; height: 220px; right: -30px; bottom: 60px; }
.glass-card { position:absolute; border:1px solid var(--line); background:rgba(255,255,255,.10); backdrop-filter:blur(16px); border-radius:22px; padding:24px; }
.glass-card span { color:var(--brand); text-transform:uppercase; letter-spacing:.14em; font-size:11px; font-weight:900; display:block; margin-bottom:12px; }
.glass-card strong { font-size:28px; line-height:1.1; display:block; }
[data-theme="light"] .principles-visual .glass-card,
body[data-theme="light"] .principles-visual .glass-card {
  background: rgba(7, 18, 14, .68) !important;
  border-color: rgba(255,255,255,.18) !important;
  box-shadow: 0 20px 44px rgba(0,0,0,.24);
  color: #ffffff !important;
}
[data-theme="light"] .principles-visual .glass-card strong,
body[data-theme="light"] .principles-visual .glass-card strong {
  color: #ffffff !important;
  text-shadow: 0 6px 18px rgba(0,0,0,.45);
}
[data-theme="light"] .principles-visual .glass-card span,
body[data-theme="light"] .principles-visual .glass-card span {
  color: #5dffad !important;
}
.glass-card.big { left: 38px; right: 70px; top: 85px; min-height: 190px; display:flex; flex-direction:column; justify-content:end; }
.glass-card.small { right: 38px; bottom: 70px; max-width: 280px; }
.principles-copy > p:not(.eyebrow) { color: var(--muted); }
.accordion { margin-top: 34px; border-top: 1px solid var(--line); }
.accordion-btn { width: 100%; text-align: left; color: var(--text); background: transparent; border: 0; border-bottom: 1px solid var(--line); padding: 22px 0; font-weight: 850; cursor: pointer; display:flex; justify-content:space-between; }
.accordion-btn::after { content:"+"; color: var(--brand); }
.accordion-btn.active::after { content:"−"; }
.accordion-content { display: none; color: var(--muted); padding: 0 0 20px; }
.accordion-content.open { display: block; }
.accordion-content p { margin: 0; }

.project-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.project-card { min-height: 300px; border-radius: var(--radius); border: 1px solid var(--line); background: url("assets/pattern.svg") center/cover, linear-gradient(160deg, var(--card-strong), var(--card)); display:flex; align-items:end; padding:24px; overflow:hidden; position:relative; }
.project-card::before { content:""; position:absolute; inset:0; background:linear-gradient(transparent, rgba(0,0,0,.44)); }
[data-theme="light"] .project-card { color: #fff; }
.project-card span { position:relative; font-size:22px; font-weight:900; line-height:1.1; }
.project-card:hover { transform: translateY(-4px); transition:.2s ease; }

.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: 210px; gap: 16px; }
.gallery-item { border-radius: var(--radius); border: 1px solid var(--line); background: radial-gradient(circle at 20% 10%, rgba(31,211,122,.26), transparent 220px), var(--card); display:flex; align-items:end; padding:22px; position:relative; overflow:hidden; }
.gallery-item::after { content:""; position:absolute; inset:0; background:url("assets/event-lines.svg") center/cover; opacity:.4; }
.gallery-item span { position:relative; font-weight:900; font-size:20px; }
.item-large { grid-row: span 2; }

.contact { padding-bottom: 120px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.contact-cards { display: grid; gap: 10px; margin-top: 28px; }
.contact-cards a, .contact-cards span { padding: 16px 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--card); color: var(--muted); }
.contact-cards a:hover { color: var(--brand); border-color: rgba(31,211,122,.45); }
.contact-form { border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); padding: 28px; box-shadow: var(--shadow); }
.contact-form label { display: block; color: var(--muted); margin-bottom: 16px; font-size: 14px; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 8px; border: 1px solid var(--line); background: rgba(255,255,255,.06); color: var(--text); border-radius: 16px; padding: 14px 15px; outline: none; }
[data-theme="light"] .contact-form input, [data-theme="light"] .contact-form textarea { background: #fff; }
[data-theme="dark"] .contact-form input, [data-theme="dark"] .contact-form textarea { background: rgba(255,255,255,.06); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--brand); }
.contact-form small { display: block; color: var(--muted); margin-top: 14px; }

.site-footer { border-top: 1px solid var(--line); background: var(--surface); padding: 54px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 60px; }
.footer-grid img { width: 180px; margin-bottom: 18px; }
.footer-grid p, .footer-grid span, .footer-grid a { color: var(--muted); display: block; margin-top: 10px; }
.footer-grid strong { display:block; margin-bottom: 14px; }
.footer-grid a:hover { color: var(--brand); }
.copyright { color: var(--muted); border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px; font-size: 13px; }

.reveal { opacity: 0; transform: translateY(24px); transition: .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .2s; }


.interactive-card {
  --mx: 50%;
  --my: 50%;
  isolation: isolate;
}

.interactive-card::before {
  pointer-events: none;
}

.service-card::before,
.stat-card::before,
.project-card::after,
.gallery-item::before,
.hero-panel::after,
.principles-visual::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx) var(--my), var(--spotlight), transparent 42%);
  opacity: 0;
  transition: opacity .22s ease;
  z-index: 0;
  pointer-events: none;
}

.stat-card, .project-card, .gallery-item, .contact-form { position: relative; overflow: hidden; }
.service-card > *,
.stat-card > *,
.project-card > *,
.gallery-item > *,
.hero-panel > *,
.contact-form > * { position: relative; z-index: 1; }

.interactive-card:hover {
  transform: translateY(-7px) scale(1.015);
  border-color: rgba(31, 211, 122, .52);
  box-shadow: 0 30px 80px rgba(31, 211, 122, .16), var(--shadow);
}

.interactive-card:hover::before,
.project-card:hover::after,
.gallery-item:hover::before,
.hero-panel:hover::after,
.principles-visual:hover::before,
.contact-form:hover::before {
  opacity: 1;
}

.spotlight-group:hover .interactive-card:not(:hover) {
  opacity: .72;
  transform: scale(.985);
}


.principles-visual .orb { position: absolute; z-index: 0; }
.principles-visual .glass-card { position: absolute; z-index: 1; }

.stat-card, .project-card, .gallery-item, .hero-panel, .principles-visual, .contact-form { transition: transform .25s ease, opacity .25s ease, border-color .25s ease, box-shadow .25s ease; }

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-glow { display: none; }
  .interactive-card:hover, .spotlight-group:hover .interactive-card:not(:hover) { transform: none; opacity: 1; }
}

@media (max-width: 1020px) {
  .nav-actions .btn { display: none; }
  .main-nav { gap: 16px; }
  .hero-grid, .intro-grid, .principles-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-panel { min-height: 390px; }
  .stats-grid, .service-grid, .project-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 24px, var(--max)); }
  .topbar-inner { flex-direction: column; gap: 8px; }
  .topbar-links { gap: 10px 14px; }
  .nav-wrap { flex-wrap: wrap; }
  .brand img { width: 154px; }
  .menu-toggle { display: inline-flex; }
  .main-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 0; order: 4; border-top: 1px solid var(--line); padding-top: 10px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 0; }
  .main-nav a::after { display: none; }
  .nav-actions { margin-left: auto; }
  .theme-toggle { min-height: 42px; padding: 5px 10px 5px 5px; }
  .theme-label { display: none; }
  .hero-grid { gap: 28px; padding: 60px 0 40px; }
  .hero h1 { font-size: clamp(42px, 14vw, 62px); }
  .hero-panel { padding: 22px; min-height: 360px; }
  .hero-service { inset: 108px 22px auto; }
  .slide-dots { left: 22px; bottom: 22px; }
  .section { padding: 70px 0; }
  .stats-grid, .service-grid, .project-row, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .stat-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-card:last-child { border-bottom: 0; }
  .gallery-grid { grid-auto-rows: 190px; }
  .item-large { grid-row: span 1; }
  .principles-visual { min-height: 420px; }
  .glass-card.big { left: 18px; right: 18px; top: 50px; }
  .glass-card.small { left: 56px; right: 18px; bottom: 38px; }
  .footer-grid { gap: 24px; }
}

/* v4 gerçek görsel / video düzenlemeleri */
.hero-bg {
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--hero-overlay-1), var(--hero-overlay-2), var(--hero-overlay-3)),
    url("assets/media/conference.jpg") center/cover no-repeat;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .46;
  filter: saturate(1.12) contrast(1.08) brightness(.92);
}
[data-theme="dark"] .hero-video { opacity: .54; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(31,211,122,.22), transparent 28rem),
    radial-gradient(circle at 18% 84%, rgba(255,193,102,.14), transparent 24rem),
    linear-gradient(90deg, var(--hero-overlay-1), var(--hero-overlay-2), var(--hero-overlay-3));
}
.panel-photo {
  margin: -10px -10px 24px;
  height: 170px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
  background: var(--card);
}
.panel-photo img,
.service-media img,
.gallery-item img,
.principles-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.panel-photo::after,
.gallery-item::before,
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,.58));
  pointer-events: none;
}
.hero-service { inset: 262px 30px auto; }
.hero-service h2 { font-size: clamp(26px, 3.2vw, 42px); }

.service-card {
  min-height: 420px;
  padding: 18px 18px 72px;
}
.service-media {
  height: 168px;
  margin: 0 0 20px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
}
.service-card h3 { margin-top: 18px; }
.service-card:hover .service-media img,
.gallery-item:hover img,
.project-card:hover::before,
.panel-photo:hover img {
  transform: scale(1.055);
  transition: transform .45s ease;
}
.service-media img,
.gallery-item img,
.panel-photo img { transition: transform .45s ease; }

.principles-visual {
  background: #07100d;
}
.principles-photo {
  position: absolute;
  inset: 0;
  opacity: .58;
  filter: saturate(1.08) contrast(1.08);
}
.principles-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,12,9,.28), rgba(4,12,9,.74));
  z-index: 0;
}
.principles-visual .orb,
.principles-visual .glass-card { z-index: 2; }

.showreel { padding-top: 30px; }
.showreel-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 70px;
  align-items: center;
}
.showreel .section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}
.showreel-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 12px;
}
.showreel-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  background: #06100c;
}

.project-card {
  background: var(--project-image) center/cover no-repeat, linear-gradient(160deg, var(--card-strong), var(--card));
}
.project-card::before {
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.72));
  z-index: 0;
  transition: transform .45s ease;
}
.project-card::after { z-index: 0; }
.project-card span { z-index: 1; color: #fff; text-shadow: 0 8px 24px rgba(0,0,0,.45); }

.gallery-item {
  padding: 0;
  background: #06100c;
}
.gallery-item::after {
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.72));
  opacity: 1;
  z-index: 1;
}
.gallery-item img {
  position: absolute;
  inset: 0;
}
.gallery-item span {
  z-index: 2;
  color: #fff;
  padding: 22px;
  text-shadow: 0 8px 24px rgba(0,0,0,.5);
}
.tursab-badge {
  width: 280px !important;
  margin-top: 14px;
  margin-bottom: 0 !important;
  border-radius: 8px;
  border: 1px solid var(--line);
}

@media (max-width: 1020px) {
  .showreel-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-service { inset: 248px 22px auto; }
}

@media (max-width: 760px) {
  .hero-video { opacity: .24; }
  .panel-photo { height: 138px; margin-bottom: 18px; }
  .hero-service { inset: 228px 22px auto; }
  .service-card { min-height: auto; }
  .service-media { height: 160px; }
  .showreel { padding-top: 0; }
}

.showreel-player::-webkit-media-controls { display: none !important; }
.showreel-player { pointer-events: none; }


.premium-showreel {
  position: relative;
  min-height: 0;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}
.premium-showreel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 18% 18%, rgba(31,211,122,.16), transparent 28%), linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.12));
  pointer-events: none;
  z-index: 0;
}
.showreel-player {
  position: relative;
  z-index: 1;
}
.showreel-overlay {
  position: absolute;
  left: 34px;
  right: 34px;
  top: 34px;
  z-index: 2;
  max-width: 62%;
  color: #fff;
  pointer-events: none;
}
.showreel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 16, 13, .58);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14);
  color: #cffff0;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 14px;
}
.showreel-overlay h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.4vw, 40px);
  line-height: 1.04;
  letter-spacing: -.03em;
  text-shadow: 0 10px 30px rgba(0,0,0,.32);
}
.showreel-overlay p {
  margin: 0;
  max-width: 540px;
  color: rgba(255,255,255,.88);
  text-shadow: 0 8px 24px rgba(0,0,0,.32);
}
.showreel-brand {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(7,16,13,.52);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  pointer-events: none;
}
.showreel-logo {
  width: 132px;
  display: block;
}
.showreel-brand span {
  font-size: 13px;
  color: rgba(255,255,255,.78);
}
.showreel-player::after { display:none; }
@media (max-width: 1020px) {
  .showreel-overlay { max-width: 72%; }
}
@media (max-width: 760px) {
  .showreel-overlay { left: 24px; right: 24px; top: 24px; max-width: none; }
  .showreel-overlay h3 { font-size: 24px; }
  .showreel-overlay p { display: none; }
  .showreel-brand { left: 24px; right: 24px; bottom: 24px; justify-content: space-between; }
  .showreel-logo { width: 110px; }
}


/* v6.5: Hero panel boşluk düzeltmesi + gerçek Simple Event logo ölçüsü */
.brand img {
  width: 210px;
  height: auto;
  display: block;
}
.hero-panel {
  min-height: 0 !important;
  display: flex;
  flex-direction: column;
}
.hero-service {
  position: static !important;
  inset: auto !important;
  display: none;
  opacity: 0;
  transform: none !important;
  margin-top: 24px;
  pointer-events: none;
}
.hero-service.active {
  display: block;
  opacity: 1;
}
.hero-service small {
  display: block;
  margin-bottom: 12px;
}
.hero-service h2 {
  margin: 0 !important;
  font-size: clamp(25px, 2.6vw, 36px) !important;
  line-height: 1.08;
  max-width: 92%;
}
.slide-dots {
  position: static !important;
  inset: auto !important;
  margin-top: auto;
  padding-top: 28px;
}
.panel-photo {
  flex: 0 0 auto;
}
.panel-head {
  flex: 0 0 auto;
  margin-top: 0;
}
.site-logo.showreel-logo {
  width: 138px;
  height: auto;
}
@media (max-width: 760px) {
  .brand img { width: 178px; }
  .hero-service h2 { max-width: 100%; }
  .slide-dots { padding-top: 22px; }
}


/* v6.6 original logo sizing */
.brand .site-logo { width: 280px; height: auto; }
.site-footer .site-logo { width: 210px; height: auto; }
@media (max-width: 760px) {
  .brand .site-logo { width: 210px; }
  .site-footer .site-logo { width: 180px; }
}


/* v6.7 multi-page, original logo and showreel clean-up */
.brand .site-logo,
.brand img {
  width: 205px !important;
  max-width: 205px;
  height: auto;
  display: block;
}
.nav-wrap { padding: 12px 0; }
.main-nav a.active { color: var(--brand); }
.main-nav a.active::after { width: 100%; }
.site-footer .site-logo { width: 185px !important; height: auto; }

.welcome-hero .hero-grid { padding-top: 82px; }
.hero h1 { max-width: 860px; }
.hero-lead { line-height: 1.65; }

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.quick-card {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card-strong), var(--card));
  position: relative;
  overflow: hidden;
}
.quick-card span { color: var(--brand); font-weight: 900; }
.quick-card strong { display:block; margin: 34px 0 12px; font-size: 25px; line-height: 1.1; }
.quick-card p { color: var(--muted); margin: 0; }

.page-hero {
  position: relative;
  padding: 96px 0 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 12%, rgba(31,211,122,.13), transparent 26rem),
    linear-gradient(180deg, rgba(31,211,122,.04), transparent 55%);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 62px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 84px);
  line-height: .96;
  letter-spacing: -.055em;
}
.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
  margin: 28px 0 0;
}
.page-hero-media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 330px;
  box-shadow: var(--shadow);
  background: var(--card);
}
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.content-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 74px;
  align-items: start;
}

.clean-showreel-overlay {
  top: auto !important;
  left: 30px !important;
  right: 30px !important;
  bottom: 30px !important;
  max-width: 60% !important;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(7,16,13,.42);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
}
.clean-showreel-overlay h3 {
  font-size: clamp(22px, 2vw, 34px) !important;
  margin: 0 0 8px !important;
}
.clean-showreel-overlay p { font-size: 15px; }
.showreel-kicker,
.showreel-brand { display: none !important; }
.showreel-player { pointer-events: none; }
.showreel-player::-webkit-media-controls { display: none !important; }

@media (max-width: 1020px) {
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-grid, .content-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  .brand .site-logo,
  .brand img { width: 170px !important; max-width: 170px; }
  .site-footer .site-logo { width: 165px !important; }
  .quick-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 66px 0 36px; }
  .page-hero-media { min-height: 230px; }
  .clean-showreel-overlay { left: 20px !important; right: 20px !important; bottom: 20px !important; max-width: none !important; }
  .clean-showreel-overlay p { display: none; }
}


/* v6.8 genel site gözden geçirme: daha büyük görseller, doğal metin dengesi */
html { scroll-behavior: auto; }
.container { width: min(100% - 44px, 1240px); }
body { letter-spacing: -.005em; }
.brand .site-logo,
.brand img { width: 180px !important; max-width: 180px !important; }
.site-footer .site-logo { width: 170px !important; }
.nav-wrap { padding: 14px 0; }
.main-nav { font-size: 15px; gap: 24px; }
.hero { min-height: 760px; }
.hero-grid { grid-template-columns: 1.03fr .97fr; gap: 58px; }
.hero h1 { font-size: clamp(48px, 6.4vw, 86px); max-width: 820px; }
.hero-lead { max-width: 720px; font-size: 20px; line-height: 1.72; }
.hero-panel { padding: 28px; border-radius: 32px; }
.panel-photo { height: 240px; margin: -8px -8px 26px; border-radius: 26px; }
.hero-service { margin-top: 28px; }
.hero-service h2 { font-size: clamp(27px, 2.5vw, 38px) !important; max-width: 96%; }
.slide-dots { padding-top: 34px; }
.quick-grid { gap: 22px; }
.quick-card { min-height: 280px; padding: 30px; }
.quick-card strong { font-size: 28px; }
.quick-card p { font-size: 16px; line-height: 1.65; }
.page-hero { padding: 110px 0 64px; }
.page-hero-grid { grid-template-columns: .94fr 1.06fr; gap: 70px; }
.page-hero h1 { font-size: clamp(46px, 5.8vw, 82px); }
.page-hero p:not(.eyebrow) { font-size: 20px; line-height: 1.78; max-width: 780px; }
.page-hero-media { min-height: 460px; border-radius: 32px; }
.content-grid { grid-template-columns: .82fr 1.18fr; }
.intro-text { font-size: 19px; line-height: 1.85; }
.stats-grid { border-radius: 30px; }
.stat-card { min-height: 178px; padding: 38px; }
.service-grid { gap: 24px; }
.service-card { min-height: 545px; padding: 20px 20px 78px; border-radius: 30px; }
.service-media { height: 260px; border-radius: 24px; margin-bottom: 24px; }
.service-card h3 { font-size: 28px; margin: 18px 0 16px; }
.service-card p { font-size: 16px; line-height: 1.72; }
.principles-visual { min-height: 640px; border-radius: 32px; }
.glass-card.big { min-height: 220px; }
.showreel { padding-top: 42px; }
.showreel-grid { grid-template-columns: .72fr 1.28fr; gap: 56px; align-items: center; }
.showreel-card { padding: 16px; border-radius: 34px; }
.showreel-player { border-radius: 26px; aspect-ratio: 16 / 9; }
.clean-showreel-overlay { max-width: 70% !important; }
.clean-showreel-overlay h3 { font-size: clamp(24px, 2.15vw, 36px) !important; }
.gallery-grid { grid-template-columns: 1.25fr 1fr 1fr; grid-auto-rows: 300px; gap: 22px; }
.gallery-item { border-radius: 30px; }
.gallery-item span { padding: 28px; font-size: 24px; }
.contact-grid { grid-template-columns: .85fr 1.15fr; gap: 76px; }
.contact-copy > p:not(.eyebrow) { font-size: 19px; line-height: 1.78; }
.contact-cards { gap: 12px; }
.contact-cards a, .contact-cards span { padding: 18px 20px; border-radius: 18px; }
.contact-form { padding: 34px; border-radius: 32px; }
.contact-form input, .contact-form textarea { padding: 16px 17px; border-radius: 18px; }
.site-footer { padding: 62px 0 24px; }
.footer-grid-refined { grid-template-columns: 1.35fr .62fr .95fr .85fr; gap: 28px; align-items: start; }
.footer-grid > div { min-width: 0; }
.footer-main small { color: var(--muted); display: block; margin-top: 12px; line-height: 1.65; max-width: 430px; }
.footer-grid strong { color: var(--text); font-size: 15px; }
.footer-grid p, .footer-grid span, .footer-grid a { line-height: 1.55; }
.tursab-badge { width: 220px !important; max-width: 100%; }
@media (max-width: 1120px) {
  .hero-grid, .page-hero-grid, .content-grid, .showreel-grid, .contact-grid { grid-template-columns: 1fr; }
  .page-hero-media { min-height: 420px; }
  .footer-grid-refined { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1020px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .container { width: min(100% - 24px, 1240px); }
  .brand .site-logo, .brand img { width: 150px !important; max-width: 150px !important; }
  .site-footer .site-logo { width: 150px !important; }
  .hero { min-height: auto; }
  .hero-grid { padding: 56px 0 42px; }
  .hero h1 { font-size: clamp(42px, 13.4vw, 62px); }
  .hero-lead, .page-hero p:not(.eyebrow) { font-size: 17px; }
  .panel-photo { height: 190px; }
  .hero-panel { padding: 20px; border-radius: 26px; }
  .quick-grid, .service-grid, .gallery-grid, .footer-grid-refined { grid-template-columns: 1fr; }
  .quick-card { min-height: auto; }
  .page-hero { padding: 64px 0 36px; }
  .page-hero-media { min-height: 280px; }
  .service-card { min-height: auto; }
  .service-media { height: 210px; }
  .gallery-grid { grid-auto-rows: 240px; }
  .clean-showreel-overlay { max-width: none !important; }
  .footer-grid-refined { gap: 24px; }
}


/* v6.9 fotoğraf alanı ve metin revizesi */
:root {
  --image-radius: 32px;
}

/* Fotoğraf kartlarında boşluk oluşmasını engeller: görsel her zaman alanı doldurur */
.page-hero-media,
.panel-photo,
.service-media,
.gallery-item,
.principles-visual,
.showreel-card {
  position: relative;
  overflow: hidden;
}

.page-hero-media {
  min-height: unset !important;
  height: auto !important;
  aspect-ratio: 16 / 10;
  border-radius: var(--image-radius) !important;
  background: #07100d;
}

.page-hero-media > img,
.panel-photo > img,
.service-media > img,
.gallery-item > img,
.principles-photo {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

.page-hero-media > img,
.panel-photo > img,
.service-media > img {
  transform: scale(1.025);
}

.panel-photo {
  height: 285px !important;
  margin: -8px -8px 26px !important;
}

.hero-panel {
  min-height: 620px !important;
}

.hero-service {
  margin-top: 22px !important;
}

.service-card {
  min-height: 570px !important;
}

.service-media {
  height: 305px !important;
  background: #07100d;
}

.gallery-grid {
  grid-auto-rows: 340px !important;
}

.gallery-item.item-large {
  min-height: 700px;
}

.principles-visual {
  min-height: 680px !important;
}

.showreel-card {
  background: #07100d;
}

.showreel-player {
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
}

/* Görselin konusuna göre daha iyi kadraj */
img[src*="conference"] { object-position: center 42% !important; }
img[src*="technical"] { object-position: center 45% !important; }
img[src*="sport"] { object-position: center 45% !important; }
img[src*="translation"] { object-position: center 44% !important; }
img[src*="hotel"],
img[src*="transfer"] { object-position: center center !important; }

/* Kurumsal metin daha okunaklı aksın */
.intro-text p {
  margin-bottom: 20px;
}
.intro-text p:last-child {
  margin-bottom: 0;
}
.content-grid .intro-text {
  max-width: 820px;
}

@media (max-width: 1120px) {
  .page-hero-media { aspect-ratio: 16 / 8.8; }
  .hero-panel { min-height: 560px !important; }
  .panel-photo { height: 260px !important; }
  .service-media { height: 280px !important; }
  .gallery-item.item-large { min-height: 520px; }
}

@media (max-width: 760px) {
  .page-hero-media { aspect-ratio: 4 / 3; }
  .hero-panel { min-height: auto !important; }
  .panel-photo { height: 210px !important; }
  .service-card { min-height: auto !important; }
  .service-media { height: 230px !important; }
  .gallery-grid { grid-auto-rows: 260px !important; }
  .gallery-item.item-large { min-height: auto; }
  .principles-visual { min-height: 480px !important; }
  .showreel-player { min-height: 260px; }
}


/* v6.10 hizmet içerikleri revizesi */
.service-details-section {
  padding-top: 20px;
}
.service-detail-stack {
  display: grid;
  gap: 28px;
}
.service-detail-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(180deg, var(--card-strong), var(--card));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.service-detail-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #07100d;
}
.service-detail-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.025);
}
.service-detail-copy {
  padding: 42px 42px 42px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-detail-copy span {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 850;
  font-size: 12px;
  display: block;
  margin-bottom: 16px;
}
.service-detail-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.service-detail-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
  margin: 0 0 16px;
}
.service-detail-copy p:last-child { margin-bottom: 0; }
.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}
.service-list li {
  color: var(--text);
  background: rgba(31,211,122,.08);
  border: 1px solid rgba(31,211,122,.16);
  border-radius: 14px;
  padding: 12px 14px;
  line-height: 1.35;
}
@media (max-width: 1120px) {
  .service-detail-card { grid-template-columns: 1fr; gap: 0; }
  .service-detail-copy { padding: 34px; }
  .service-detail-media { min-height: 360px; }
}
@media (max-width: 760px) {
  .service-detail-card { border-radius: 26px; }
  .service-detail-copy { padding: 24px; }
  .service-detail-media { min-height: 260px; }
  .service-list { grid-template-columns: 1fr; }
  .service-detail-copy p { font-size: 16px; line-height: 1.72; }
}


/* v6.14 gerçek organizasyon galeri ekleri */
.real-gallery-head {
  margin-top: 58px;
  margin-bottom: 28px;
}
.real-gallery-grid {
  margin-top: 0;
}
.gallery-item.item-wide {
  grid-column: span 2;
}
.gallery-item.item-tall {
  grid-row: span 2;
}
.real-gallery-grid .gallery-item img {
  object-position: center center !important;
}
@media (max-width: 1020px) {
  .gallery-item.item-wide { grid-column: span 1; }
}
@media (max-width: 760px) {
  .gallery-item.item-tall { grid-row: span 1; }
  .real-gallery-head { margin-top: 40px; }
}


/* v6.15 gallery lightbox + watermark layout */
.page-gallery .gallery-grid.photo-gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: 20px;
}
.page-gallery .gallery-item {
  appearance: none;
  border: 1px solid var(--line);
  padding: 0;
  cursor: zoom-in;
  background: var(--card);
  border-radius: 28px;
  min-height: 100%;
}
.page-gallery .gallery-item::after,
.page-gallery .gallery-item::before {
  display: none;
}
.page-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-gallery .gallery-item.item-wide { grid-column: span 2; }
.page-gallery .gallery-item.item-tall { grid-row: span 2; }
.page-gallery .gallery-item.item-large { grid-column: span 2; grid-row: span 2; }
.page-gallery .gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
}
.page-gallery .section-head.real-gallery-head {
  max-width: 720px;
  margin-bottom: 28px;
}
.gallery-lightbox[hidden] { display:none; }
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(3, 8, 8, .92);
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  padding: 28px;
}
.lightbox-stage {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-height: calc(100vh - 80px);
}
.lightbox-image {
  max-width: min(92vw, 1380px);
  max-height: calc(100vh - 150px);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(0,0,0,.45);
  object-fit: contain;
}
.lightbox-caption {
  color: rgba(255,255,255,.82);
  text-align: center;
  font-size: 14px;
}
.lightbox-close,
.lightbox-nav {
  appearance: none;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(12px);
}
.lightbox-close {
  position: absolute;
  right: 26px;
  top: 22px;
  font-size: 34px;
  line-height: 1;
}
.lightbox-nav {
  justify-self: center;
  font-size: 40px;
  line-height: 1;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255,255,255,.16); }
@media (max-width: 1100px) {
  .page-gallery .gallery-grid.photo-gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .page-gallery .gallery-grid.photo-gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 14px; }
  .page-gallery .gallery-item.item-wide,
  .page-gallery .gallery-item.item-large { grid-column: span 2; }
  .page-gallery .gallery-item.item-tall { grid-row: span 2; }
  .gallery-lightbox { grid-template-columns: 1fr; padding: 18px; }
  .lightbox-nav { position: absolute; bottom: 24px; width: 46px; height: 46px; }
  .lightbox-prev { left: 18px; }
  .lightbox-next { right: 18px; }
  .lightbox-image { max-width: 100%; max-height: calc(100vh - 180px); }
}


/* v6.18: clean pages without intro hero */
.page-gallery main > .section.gallery:first-child,
body:has(.contact-grid) main > .section.contact:first-child {
  padding-top: clamp(84px, 8vw, 128px);
}
@supports not selector(body:has(*)) {
  .page-gallery main > .section.gallery:first-child { padding-top: clamp(84px, 8vw, 128px); }
}


/* v6.23 whatsapp + form updates */
.form-honey {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 130;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 999px;
  background: #25D366;
  color: #06140d;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 18px 45px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.14) inset;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: 0 0 auto;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow: 0 22px 54px rgba(0,0,0,.34), 0 0 0 1px rgba(255,255,255,.18) inset;
}
@media (max-width: 760px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }
  .whatsapp-float span { display: none; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}


.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid var(--line);
}
.form-status.is-loading,
.form-status.is-success,
.form-status.is-error {
  display: block;
}
.form-status.is-loading {
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.form-status.is-success {
  background: rgba(107, 187, 47, .14);
  border-color: rgba(107, 187, 47, .35);
  color: var(--text);
}
.form-status.is-error {
  background: rgba(220, 53, 69, .12);
  border-color: rgba(220, 53, 69, .28);
  color: var(--text);
}
.contact-form button[disabled] {
  opacity: .8;
  cursor: wait;
}


.redirect-note {
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  color: var(--muted);
}
.redirect-note strong {
  color: var(--brand);
}

@media (max-width: 640px) {
  .tursab-badge { width: 190px !important; }
}


/* v6.32 Kayıt Formları sayfası */
.registrations-hero {
  padding-top: 92px;
}
.registrations-head {
  max-width: 920px;
  margin-bottom: 36px;
}
.registrations-head h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 86px);
  line-height: .98;
  letter-spacing: -.055em;
}
.registrations-head > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  margin-top: 22px;
}
.registration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.registration-card {
  min-height: 350px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, var(--card-strong), var(--card));
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}
.registration-card span {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: 12px;
}
.registration-card h3 {
  margin: 28px 0 16px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.registration-card p {
  color: var(--muted);
  margin: 0 0 28px;
}
.registration-card .btn {
  margin-top: auto;
}
@media (max-width: 1020px) {
  .registration-grid { grid-template-columns: 1fr; }
  .registration-card { min-height: auto; }
}


/* v6.47: Sosyal medya ikonları ve iletişim haritası */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.social-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: var(--text) !important;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.social-pill svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}
.social-pill span {
  margin: 0 !important;
  color: inherit !important;
  line-height: 1;
  font-weight: 700;
  font-size: 13px;
}
.social-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(31,211,122,.55);
  background: rgba(31,211,122,.11);
  color: var(--brand) !important;
}
.contact-social-box {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
}
.contact-social-box strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
}
.contact-social-box .social-links { margin-top: 12px; }
.contact-map-card {
  margin-top: 34px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 22px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, var(--card-strong), var(--card));
  padding: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.map-copy {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.map-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.map-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.btn-map { width: fit-content; }
.map-frame {
  min-height: 340px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  filter: saturate(.9) contrast(.96);
}
[data-theme="dark"] .map-frame iframe { filter: saturate(.85) contrast(.95) brightness(.9); }
@media (max-width: 900px) {
  .contact-map-card { grid-template-columns: 1fr; }
  .map-copy { padding: 10px 6px 0; }
  .map-frame, .map-frame iframe { min-height: 310px; }
}
@media (max-width: 620px) {
  .social-links { gap: 8px; }
  .social-pill { padding: 9px 11px; }
  .contact-map-card { padding: 16px; border-radius: 24px; }
  .map-frame, .map-frame iframe { min-height: 280px; }
}
