:root {
  --bg: #eaf4fb;
  --panel: rgba(255, 255, 255, 0.82);
  --panel2: rgba(255, 255, 255, 0.92);
  --text: #0f2a35;
  --muted: #0a1a21;
  --primary: #18a9e6;
  --primary2: #0f7bb0;
  --gold: #f4b63a;
  --orange: #f97316;
  --line: rgba(13, 56, 74, 0.12);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
  --radius: 22px;
  --radius2: 16px;
  --max: 1280px;
  --navH: 74px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background:
    linear-gradient(
      180deg,
      rgba(238, 246, 251, 0.62),
      rgba(238, 246, 251, 0.62)
    ),
    url("img/16.jpeg") center/cover fixed no-repeat;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

/* =========================
         TOP NAV
         ========================= */
.topbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.48);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}
.topbar.scrolled {
  background: rgba(0, 0, 0, 0.75);
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.nav {
  height: var(--navH);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

.nav .left,
.nav .right {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav .left {
  justify-content: flex-end;
  padding-right: 6px;
}
.nav .right {
  justify-content: flex-start;
  padding-left: 6px;
}

.nav a {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.9px;
  font-size: 18px;
  font-style: italic;
  opacity: 0.95;
  transition: 0.2s ease;
}
.nav a::before,
.nav a::after {
  content: "“";
  opacity: 0;
  transform: translateY(2px);
  transition: 0.2s ease;
}
.nav a::after {
  content: "”";
}
.nav a:hover {
  opacity: 1;
}
.nav a:hover::before,
.nav a:hover::after {
  opacity: 0.9;
  transform: translateY(0);
}

.nav .link {
  position: relative;
  padding: 10px 8px;
}
.nav .link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(24, 169, 230, 0),
    rgba(24, 169, 230, 0.95),
    rgba(24, 169, 230, 0)
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: 0.2s ease;
}
.nav .link:hover::after {
  transform: scaleX(1);
}

/* Header hizaları: menü biraz daha yukarı, logo 1 tık aşağı */
.nav .left a,
.nav .right a {
  transform: translateY(-30px);
}
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transform: translateY(4px);
}
.brand .mark {
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.28));
}

/* Mobile menu */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.18);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.burger i {
  width: 18px;
  height: 2px;
  background: #fff;
  display: block;
  position: relative;
}
.burger i::before,
.burger i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #fff;
}
.burger i::before {
  top: -6px;
}
.burger i::after {
  top: 6px;
}

.drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 80;
  display: none;
}
.drawer.show {
  display: block;
}
.drawer .panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: rgba(10, 20, 28, 0.92);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 18px 22px;
  transform: translateX(12px);
  animation: drawerIn 0.18s ease forwards;
}
@keyframes drawerIn {
  to {
    transform: translateX(0);
  }
}
.drawer .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 2px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
}
.drawer .close {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.drawer nav {
  display: grid;
  gap: 10px;
  padding: 10px 2px;
}
.drawer a {
  color: #fff;
  font-weight: 800;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-transform: none;
  letter-spacing: 0.2px;
  font-size: 14px;
  font-style: italic;
}
.drawer a:hover {
  background: rgba(24, 169, 230, 0.18);
  border-color: rgba(24, 169, 230, 0.35);
}

/* =========================
         HERO
         ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.heroVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none; /* only mobile */
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
  will-change: transform, opacity;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.07) contrast(1.03);
}
.slide.active {
  opacity: 1;
  animation: kenburns 12s ease-in-out both;
}
@keyframes kenburns {
  0% {
    transform: scale(1.06) translate3d(-1.5%, -1.5%, 0);
  }
  50% {
    transform: scale(1.12) translate3d(1.2%, 0.8%, 0);
  }
  100% {
    transform: scale(1.18) translate3d(2.2%, 1.8%, 0);
  }
}
.heroOverlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      900px 500px at 20% 30%,
      rgba(255, 255, 255, 0.18),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.42),
      rgba(0, 0, 0, 0.18) 35%,
      rgba(0, 0, 0, 0.1) 65%,
      rgba(0, 0, 0, 0.48)
    );
  pointer-events: none;
}

