/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: #0A2840;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input, textarea, select { font-family: inherit; }

/* ── CSS VARIABLES ── */
:root {
  --navy: #0A2840;
  --blue: #1357A6;
  --light-blue: #4ABFEE;
  --pale: #EBF5FD;
  --pale2: #F0F7FD;
  --pale3: #F7FBFE;
  --border: #dce8f0;
  --text-muted: #5a7a8a;
  --text-mid: #2a4a5e;
  --white: #ffffff;
  --section-pad: 80px 60px;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(10,40,64,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 60px;
  box-sizing: border-box;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 48px;
}
.nav-logo { display: flex; align-items: center; color: var(--navy); text-decoration: none; }
.nav-logo svg { height: 44px; width: auto; display: block; }
.nav-logo-main { display: none; }
.nav-logo-sub { display: none; }
.logo-text { font-family: Nunito, sans-serif; font-weight: 900; font-size: 30px; letter-spacing: 5px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 12px; color: var(--text-muted); font-weight: 400;
  letter-spacing: 0.07em; text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
/* WordPress menu compatibility */
.nav-links li { list-style: none; }
.nav-links .sub-menu { display: none; }
.nav-cta {
  background: var(--blue); color: var(--white);
  font-size: 12px; font-weight: 500; padding: 10px 22px;
  border-radius: 40px; letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s; cursor: pointer; border: none;
}
.nav-cta:hover { background: #0e4a8a; transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.nav-mobile {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0;
  background: #fff; border-bottom: 0.5px solid var(--border);
  padding: 24px 32px; z-index: 999; flex-direction: column; gap: 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 14px; font-weight: 500; color: var(--navy); letter-spacing: 0.05em; text-transform: uppercase; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding-bottom: 80px; overflow: hidden;
}

/* ── HERO SLIDESHOW ── */
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.04);
}
.hero-slide.active { opacity: 1; transform: scale(1); }

/* Slideshow dots */
.hero-dots {
  position: absolute; bottom: 28px; right: 60px; z-index: 3;
  display: flex; gap: 8px; align-items: center;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.25); cursor: pointer;
  transition: background 0.3s, width 0.3s;
  border: none; padding: 0;
}
.hero-dot.active { background: rgba(255,255,255,0.85); width: 20px; border-radius: 3px; }
.hero-dot:hover { background: rgba(255,255,255,0.55); }

/* Progress bar */
.hero-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; background: rgba(74,191,238,0.7);
  width: 0%; z-index: 3; transition: width linear;
}

