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

:root {
  --primary: #1a365d;
  --primary-light: #2d4a6f;
  --primary-muted: #8ea3b8;
  --primary-dark: #0f1f32;
  --accent: #2c5282;
  --cream: #f0f4f8;
  --white: #ffffff;
  --dark: #1a1a1a;
  --gray: #64748b;
  --light-gray: #f1f5f9;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(15, 31, 50, 0.08);
  --shadow-hover: 0 12px 40px rgba(15, 31, 50, 0.14);
  --radius: 16px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
#header.scrolled .header-inner { padding: 12px 32px; }

.topbar {
  background: #e11d48;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 80px;
  overflow: hidden;
}
#header.scrolled .topbar { max-height: 0; opacity: 0; }
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-text { letter-spacing: 0.5px; opacity: 0.95; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.topbar-link:hover { opacity: 1; }

.logo-text { display: flex; flex-direction: column; line-height: 1.15; gap: 2px; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.logo-tagline {
  font-size: 10px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
}
#header.scrolled .logo-name { color: var(--primary-dark); }
#header.scrolled .logo-tagline { color: var(--gray); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.3px;
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e11d48;
  border-radius: 1px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
#header.scrolled .nav-links a { color: var(--dark); }
#header.scrolled .nav-links a:hover { color: #e11d48; }

.nav-cta {
  background: #e11d48 !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.35);
}
.nav-cta:hover { transform: translateY(-2px); background: #be123c !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}
#header.scrolled .hamburger {
  color: #e11d48;
  background: rgba(225, 29, 72, 0.08);
}
.hamburger__line {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  margin-left: -10px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease, top 0.3s ease;
}
.hamburger__line:nth-child(1) { top: 17px; }
.hamburger__line:nth-child(2) { top: 22px; }
.hamburger__line:nth-child(3) { top: 27px; }
.hamburger.is-active .hamburger__line:nth-child(1) { top: 22px; transform: rotate(45deg); }
.hamburger.is-active .hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active .hamburger__line:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.35s step-end;
}
.mobile-nav.open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s step-start;
}
.mobile-nav__panel {
  position: absolute;
  inset: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: max(16px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
  background: linear-gradient(165deg, var(--primary-dark) 0%, #152a40 45%, var(--primary) 100%);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open .mobile-nav__panel { opacity: 1; transform: scale(1); }
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-nav__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 700;
  color: var(--white);
}
.mobile-nav-close {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 10px 16px;
}
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 40px;
  overflow-y: auto;
}
.mobile-nav__links a {
  font-size: clamp(17px, 4.5vw, 22px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  padding: 16px 20px;
  border-radius: 14px;
  text-align: center;
}
.mobile-nav__links a:hover { background: rgba(255, 255, 255, 0.08); color: var(--white); }
.mobile-nav__cta {
  margin-top: 16px;
  font-weight: 600 !important;
  background: #e11d48 !important;
  color: var(--white) !important;
  box-shadow: 0 8px 28px rgba(225, 29, 72, 0.4);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background: var(--primary-dark); overflow: hidden; }
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 3; text-align: center; padding: 0 24px; max-width: 820px; margin: 0 auto; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6.2vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
}
.hero-title span {
  display: block;
  margin-top: 10px;
  font-size: clamp(22px, 3.4vw, 34px);
  font-style: italic;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
}
.hero-subtitle {
  font-size: clamp(15px, 1.85vw, 17px);
  color: rgba(255, 255, 255, 0.97);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: #e11d48;
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(225, 29, 72, 0.38);
  transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); background: #be123c; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.stats-bar { background: #e11d48; padding: 0; }
@keyframes svcMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.svc-ticker {
  overflow: hidden;
  padding: 14px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.svc-ticker-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: svcMarquee 40s linear infinite;
}
.svc-ticker-track:hover { animation-play-state: paused; }
.svc-ticker-group {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.svc-ticker-item {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 22px);
  color: rgba(255, 255, 255, 0.88);
  padding: 0 4px;
}
.svc-ticker-sep {
  margin: 0 20px;
  font-weight: 300;
  font-style: normal;
  font-family: 'Poppins', sans-serif;
  color: rgba(255, 255, 255, 0.25);
}
@media (prefers-reduced-motion: reduce) {
  .svc-ticker-track { animation: none; }
  .hero-scroll { animation: none; }
}

.section { padding: 100px 0; }
.section-alt { background: var(--white); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 720px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  background: rgba(44, 82, 130, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(44, 82, 130, 0.22);
}
.section-tag--tr { text-transform: none; letter-spacing: 0.12em; font-size: 11px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title span { color: var(--primary-light); font-style: italic; }
.section-desc {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-hover);
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #e11d48;
  color: var(--white);
  padding: 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(225, 29, 72, 0.38);
}
.about-badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.about-badge-text {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}
.about-content .section-tag { text-align: left; }
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}
.about-title span { color: var(--primary-light); font-style: italic; }
.about-desc { font-size: 15px; color: var(--gray); line-height: 1.9; margin-bottom: 24px; }
.about-features { display: flex; flex-direction: column; gap: 16px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.12), rgba(44, 82, 130, 0.16));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(44, 82, 130, 0.18);
}
.feature-icon__svg { width: 22px; height: 22px; color: var(--accent); }
.feature-text h4 { font-size: 14px; font-weight: 600; color: var(--primary-dark); margin-bottom: 2px; }
.feature-text p { font-size: 13px; color: var(--gray); font-weight: 300; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}
.product-image-wrap { position: relative; overflow: hidden; height: 260px; }
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-image { transform: scale(1.08); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 31, 50, 0.75), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0.95;
}
.product-overlay-text {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
}
.product-info { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #e11d48;
  font-weight: 600;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin-top: 8px;
  color: var(--primary-dark);
}
.product-summary {
  font-size: 0.875rem;
  color: var(--gray);
  margin-top: 10px;
  line-height: 1.65;
  flex: 1;
}