/* Hero yazılar sabit “alt boşluklu” dursun: */
.heroContent {
  position: relative;
  z-index: 2;
  min-height: 90vh;
  padding: calc(var(--navH) + 18px) 0 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* her zaman alt tarafa yakın */
  gap: 18px;
}
.heroText {
  margin-bottom: clamp(8px, 1.4vh, 18px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  width: max-content;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 12px;
}

.heroTitle {
  color: #fff;
  font-size: clamp(34px, 4.6vw, 72px);
  line-height: 1.03;
  margin: 10px 0 0;
  font-weight: 800;
  letter-spacing: -0.6px;
  max-width: 980px;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.heroTitle em {
  font-style: normal;
  background: linear-gradient(
    90deg,
    rgba(24, 169, 230, 1),
    rgba(244, 182, 58, 1)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.heroSub {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(14px, 1.5vw, 28px) !important;

  line-height: 1.75;
  margin: 10px 0 0;
}

/* Reservation bar */
.reserveBar {
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  padding: 16px;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.8fr auto;
  gap: 12px;
  align-items: end;
}
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: rgba(15, 42, 53, 0.85);
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 8px;
}
.control {
  position: relative;
  background: rgba(240, 250, 255, 0.95);
  border: 1px solid rgba(13, 56, 74, 0.14);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
}
.control input,
.control select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
  color: var(--text);
  font-weight: 750;
}
.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  opacity: 0.7;
}

.reserveBtn {
  height: 56px;
  border: 0;
  border-radius: 18px;
  padding: 0 18px;
  background:
    radial-gradient(
      120px 120px at 30% 30%,
      rgba(255, 255, 255, 0.25),
      transparent 60%
    ),
    linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  font-weight: 950;
  letter-spacing: 0.6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 18px 45px rgba(24, 169, 230, 0.3);
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
  white-space: nowrap;
}
.reserveBtn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

/* =========================
         SECTIONS
         ========================= */
section {
  padding: 40px 0;
}
.sectionHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.kicker {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(13, 56, 74, 0.1);
  color: rgba(15, 42, 53, 0.86);
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}
h2 {
  margin: 10px 0 0;
  font-size: clamp(26px, 3vw, 44px);
  letter-spacing: -0.6px;
  line-height: 1.05;
}
.muted {
  color: var(--muted);
  line-height: 1.75;
  max-width: 820px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.cardMedia {
  height: 210px;
  background: #dbeaf3;
  position: relative;
}
.cardMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.35s ease;
  display: block;
}
.card:hover .cardMedia img {
  transform: scale(1.06);
}

.chipRow {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(13, 56, 74, 0.14);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(15, 42, 53, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cardBody {
  padding: 18px 18px 18px;
}
.cardBody h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.3px;
}
.cardBody p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.cardFoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px 18px;
  border-top: 1px dashed var(--line);
}
.price {
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.6px;
}
.price small {
  font-size: 13px;
  font-weight: 900;
  color: var(--muted);
  margin-left: 8px;
}

/* CTA 7/24 */
.cta {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 54px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(
      520px 280px at 18% 28%,
      rgba(24, 169, 230, 0.22),
      transparent 62%
    ),
    radial-gradient(
      520px 280px at 82% 62%,
      rgba(244, 182, 58, 0.22),
      transparent 62%
    );
  pointer-events: none;
}
.cta .inner {
  position: relative;
  z-index: 1;
}
.cta h3 {
  margin: 14px 0 0;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.8px;
  line-height: 1.05;
}

/* About grid + video */
.aboutGrid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}
.aboutVideo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: #0b1720;
  position: relative;
  min-height: 260px;
}
.aboutVideo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.aboutVideo .vTag {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 950;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
}

.chip.orangeBtn {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.28);
  color: rgba(15, 42, 53, 0.92);
  font-weight: 950;
}
.chip.orangeBtn .oIco {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f97316, #ffb07a);
  color: #fff;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.18);
}

.seoAbout {
  margin-top: 12px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(13, 56, 74, 0.1);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}
.seoAbout h3 {
  margin: 0 0 10px;
  letter-spacing: -0.3px;
  font-size: 18px;
}
.seoAbout p {
  margin: 10px 0 0;
  color: rgba(15, 42, 53, 0.86);
  line-height: 1.88;
}
.seoAbout ul {
  margin: 10px 0 0;
  padding-left: 16px;
  color: rgba(15, 42, 53, 0.86);
  line-height: 1.85;
  font-weight: 650;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}