/* Geometric grid overlay */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(74,191,238,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-stripe {
  position: absolute; top: 0; right: 0; bottom: 0; width: 45%;
  background: linear-gradient(160deg, rgba(19,87,166,0.0) 0%, rgba(19,87,166,0.12) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-boat {
  position: absolute; right: 8%; top: 50%;
  transform: translateY(-55%); opacity: 0.13;
  pointer-events: none; z-index: 2;
}
.hero-overlay-gradient {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    to right,
    rgba(7,24,40,0.72) 0%, rgba(7,24,40,0.55) 45%,
    rgba(7,24,40,0.18) 70%, rgba(7,24,40,0.04) 100%
  );
}
.hero-content { position: relative; z-index: 3; padding-left: 60px; max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 0.5px solid rgba(255,255,255,0.18);
  padding: 6px 14px; border-radius: 40px; margin-bottom: 24px; backdrop-filter: blur(4px);
}
.hero-badge-dot {
  width: 7px; height: 7px; background: var(--light-blue); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-badge-text {
  font-size: 10.5px; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.75); font-weight: 500;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 500; color: var(--light-blue);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px;
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 68px); font-weight: 700;
  color: #fff; line-height: 1.08; margin-bottom: 20px;
}
.hero-h1 em { font-style: italic; color: var(--light-blue); }
.hero-p {
  font-size: 15px; color: rgba(255,255,255,0.6);
  line-height: 1.75; max-width: 460px; margin-bottom: 36px; font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue); color: var(--white);
  font-size: 13.5px; font-weight: 500; padding: 13px 28px;
  border-radius: 40px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s; letter-spacing: 0.03em;
}
.btn-primary:hover { background: #0e4a8a; transform: translateY(-1px); }
.btn-ghost {
  color: rgba(255,255,255,0.75); font-size: 13.5px; font-weight: 400;
  display: flex; align-items: center; gap: 7px; cursor: pointer; transition: color 0.2s;
}
.btn-ghost:hover { color: #fff; }
.btn-ghost .arrow { transition: transform 0.2s; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.hero-stats {
  position: absolute; right: 60px; bottom: 80px; z-index: 3;
  display: flex; flex-direction: column; align-items: flex-end; gap: 20px;
}
.hero-stat { text-align: right; }
.hero-stat-n {
  font-family: 'Playfair Display', serif; font-size: 36px;
  font-weight: 700; color: #fff; line-height: 1;
}
.hero-stat-l { font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 3px; }
.hero-stat-div { width: 36px; height: 0.5px; background: rgba(255,255,255,0.15); }
.hero-scroll {
  position: absolute; bottom: 28px; left: 60px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.3); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero-scroll-line { width: 40px; height: 0.5px; background: rgba(255,255,255,0.2); }

/* ── MARQUEE STRIP ── */
.strip { background: var(--navy); padding: 15px 0; overflow: hidden; position: relative; }
.strip::before, .strip::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; }
.strip::before { left: 0; background: linear-gradient(to right, var(--navy), transparent); }
.strip::after { right: 0; background: linear-gradient(to left, var(--navy), transparent); }
.strip-track { display: flex; animation: marquee 22s linear infinite; width: max-content; }
.strip-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.strip-item { display: flex; align-items: center; gap: 12px; padding: 0 32px; flex-shrink: 0; }
.strip-dot { width: 5px; height: 5px; background: var(--light-blue); border-radius: 50%; flex-shrink: 0; }
.strip-text { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); white-space: nowrap; }

/* ── ABOUT ── */
.about { display: grid; grid-template-columns: 1fr 1fr; }
.about-left { padding: var(--section-pad); background: #fff; }
.section-eyebrow { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: 16px; }
.section-h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 40px);
  font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 20px;
}
.section-h2 em { font-style: italic; color: var(--blue); }
.about-p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.about-features { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 36px; }
.about-feat { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--text-mid); }
.feat-check { width: 20px; height: 20px; background: var(--pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white); font-size: 13px; font-weight: 500;
  padding: 12px 26px; border-radius: 40px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s; letter-spacing: 0.03em;
}
.btn-blue:hover { background: #0e4a8a; transform: translateY(-1px); }
.about-right { background: var(--pale2); display: flex; flex-direction: column; }
.about-visual {
  flex: 1; background: linear-gradient(145deg, var(--blue) 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; min-height: 280px;
}
.about-visual-boat { opacity: 0.2; }
.about-visual-label {
  position: absolute; bottom: 20px; left: 0; right: 0; text-align: center;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.about-stats-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 0.5px solid var(--border); }
.about-stat-box { padding: 28px 60px; background: #fff; border-right: 0.5px solid var(--border); }
.about-stat-box.accent { background: var(--blue); border-right: none; }
.a-stat-n { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--navy); line-height: 1; }
.about-stat-box.accent .a-stat-n { color: #fff; }
.a-stat-l { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #8aabb8; margin-top: 6px; }
.about-stat-box.accent .a-stat-l { color: rgba(255,255,255,0.55); }

/* ── SERVICES ── */
.services { padding: var(--section-pad); background: var(--pale3); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; gap: 24px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: #fff; border: 0.5px solid var(--border); border-radius: 14px;
  overflow: hidden; cursor: pointer; transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.svc-card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(19,87,166,0.12); transform: translateY(-3px); }
.svc-img { height: 180px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.svc-img.gradient-1 { background: linear-gradient(135deg, #1357A6 0%, #071828 100%); }
.svc-img.gradient-2 { background: linear-gradient(135deg, #0e4a8a 0%, #0A2840 100%); }
.svc-img.gradient-3 { background: linear-gradient(135deg, #1a6eb5 0%, #1357A6 100%); }
.svc-img.gradient-4 { background: linear-gradient(135deg, #0A2840 0%, #1357A6 100%); }
.svc-img.gradient-5 { background: linear-gradient(135deg, #071828 0%, #0e4a8a 100%); }
.svc-img.gradient-6 { background: linear-gradient(135deg, #1357A6 0%, #4ABFEE 100%); }
.svc-img svg { opacity: 0.45; }
.svc-num { position: absolute; top: 14px; left: 18px; font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: rgba(255,255,255,0.08); line-height: 1; }
.svc-body { padding: 22px 24px; }
.svc-title { font-size: 15.5px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.svc-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.svc-link { font-size: 12px; font-weight: 600; color: var(--blue); letter-spacing: 0.04em; display: flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.svc-card:hover .svc-link { gap: 9px; }

/* ── WHY + CONTACT ── */
.why-contact { display: grid; grid-template-columns: 1fr 1fr; }
.why-section { background: var(--navy); padding: var(--section-pad); }
.why-section .section-eyebrow { color: var(--light-blue); }
.why-section .section-h2 { color: #fff; margin-bottom: 10px; }
.why-section .section-h2 em { color: var(--light-blue); }
.why-sub { font-size: 13.5px; color: rgba(255,255,255,0.45); margin-bottom: 44px; line-height: 1.65; max-width: 380px; }
.why-items { display: flex; flex-direction: column; gap: 28px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--light-blue); opacity: 0.35; line-height: 1; flex-shrink: 0; width: 36px; }
.why-item-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 5px; }
.why-item-desc { font-size: 12.5px; color: rgba(255,255,255,0.42); line-height: 1.65; }
.contact-section { background: var(--blue); padding: var(--section-pad); display: flex; flex-direction: column; justify-content: center; }
.contact-section .section-eyebrow { color: rgba(255,255,255,0.5); }
.contact-h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 2.2vw, 32px); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 10px; }
.contact-h2 em { font-style: italic; color: rgba(255,255,255,0.75); }
.contact-sub { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-bottom: 32px; line-height: 1.65; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-input {
  background: rgba(255,255,255,0.1); border: 0.5px solid rgba(255,255,255,0.22);
  border-radius: 10px; padding: 13px 16px; font-size: 13.5px; color: #fff;
  outline: none; transition: border-color 0.2s, background 0.2s; width: 100%;
}
.form-input::placeholder { color: rgba(255,255,255,0.38); }
.form-input:focus { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.15); }
textarea.form-input { resize: none; height: 100px; }
.btn-white {
  background: #fff; color: var(--blue); font-size: 13.5px; font-weight: 600;
  padding: 14px; border-radius: 10px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s; letter-spacing: 0.03em;
}
.btn-white:hover { background: #f0f8ff; transform: translateY(-1px); }
#formMessage { margin-top: 4px; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--navy); padding: var(--section-pad); }
.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-header .section-eyebrow { color: var(--light-blue); text-align: center; }
.testimonials-header .section-h2 { color: #fff; }
.testimonials-header .section-h2 em { color: var(--light-blue); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 28px; transition: border-color 0.25s, background 0.25s;
}
.testi-card:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { width: 13px; height: 13px; background: #F0B429; clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.testi-text { font-size: 13.5px; color: rgba(255,255,255,0.62); line-height: 1.75; margin-bottom: 22px; font-style: italic; font-weight: 300; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: #fff; flex-shrink: 0; }
.testi-name { font-size: 13.5px; font-weight: 600; color: #fff; }
.testi-role { font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 1px; }

/* ── FOOTER ── */
footer { background: #071828; padding: 40px 60px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 32px; }
.footer-logo-main { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.75); }
.footer-logo-sub { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-top: 3px; }
.footer-tagline { font-size: 12.5px; color: rgba(255,255,255,0.3); margin-top: 14px; max-width: 220px; line-height: 1.6; }
.footer-col-title { font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links-list a { font-size: 12.5px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-links-list a:hover { color: rgba(255,255,255,0.7); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,0.35); margin-bottom: 9px; }
.footer-bottom { border-top: 0.5px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.22); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 10.5px; color: rgba(255,255,255,0.22); letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --section-pad: 60px 32px; }
  .nav { padding: 0 32px; }
  .hero-content { padding-left: 32px; }
  .hero-stats { right: 32px; bottom: 60px; }
  .hero-scroll { left: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  footer { padding: 40px 32px; }
  .footer-top { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  :root { --section-pad: 48px 24px; }
  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-content { padding-left: 24px; max-width: 100%; }
  .hero-stats { display: none; }
  .hero-scroll { left: 24px; }
  .hero-dots { right: 24px; }
  .about { grid-template-columns: 1fr; }
  .about-right { min-height: 260px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-contact { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 36px 24px; }
}

/* ── ADMIN BAR FIX ── */
.admin-bar .nav { top: 32px; }
.admin-bar .nav-mobile { top: calc(70px + 32px); }
.admin-bar .hero { min-height: calc(100vh - 32px); }
@media screen and (max-width: 782px) {
  .admin-bar .nav { top: 46px; }
  .admin-bar .nav-mobile { top: calc(70px + 46px); }
  .admin-bar .hero { min-height: calc(100vh - 46px); }
}

/* ── ADMIN BAR FIX ── */
.admin-bar .nav { top: 32px; }
.admin-bar .nav-mobile { top: calc(70px + 32px); }
.admin-bar .hero { min-height: calc(100vh - 32px); }
@media screen and (max-width: 782px) {
  .admin-bar .nav { top: 46px; }
  .admin-bar .nav-mobile { top: calc(70px + 46px); }
  .admin-bar .hero { min-height: calc(100vh - 46px); }
}

/* ── HARİTA BÖLÜMİ ── */
.map-contact {
  background: var(--navy);
  padding: 0;
  scroll-margin-top: 70px;
  position: relative;
}
.map-contact-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  min-height: 460px;
  align-items: stretch;
}
.map-info {
  padding: 48px 60px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
}
.map-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 40px;
}
.map-info-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  justify-content: center;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.map-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(74,191,238,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.map-info-text { flex: 1; }
.map-info-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
  font-weight: 500;
}
.map-info-value {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  font-weight: 400;
}
.map-info-link {
  color: var(--light-blue);
  text-decoration: none;
  transition: color 0.2s;
}
.map-info-link:hover { color: #fff; }
.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
  margin-top: 4px;
}
.map-directions-btn:hover { background: #0e4a8a; transform: translateY(-1px); color: #fff; }
.map-frame {
  position: relative;
  min-height: 460px;
  height: 100%;
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 1100px) {
  .map-contact-inner { grid-template-columns: 1fr 380px; }
  .map-info { padding: 48px 40px; }
}
@media (max-width: 768px) {
  .map-contact-inner { grid-template-columns: 1fr; }
  .map-frame { min-height: 280px; }
  .map-info { padding: 40px 28px; }
  .map-info-title { font-size: 26px; }
}
.map-divider { width: 100%; height: 0.5px; background: rgba(255,255,255,0.1); margin: 28px 0; }
.map-working-hours { display: flex; flex-direction: column; gap: 12px; }
.map-hours-title { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-weight: 500; margin-bottom: 4px; }
.map-hours-row { display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; color: rgba(255,255,255,0.65); }
.map-hours-val { color: var(--light-blue); font-weight: 500; }
.map-tagline { font-family: 'Playfair Display', serif; font-size: 15px; font-style: italic; color: rgba(255,255,255,0.2); line-height: 1.5; }

/* ── NAV FONT BÜYÜTME ── */
.nav-links a {
  font-size: 15px;
  letter-spacing: 0.07em;
  font-weight: 500;
}
.nav-cta {
  font-size: 15px !important;
}

/* ── YENİ YOStimonial SATIRI ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── HAKKIMIZDA FOTOĞRAF ── */
.about-visual-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.about-visual {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-visual-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  z-index: 2;
}