/* #bolgeler — tek ağ: grup + hizmet kutuları */
.dest-network {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.dest-block__head {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(44, 82, 130, 0.15);
}
.dest-block__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  color: var(--primary-dark);
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.dest-block__lead {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.55;
  max-width: 46rem;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.dest-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 16px 18px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  min-height: 108px;
  display: flex;
  flex-direction: column;
}
.dest-tile:hover {
  border-color: rgba(44, 82, 130, 0.28);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.dest-tile__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 8px;
  line-height: 1.25;
}
.dest-tile__desc {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.55;
  flex: 1;
}
@media (min-width: 900px) {
  .dest-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .dest-network {
    gap: 36px;
  }
  .dest-grid {
    grid-template-columns: 1fr;
  }
}

.cta-arch {
  position: relative;
  padding: 96px 0 104px;
  overflow: hidden;
  background: var(--white);
}
.cta-arch__pattern {
  position: absolute;
  inset: -35% -20%;
  opacity: 1;
  background-image:
    repeating-linear-gradient(-32deg, transparent 0, transparent 58px, rgba(15, 31, 50, 0.04) 58px, rgba(15, 31, 50, 0.04) 59px),
    repeating-linear-gradient(32deg, transparent 0, transparent 76px, rgba(15, 31, 50, 0.03) 76px, rgba(15, 31, 50, 0.03) 77px),
    linear-gradient(90deg, rgba(15, 31, 50, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(15, 31, 50, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  pointer-events: none;
}
.cta-arch__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 75% at 50% 40%, rgba(255, 255, 255, 0) 0%, rgba(248, 250, 252, 0.85) 100%);
  pointer-events: none;
}
.cta-arch .container { position: relative; z-index: 2; }
.cta-arch__panel {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 52px 48px 56px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(15, 31, 50, 0.08);
  position: relative;
}
.cta-arch__panel::before,
.cta-arch__panel::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: var(--accent);
  opacity: 0.45;
  pointer-events: none;
}
.cta-arch__panel::before { top: 16px; left: 16px; border-top: 2px solid; border-left: 2px solid; }
.cta-arch__panel::after { bottom: 16px; right: 16px; border-bottom: 2px solid; border-right: 2px solid; }
.cta-arch__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.18;
  margin: 0 0 18px;
}
.cta-arch__title span { display: block; margin-top: 4px; color: var(--accent); font-style: italic; font-weight: 600; }
.cta-arch__desc { font-size: 1rem; color: var(--gray); line-height: 1.75; margin: 0 0 28px; }
.cta-arch__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-arch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-arch__btn--primary {
  background: #e11d48;
  color: #fff;
  box-shadow: 0 6px 22px rgba(225, 29, 72, 0.28);
}
.cta-arch__btn--primary:hover { background: #be123c; transform: translateY(-2px); }
.cta-arch__btn--ghost {
  background: var(--white);
  color: var(--primary-dark);
  border: 1px solid var(--border);
}
.cta-arch__btn--ghost:hover {
  background: var(--light-gray);
  border-color: #e11d48;
  color: #e11d48;
  transform: translateY(-2px);
}

.loc-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 140px 0 72px;
  color: var(--white);
}
.loc-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}
.loc-hero__lead { font-size: 1.05rem; color: rgba(255, 255, 255, 0.85); max-width: 520px; line-height: 1.65; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); }
.contact-card--accent { border-color: rgba(225, 29, 72, 0.35); }
.contact-card__label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); }
.contact-card__value { font-size: 1.25rem; margin-top: 10px; color: var(--primary-dark); }
.contact-card__hint { font-size: 13px; color: var(--gray); margin-top: 8px; }
.contact-note { text-align: center; color: var(--gray); font-size: 15px; line-height: 1.75; }