.featureList {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 12px;
}
.fItem {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 16px 8px;
  border-bottom: 1px dashed var(--line);
}
.fItem:last-child {
  border-bottom: 0;
}
.fNo {
  font-weight: 1000;
  color: var(--gold);
  font-size: 20px;
}
.fItem h4 {
  margin: 0;
  font-size: 18px;
}
.fItem p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.featureMedia {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.bubbles {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      140px 140px at 22% 24%,
      rgba(24, 169, 230, 0.18),
      transparent 62%
    ),
    radial-gradient(
      160px 160px at 78% 28%,
      rgba(244, 182, 58, 0.16),
      transparent 62%
    ),
    radial-gradient(
      220px 220px at 60% 78%,
      rgba(15, 123, 176, 0.14),
      transparent 64%
    );
  pointer-events: none;
}
.featureMedia .inner {
  position: relative;
  z-index: 1;
}
.circleGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 10px;
}
.circle {
  aspect-ratio: 1/1;
  border-radius: 999px;
  border: 7px solid rgba(255, 255, 255, 0.9);
  background: #dbeaf3;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.circle.big {
  grid-column: 1 / -1;
  aspect-ratio: 16/10;
  border-radius: 999px;
}

/* 2 extra circles (requested) */
.circleGridExtra {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Testimonials */
.testiWrap {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px 12px;
  position: relative;
  overflow: hidden;
}
.avatars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.av {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  background: rgba(15, 42, 53, 0.08);
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  transition: 0.18s ease;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.1);
}
.av::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: conic-gradient(
    from 180deg,
    rgba(24, 169, 230, 0.9),
    rgba(244, 182, 58, 0.95),
    rgba(249, 115, 22, 0.9),
    rgba(15, 123, 176, 0.9),
    rgba(24, 169, 230, 0.9)
  );
  opacity: 0.22;
}
.av > * {
  position: relative;
  z-index: 1;
}
.av.active {
  outline: 3px solid rgba(244, 182, 58, 0.85);
  transform: translateY(-2px);
}
.quote {
  text-align: center;
  padding: 14px 10px 6px;
  max-width: 900px;
  margin: 0 auto;
}
.quoteMark {
  font-size: 44px;
  color: rgba(24, 169, 230, 0.55);
  font-weight: 1000;
  line-height: 1;
  margin: 0;
}
.quote p {
  margin: 8px 0 0;
  color: rgba(15, 42, 53, 0.78);
  font-weight: 650;
  line-height: 1.9;
}
.quote strong {
  display: block;
  margin-top: 14px;
  font-weight: 950;
  letter-spacing: -0.2px;
}
.testiNav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 8px;
}
.navBtn {
  pointer-events: auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #ffcf67);
  border: 1px solid rgba(244, 182, 58, 0.45);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(244, 182, 58, 0.22);
  opacity: 0.95;
  transition: 0.18s ease;
}
.navBtn:hover {
  transform: translateY(-1px);
  opacity: 1;
}

/* Blog cards button modern */
.blogGrid .cardMedia {
  height: 200px;
}
.blogMeta {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}
.readMore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-weight: 950;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15, 42, 53, 0.9);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(24, 169, 230, 0.22);
  background: rgba(24, 169, 230, 0.1);
  transition: 0.18s ease;
  width: max-content;
}
.readMore:hover {
  background: rgba(24, 169, 230, 0.16);
  transform: translateY(-1px);
}

/* Gallery grid + lightbox */
.galleryGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gItem {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(13, 56, 74, 0.12);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
}
.gItem img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}
.gItem:hover img {
  transform: scale(1.08);
}
.gItem::after {
  content: "🔍";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.2s ease;
}
.gItem:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 120;
  display: none;
}
.lightbox.show {
  display: block;
}
.lbInner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}
.lbCard {
  width: min(1100px, 94vw);
  background: rgba(10, 20, 28, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  position: relative;
}
.lbImgWrap {
  width: 100%;
  max-height: 78vh;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.22);
}
.lbImgWrap img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  display: block;
}
.lbClose {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.lbNav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 10px;
}
.lbBtn {
  pointer-events: auto;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-weight: 1000;
  transition: 0.18s ease;
}
.lbBtn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}
.lbCap {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.lbCap small {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
}

/* Footer */
footer {
  padding: 56px 0 34px;
}
.footerCard {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px 12px;
}

.fBrand {
  display: grid;
  gap: 12px;
}
.fLogoRow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fLogoRow img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.14));
}
.fLogoRow .t {
  display: grid;
  gap: 4px;
}
.fLogoRow .t strong {
  font-size: 18px;
  letter-spacing: -0.2px;
  font-weight: 1000;
}
.fLogoRow .t span {
  color: var(--muted);
  font-weight: 800;
  font-size: 12.5px; /* biraz küçüldü */
}

.footerLinks {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  font-weight: 850;
  color: rgba(15, 42, 53, 0.85);
}
.footerLinks a {
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(13, 56, 74, 0.1);
  background: rgba(255, 255, 255, 0.62);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  transition: 0.18s ease;
  font-size: 13px; /* daha kurumsal */
}
.footerLinks a:hover {
  transform: translateY(-1px);
  background: rgba(24, 169, 230, 0.1);
  border-color: rgba(24, 169, 230, 0.18);
}
.footerLinks .mi {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(244, 182, 58, 0.16);
  border: 1px solid rgba(244, 182, 58, 0.22);
}
.footerLinks .mi svg {
  width: 16px;
  height: 16px;
  opacity: 0.9;
}

.footerBottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(15, 42, 53, 0.75);
  font-weight: 700;
  font-size: 13px;
}
.webcredit {
  font-weight: 800;
  color: rgba(15, 42, 53, 0.72);
}
.webcredit a {
  color: rgba(15, 123, 176, 1);
  font-weight: 950;
}

/* Footer map */
.mapWrap {
  margin-top: 12px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(13, 56, 74, 0.12);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.mapWrap iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

/* Footer right quick actions (mobile) */
.fQuickMobile {
  display: none;
  margin-top: 12px;
  gap: 10px;
  flex-wrap: wrap;
}
.miniAction {
  height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(13, 56, 74, 0.12);
  background: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: 0.2px;
  font-size: 13px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
}
.miniAction svg {
  width: 18px;
  height: 18px;
}
.miniAction.tel {
  border-color: rgba(24, 169, 230, 0.22);
  background: rgba(24, 169, 230, 0.08);
}
.miniAction.wa {
  border-color: rgba(37, 211, 102, 0.22);
  background: rgba(37, 211, 102, 0.1);
}

/* Sol altta sabit Ara butonu */
.callFab {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(24, 169, 230, 0.22);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  font-weight: 800;
  letter-spacing: 0.2px;
  color: rgba(5, 23, 30, 0.92);
  transition: 0.18s ease;
}
.callFab:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}
.callFab .dot {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 18px 45px rgba(24, 169, 230, 0.26);
  flex: 0 0 44px;
}
.callFab .telRed {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #e11d48;
  letter-spacing: 0.2px;
  margin-top: 2px;
}
.callFab small {
  display: block;
  font-size: 12px;
  font-weight: 850;
  color: rgba(107, 125, 134, 0.95);
  letter-spacing: 0.6px;
}

/* WhatsApp floating */
.waFloat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #25d366;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  border: 6px solid rgba(255, 255, 255, 0.85);
}
.waFloat::before,
.waFloat::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: pulse 1.6s ease-out infinite;
}
.waFloat::after {
  animation-delay: 0.8s;
  border-color: rgba(37, 211, 102, 0.35);
}
@keyframes pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.28);
    opacity: 0;
  }
}

/* Flatpickr theme */
.flatpickr-calendar {
  border-radius: 16px !important;
  border: 1px solid rgba(24, 169, 230, 0.22) !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18) !important;
  overflow: hidden;
  font-family: Inter, sans-serif !important;
}
.flatpickr-months {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--primary2)
  ) !important;
  color: #fff !important;
  padding: 10px 8px !important;
}
.flatpickr-current-month,
.flatpickr-weekdays,
.flatpickr-weekday {
  color: #fff !important;
  font-weight: 900 !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
  font-weight: 950 !important;
}
.flatpickr-day.today {
  border-color: rgba(24, 169, 230, 0.55) !important;
}

/* =========================
         RESPONSIVE
         ========================= */