.viva-footer {
  background: #0a1118;
  color: #e2e8f0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.viva-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
/* Footer — tek akış: giriş → 4 eşit sütun → ince güven satırı → SEO metni */
.viva-footer__intro {
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.viva-footer__brand {
  max-width: 52rem;
}
.viva-footer__logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}
.viva-footer__desc {
  color: #94a3b8;
  font-size: 0.9375rem;
  line-height: 1.72;
}
.viva-footer__desc a { color: #cbd5e1; transition: color 0.2s; }
.viva-footer__desc a:hover { color: #fff; }
.viva-footer__kw {
  color: #e2e8f0;
  font-weight: 600;
}
.viva-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.viva-footer__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.viva-footer__action:hover {
  color: #fff;
  border-color: rgba(225, 29, 72, 0.4);
  background: rgba(225, 29, 72, 0.1);
}
.viva-footer__action--primary {
  background: linear-gradient(135deg, #be123c 0%, #e11d48 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(225, 29, 72, 0.22);
}
.viva-footer__action--primary:hover {
  background: linear-gradient(135deg, #9f1237 0%, #be123c 100%);
  color: #fff;
  border-color: transparent;
}

.viva-footer__link-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 40px);
  padding: 48px 0 44px;
  align-items: start;
}
.viva-footer__link-matrix .viva-footer__col {
  min-width: 0;
}
.viva-footer__link-matrix .viva-footer__col h4 {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.04em;
}
.viva-footer__link-matrix .viva-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.viva-footer__link-matrix .viva-footer__col a {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.5;
  transition: all 0.2s ease;
  display: inline-block;
}
.viva-footer__link-matrix .viva-footer__col a:hover {
  color: #fff;
  transform: translateX(4px);
}

.viva-footer__trustline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 2px;
  margin: 0 0 24px;
  padding: 14px 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.viva-footer__trustline span:not(.viva-footer__trustline-dot) {
  white-space: nowrap;
}
.viva-footer__trustline-dot {
  margin: 0 0.35rem;
  opacity: 0.4;
  user-select: none;
}

.viva-footer__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.viva-footer__pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.25s ease;
}
.viva-footer__pill:hover {
  color: #fff;
  border-color: rgba(225, 29, 72, 0.5);
  background: rgba(225, 29, 72, 0.05);
  transform: translateY(-2px);
}

.viva-footer__seo {
  margin: 0 auto 32px;
  max-width: 42rem;
  padding: 0 4px;
  text-align: center;
}
.viva-footer__seo p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.85;
  color: #64748b;
}
.viva-footer__seo strong {
  color: #94a3b8;
  font-weight: 600;
}

.viva-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #475569;
}
.viva-footer__address {
  margin: 0;
  text-align: right;
  line-height: 1.45;
  max-width: 28rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { height: 400px; }
  .about-badge { bottom: 16px; right: 16px; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .viva-footer__link-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; align-items: center; justify-content: center; }
  .topbar-inner { flex-direction: column; gap: 6px; text-align: center; padding: 10px 20px; }
  .viva-footer__intro { padding: 40px 0 32px; }
  .viva-footer__link-matrix {
    grid-template-columns: 1fr;
    padding: 32px 0 28px;
    gap: 28px;
  }
  .viva-footer__trustline {
    font-size: 0.6875rem;
    padding: 12px 8px;
    gap: 6px 8px;
  }
  .viva-footer__trustline span:not(.viva-footer__trustline-dot) {
    white-space: normal;
  }
  .viva-footer__seo { padding: 0; margin-bottom: 28px; }
  .viva-footer__bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .viva-footer__address { text-align: center; max-width: none; }
  .hero { min-height: 520px; }
  .header-inner { padding: 16px 20px; }
  .container { padding: 0 20px; }
  .cta-arch__panel { padding: 40px 24px 44px; }
}
@media (max-width: 540px) {
  .cta-arch { padding: 72px 0 80px; }
}