@media (max-width: 1100px) {
  .brand .mark {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }
  .nav .left,
  .nav .right {
    display: none;
  }
  .burger {
    display: flex;
  }
  .brand {
    justify-self: center;
    transform: translateY(2px);
  }
  .brand .mark {
    width: 104px;
    height: 104px;
  }

  .grid3 {
    grid-template-columns: 1fr;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .footerTop {
    grid-template-columns: 1fr;
  }
  .galleryGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .aboutGrid {
    grid-template-columns: 1fr;
  }
  .reserveBar {
    grid-template-columns: 1fr 1fr;
  }
  .reserveBtn {
    grid-column: 1 / -1;
  }

  /* CTA mobile: show tel + whatsapp buttons */
  .ctaActions .btn.ghost,
  .ctaActions .btn.wa {
    display: inline-flex;
  }
}

@media (max-width: 520px) {
  :root {
    --navH: 68px;
  }
  .topbar .nav {
    height: 68px;
  }
  .brand .mark {
    width: 92px;
    height: 92px;
  }

  /* HERO: mobile video background */
  .heroVideo {
    display: block;
  }
  .slide {
    display: none;
  }

  /* Mobile hero text: sadece 2 satır */
  .heroContent {
    padding: calc(var(--navH) + 200px) 0 18px;
    min-height: 90vh;
    gap: 12px;
  }

  .container {
    width: min(var(--max), calc(100% - 28px));
    margin-inline: auto;
  }
  .heroTitle {
    font-size: 18px;
    line-height: 1.15;
    max-width: 520px;
  }
  .heroSub {
    display: none;
  }
  .badge {
    font-size: 11px;
    padding: 9px 12px;
  }

  /* Mobile reservation: tarihler yan yana, kişi+rezervasyon yan yana (kompakt) */
  .reserveBar {
    padding: 12px;
    border-radius: 18px;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
  .field label {
    font-size: 11px;
    margin-bottom: 6px;
  }
  .control {
    min-height: 46px;
    padding: 10px;
  }
  .control input,
  .control select {
    font-size: 14px;
  }
  footer {
    padding: 86px 0 84px;
  }
  /* 3. field (kisi) sol, buton sağ */
  .reserveBar .field.kisi {
    grid-column: 1 / 2;
  }
  .reserveBar .reserveBtn {
    grid-column: 2 / 3;
    height: 46px;
    border-radius: 14px;
    padding: 0 12px;
    font-size: 13px;
  }

  /* Footer mobile quick actions */
  .fQuickMobile {
    display: flex;
  }

  .callFab {
    left: 12px;
    bottom: 12px;
  }
  .waFloat {
    right: 12px;
    bottom: 12px;
  }
  .galleryGrid {
    grid-template-columns: 1fr;
  }
}

/* HERO başlık: ince siyah kontur */
.heroTitle {
  text-stroke: 1px rgba(0, 0, 0, 0.45); /* bazı tarayıcılar */
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.35);
}
.heroTitle em {
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.28);
}

/* CTA: ikonlu buton (tel kırmızı / wa yeşil) */
.ctaActions {
  gap: 12px;
}
.btn.tel {
  background: rgba(225, 29, 72, 0.12);
  border-color: rgba(225, 29, 72, 0.24);
}
.btn.tel strong {
  color: #e11d48;
  font-weight: 1000;
  letter-spacing: 0.2px;
}
.btn.wa strong {
  color: #25d366;
  font-weight: 1000;
  letter-spacing: 0.2px;
}
.btn small {
  display: block;
  font-size: 11px;
  font-weight: 900;
  opacity: 0.78;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.btn .btxt {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
/* Footer kolon oranları: menü dar, harita geniş */
.footerTop {
  grid-template-columns: 1.25fr 0.75fr 1.55fr;
}

/* Footer ikonları daha kurumsal (gradientsiz, daha sade) */
.fIco {
  background: rgba(15, 42, 53, 0.1);
  box-shadow: none;
  border: 1px solid rgba(13, 56, 74, 0.18);
}
.fIco svg {
  opacity: 0.95;
}

/* Harita daha büyük */
.mapWrap iframe {
  height: 340px;
}
@media (max-width: 980px) {
  .mapWrap iframe {
    height: 320px;
  }
}
@media (max-width: 520px) {
  .mapWrap iframe {
    height: 320px;
  }
}

/* CTA responsive: çok dar ekranda alt alta */
@media (max-width: 520px) {
  .ctaActions {
    grid-template-columns: 1fr 1fr; /* yine yan yana kalsın */
    gap: 10px;
  }
  .btn.tel,
  .btn.wa {
    height: 54px;
    padding: 0 14px;
  }
  .btn.tel strong {
    font-size: 14px;
  }
  .btn.wa strong {
    font-size: 14px;
  }
}

/* =========================
   HERO TITLE — DIŞ KONTUR (net dış outline)
   ========================= */
.heroTitle {
  /* Kontur kalınlığını buradan ayarlayabilirsin */
  --ol: 1.4px;
  --oc: rgba(0, 0, 0, 0.62);

  /* Dış kontur (8 yön + 2. halka) */
  text-shadow:
    calc(-1 * var(--ol)) calc(-1 * var(--ol)) 0 var(--oc),
    0 calc(-1 * var(--ol)) 0 var(--oc),
    var(--ol) calc(-1 * var(--ol)) 0 var(--oc),
    calc(-1 * var(--ol)) 0 0 var(--oc),
    var(--ol) 0 0 var(--oc),
    calc(-1 * var(--ol)) var(--ol) 0 var(--oc),
    0 var(--ol) 0 var(--oc),
    var(--ol) var(--ol) 0 var(--oc),
    /* 2. halka (daha dışta) */ calc(-2 * var(--ol)) 0 0 rgba(0, 0, 0, 0.36),
    calc(2 * var(--ol)) 0 0 rgba(0, 0, 0, 0.36),
    0 calc(-2 * var(--ol)) 0 rgba(0, 0, 0, 0.36),
    0 calc(2 * var(--ol)) 0 rgba(0, 0, 0, 0.36),
    /* doğal derinlik */ 0 16px 44px rgba(0, 0, 0, 0.38);
}

/* =========================
   CTA — Tel büyük + WhatsApp yanında + WhatsApp ikonu garanti
   ========================= */
.ctaActions {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.35fr 1fr; /* tel daha büyük */
  gap: 12px;
  justify-content: center;
  align-items: stretch;
}

.btn {
  height: 56px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(13, 56, 74, 0.14);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 950;
  letter-spacing: 0.4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}
.btn svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: block;
}

.btn .btxt {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 2px;
}
.btn small {
  display: block;
  font-size: 11px;
  font-weight: 950;
  opacity: 0.78;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.btn strong {
  display: block;
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: 0.2px;
}

/* Tel butonu büyük */
.btn.tel {
  height: 64px;
  padding: 0 18px;
  background: rgba(225, 29, 72, 0.12);
  border-color: rgba(225, 29, 72, 0.26);
}
.btn.tel svg {
  width: 22px;
  height: 22px;
}
.btn.tel strong {
  color: #e11d48;
  font-size: 17px;
}

/* WhatsApp */
.btn.wa {
  height: 64px;
  padding: 0 18px;
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.26);
}
.btn.wa strong {
  color: #25d366;
  font-size: 16px;
}
.btn.wa .waIco {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

/* Çok dar ekranda yine yan yana; aşırı dar olursa kırılabilir */
@media (max-width: 520px) {
  .ctaActions {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .btn.tel,
  .btn.wa {
    height: 54px;
    padding: 0 14px;
  }
  .btn.tel strong,
  .btn.wa strong {
    font-size: 14px;
  }
}

/* =========================
   FOOTER — Menü dar, Harita geniş, ikonlar kurumsal (sade)
   ========================= */
.footerTop {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1.65fr;
  gap: 18px;
  align-items: start;
}

/* ikon kutuları daha kurumsal */
.fIco {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(15, 42, 53, 0.1);
  border: 1px solid rgba(13, 56, 74, 0.18);
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  box-shadow: none;
}
.fIco svg {
  width: 18px;
  height: 18px;
  opacity: 0.95;
}

/* Harita daha büyük */
.mapWrap iframe {
  height: 380px;
}

@media (max-width: 980px) {
  .footerTop {
    grid-template-columns: 1fr;
  }
  .mapWrap iframe {
    height: 330px;
  }
}

/* =========================
   CTA — Tel solda / WhatsApp sağda, YAN YANA ve ORTADA
   ========================= */
.ctaActions {
  /* eski grid’i ez */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: nowrap !important;

  /* ortada tek satır gibi dursun */
  max-width: 980px;
  margin: 18px auto 0;
}

/* Butonlar eşit yükseklik, kurumsal */
.ctaActions .btn.tel,
.ctaActions .btn.wa {
  height: 66px;

  justify-content: flex-start;
}

@media (max-width: 980px) {
  .ctaActions {
    gap: 10px !important;
    padding: 0 6px;
  }
  .ctaActions .btn.tel,
  .ctaActions .btn.wa {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .ctaActions {
    flex-wrap: wrap !important; /* çok dar olunca alt alta */
  }
  .ctaActions .btn.tel,
  .ctaActions .btn.wa {
    height: 58px;
  }
}
/* =========================
   FOOTER FINAL
   ========================= */
.footerTop {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1.65fr;
  gap: 22px;
  align-items: flex-start;
}

/* İletişim alanı: zemin / border YOK */
.fAddr {
  background: none !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* İletişim satırı */
.fAddr .row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

/* RENKLİ – KURUMSAL ikonlar */
.fIco {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  color: #fff;
}

/* Adres */
.fAddr .row.addr .fIco {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}
/* Sabit Tel */
.fAddr .row.tel .fIco {
  background: linear-gradient(135deg, #ef4444, #fb7185);
}
/* Mobil Tel */
.fAddr .row.mob .fIco {
  background: linear-gradient(135deg, #f59e0b, #facc15);
}
/* WhatsApp */
.fAddr .row.wa .fIco {
  background: linear-gradient(135deg, #25d366, #6ee7a8);
}

/* Menü linkleri ikonlu */
.footerLinks a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 600;
}

.footerLinks a .mi {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.footerLinks a:hover .mi {
  background: rgba(245, 158, 11, 0.18);
  border-color: rgba(245, 158, 11, 0.35);
}

.footerLinks svg {
  width: 16px;
  height: 16px;
}

/* Harita */
.mapWrap iframe {
  width: 100%;
  height: 380px;
  border-radius: 18px;
}

/* Responsive */
@media (max-width: 980px) {
  .footerTop {
    grid-template-columns: 1fr;
  }
  .mapWrap iframe {
    height: 320px;
  }
}

/* İletişim satırı (ikon + yazı dikey ortalı) */
.fAddr .row {
  display: flex;
  gap: 12px;
  align-items: center; /* DİKEY ORTALA */
  margin-bottom: 14px;
}

/* ikon kutusu (merkezde kalsın) */
.fIco {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  color: #fff;
}

/* Yazı bloğu da düzgün hizalansın */
.fAddr .row > div {
  display: flex;
  flex-direction: column;
  justify-content: center; /* yazıyı da dikey ortala */
  line-height: 1.35;
}
.roomDesc p {
  margin: 0;
  line-height: 1.85;
}
.roomDesc ul,
.roomDesc ol {
  margin: 10px 0 0 18px;
  padding: 0;
}
.roomDesc li {
  margin: 6px 0;
}
.roomDesc strong {
  font-weight: 800;
}
/* ODA DETAY BUTONU — Turuncu zemin */
.pillBtn.odaDetayBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 14px;
  border-radius: 999px;

  border: 0;
  cursor: pointer;

  background: #f97316; /* turuncu zemin */
  color: #fff; /* beyaz yazı */
  font-weight: 800;
  letter-spacing: 0.2px;

  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.25);
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.pillBtn.odaDetayBtn .txt {
  font-size: 14px;
  line-height: 1;
}

.pillBtn.odaDetayBtn .arr {
  font-size: 18px;
  line-height: 1;
  transform: translateY(-0.5px);
}

/* Hover / Active */
.pillBtn.odaDetayBtn:hover {
  filter: brightness(1.02);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.32);
}
.pillBtn.odaDetayBtn:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.25);
}

/* Focus (klavye ile erişilebilir) */
.pillBtn.odaDetayBtn:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.35);
  outline-offset: 3px;
}
#hakkimizda {
  padding-top: 200px;
}

#iletisim-sayfa {
  padding-top: 200px;
}
#galeri {
  padding-top: 200px;
}