/* Hızlı iletişim: mobilde tam genişlik alt bar, masaüstünde sağ alt ikon */
.fab-dock {
  position: fixed;
  z-index: 998;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.fab-dock.fab-dock--hidden {
  opacity: 0;
  visibility: hidden;
}
.fab-dock.fab-dock--hidden .fab-dock__inner {
  pointer-events: none;
}
.fab-dock__inner {
  pointer-events: auto;
}
.fab-dock__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #f8fafc;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.fab-dock__btn:focus-visible {
  outline: 2px solid rgba(225, 29, 72, 0.7);
  outline-offset: 2px;
}
.fab-dock__btn--phone {
  background: linear-gradient(180deg, #1e3a5f 0%, #0f1f32 100%);
}
.fab-dock__btn--phone:hover {
  border-color: rgba(148, 163, 184, 0.35);
}
.fab-dock__btn--wa {
  background: linear-gradient(180deg, #0f766e 0%, #0d5c56 100%);
  color: #ecfdf5;
}
.fab-dock__btn--wa:hover {
  border-color: rgba(52, 211, 153, 0.35);
}
.fab-dock__icon {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
  .fab-dock {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 14px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(10, 17, 24, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.2);
  }
  .fab-dock__inner {
    display: flex;
    flex-direction: row;
    gap: 10px;
    max-width: 520px;
    margin: 0 auto;
  }
  .fab-dock__btn {
    flex: 1;
    min-width: 0;
    height: 46px;
    border-radius: 12px;
    padding: 0 12px;
  }
  .fab-dock__label {
    display: inline;
  }
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
  .fab-dock {
    left: auto;
    right: max(20px, env(safe-area-inset-right, 0px));
    bottom: max(24px, env(safe-area-inset-bottom, 0px));
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
  }
  .fab-dock__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .fab-dock__btn {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    flex: none;
  }
  .fab-dock__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .fab-dock__btn:hover {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fab-dock__btn {
    transition: none;
  }
  .fab-dock__btn:hover {
    transform: none;
  }
}
