﻿body,
div,
span,
applet,
object,
iframe,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend {
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0;
  font-family: "Montserrat", sans-serif;
}

:focus {
  outline: 0;
}

* {
  list-style: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Aesthetic serif";
  src: url("../font/AestheticSerifAlternate.otf") format("opentype"),
    url("../font/AestheticSerifAlternate-Regular.woff") format("woff"),
    url("../font/aesthetic-serif-alternate/AestheticSerifAlternate-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

header {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto;
  top: 30px;
}

header a {
  color: #fff;
}

.nav {
  width: min(930px, 79vw);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.arc {
  width: 200px;
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}

.arc path {
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  animation: draw 6s ease forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.link {
  text-decoration: none;
  font-weight: 500;
}

.havaimg {
  width: 100%;
  position: absolute;
  top: 0;
}

.abosphorusimg {
  width: 100%;
  position: absolute;
  bottom: -70px;
}

.bosphorusimg {
  width: 100%;
  position: absolute;
  top: 90px;
}

.group {
  display: flex;
  align-items: center;
  position: relative;
}

.group::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
}

.link {
  letter-spacing: 0.2em;
  font-size: 17px;
  opacity: 0.95;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin-right: 50px;
}

.link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand svg {
  width: 110px;
  height: auto;
  display: block;
}

.brand img {
  width: 80%;
}

.spacer {
  flex: 1;
}

.search {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  opacity: 0.9;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.search:hover {
  opacity: 1;
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .group {
    gap: 28px;
  }

  .link {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .brand svg {
    width: 92px;
  }
}

@media (max-width: 700px) {
  .group {
    gap: 18px;
  }
}

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  overflow: hidden;
}

.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slide.is-active {
  opacity: 1;
  z-index: 1;
}

.slide img,
.slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #00000040;
}

.content {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: clamp(16px, 3vw, 56px);
  justify-content: center;
}

.content-inner {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 999;
}

.eyebrow {
  letter-spacing: 0.35em;
  font-weight: 600;
  color: #ffffff;
  font-size: clamp(10px, 1.3vw, 64px);
  font-weight: 500;
  font-family: "Montserrat";
  white-space: nowrap;
  overflow: hidden;
}

.detaileyebrow {
  white-space: nowrap;
  overflow: hidden;
}

/* Harfler */
.eyebrow span,
.detaileyebrow span {
  display: inline-block;
  opacity: 0;
  transform: translateY(7px);
  animation: fadeInUp 0.25s forwards ease-out;

  /* Stil bozulmasın diye: */
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Alt satırın asıl stilini buraya veriyorsun */
h1 {
  margin: 10px;
  font-size: 90px;
  line-height: 1.05;
  font-weight: 500;
  color: #fff;
  margin-top: 0px;
  font-family: "Aesthetic serif";
}

.cta {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 5px;
  background: #fff;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  color: #3f4727;
  letter-spacing: 1px;
  font-size: 15px;
  transition: all 0.5s;
}

.cta:hover {
  background: #3f4727;
  color: #fff;
}

.controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.arrows {
  position: absolute;
  right: clamp(10px, 2.2vw, 28px);
  bottom: clamp(12px, 2.2vw, 22px);
  display: flex;
  gap: 10px;
  z-index: 999;
}

.arrow {
  pointer-events: auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 87%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.arrow svg {
  width: 19px;
  height: 19px;
}

.progress {
  position: absolute;
  left: 50%;
  transform: translateX(-55%);
  bottom: clamp(22px, 2.8vw, 36px);
  width: min(990px, 84vw);
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  overflow: hidden;
  pointer-events: none;
  z-index: 999;
}

.progress>span {
  display: block;
  width: 0%;
  height: 100%;
  background: #fff;
  transition: all 0.1s;
}

@media (max-width: 480px) {
  .arrow {
    width: 44px;
    height: 44px;
  }

  .progress {
    width: 88vw;
  }
}

/* Landing hero */
body.landing-page {
  background: #ffffff;
}

body.landing-page header,
body.landing-page .menumobil,
body.landing-page .menudiv,
body.landing-page .form-etiket,
body.landing-page .form-kapsayici {
  display: none;
}

.landing-hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(30px, 6vw, 120px);
  padding-bottom: 210px;
  overflow: hidden;
  background: #dfe3d6;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.08) 42%,
      rgba(63, 71, 39, 0.78) 100%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.sales-card {
  background-color: #f0f2ea;
  padding: 60px 46px;
  max-width: 460px;
  text-align: center;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
  border: 1px solid #d6dac9;
  border-radius: 6px;
}

.sales-title {
  font-family: "Aesthetic serif", serif;
  font-size: 52px;
  color: #3f4727;
  margin-bottom: 16px;
  font-weight: 400;
}

.sales-address {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3f4727;
  margin-bottom: 26px;
  font-weight: 500;
}

.sales-phone {
  font-family: "Aesthetic serif", serif;
  font-size: 34px;
  color: #3f4727;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.sales-btn-outline {
  display: inline-block;
  padding: 12px 44px;
  border: 1px solid #3f4727;
  color: #3f4727;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.25s ease;
}

.sales-btn-outline:hover {
  background-color: #3f4727;
  color: #fff;
}

.hero-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(63, 71, 39, 0.95);
  color: #eef0e6;
  padding: 48px 28px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.hero-band__logo img {
  width: 160px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 26px rgba(0, 0, 0, 0.2));
}

.hero-band__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-band__nav a {
  color: #eef0e6;
  text-decoration: none;
  padding: 8px 4px;
  transition: opacity 0.2s ease;
}

.hero-band__nav a:hover {
  opacity: 0.82;
}

.hero-band__phone {
  font-weight: 700;
  letter-spacing: 0.16em;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 16px;
  margin-left: 4px;
}

@media (max-width: 1024px) {
  .landing-hero {
    min-height: 560px;
    padding-bottom: 190px;
  }

  .sales-card {
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .landing-hero {
    padding: 26px 18px 180px;
  }

  .sales-card {
    width: 100%;
    max-width: 460px;
    padding: 40px 26px;
  }

  .sales-title {
    font-size: 42px;
  }

  .hero-band {
    padding: 36px 16px 20px;
    text-align: center;
  }

  .hero-band__nav {
    flex-direction: column;
    gap: 10px;
    letter-spacing: 0.1em;
  }

  .hero-band__phone {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
  }
}

.menumobil {
  position: fixed;
  top: 0;
  right: 0;
  width: 100px;
  height: 60px;
  text-align: center;
  padding-top: 30px;
  cursor: pointer;
  z-index: 101010101010;
  padding-bottom: 10px;
  display: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  z-index: 999;
}

.menutext {
  color: #0c8f97;
}

.line {
  background: #fff;
  width: 50%;
  height: 5px;
  margin: 0 auto;
  margin-top: 10px;
  position: absolute;
  top: -10px;
  border-radius: 60px;
}

.menudiv {
  background: #001b34;
  position: fixed;
  top: 0;
  right: 0;
  width: 60%;
  height: 100vh;
  z-index: 99;
  transition: all 0.5s;
  opacity: 0;
  display: none;
  overflow: hidden;
  box-shadow: 1px 1px 100px #dedede;
}

.menudivv {
  position: absolute;
  top: 10px;
  right: -90px;
  width: 300px;
  display: none;
  margin-right: -100px;
  opacity: 0;
  transition: all 3s;
}

.form-kapsayici {
  position: fixed !important;
  z-index: 999999999;
  width: 260px;
  background: #fff;
  padding: 30px 25px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  right: -330px;
  top: 90px;
  transition: all 1s;
}

.form-etiket {
  position: fixed;
  z-index: 9;
  top: 190px;
  right: -50px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  background: #3f4727;
  transform: rotate(-90deg);
  padding: 19px;
  transition: all 1s;
  cursor: pointer;
}

.form-etiket span {
  font-size: 13px;
}

.form-kapat {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 9999999999;
}

.form-baslik {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.form-aciklama {
  font-size: 12px;
  color: #444;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}

.form-girdi {
  margin-bottom: 16px;
}

.form-girdi label {
  display: none;
  font-size: 14px;
  margin-bottom: 5px;
  color: #222;
}

.form-girdi input,
.form-girdi select {
  width: 100%;
  padding: 3px;
  border: none;
  border-bottom: 1px solid #aaa;
  background: transparent;
  font-size: 14px;
  outline: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}

.form-girdi input,
.form-girdi textarea {
  width: 100%;
  padding: 3px;
  border: none;
  border-bottom: 1px solid #aaa;
  background: transparent;
  font-size: 14px;
  outline: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}

.form-onay {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #333;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}

.form-onay input {
  margin-top: 4px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}

.form-girdi input::placeholder {
  color: #343434 !important;
  letter-spacing: 0.3px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}

.form-onay textarea::placeholder {
  color: #343434;
}

.form-gonder {
  margin-top: 10px;
  width: 100px;
  padding: 10px;
  background: #fff;
  border: 1px solid #444;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  margin: 10px;
  color: #000;
}

.menucenter {
  width: 85%;
  right: 0;
  margin: 0 auto;
  position: absolute;
  top: 30px;
  text-align: right;
}

.menucontent {
  text-align: left;
  margin-top: 100px;
}

.menucontent div ul li {
  margin-top: 19px;
  color: #fff;
  font-size: 38px;
  cursor: pointer;
  position: relative;
  left: -50%;
  opacity: 0;
  transition: all 1s;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  font-size: 21px;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-family: "Kanit", sans-serif;
  letter-spacing: 3px;
}

.sb2-hero {
  color: #2e3a22;
  width: 100%;
  margin: 0 auto;
  padding: 0px;
  overflow: hidden;
}

.sb2-hero__in {
  width: 90%;
  margin: 0 auto;
  overflow-x: hidden;
}

.sb2-title {
  margin: 0 0 18px;
  line-height: 1.1;
  font-size: 60px;
  font-family: "Aesthetic serif";
  font-weight: 500;
  color: #3f4727;
  padding: 30px;
  padding-top: 60px;
}

.sb2-slider {
  position: relative;
  background: #eef0e7;
  outline: none;
  width: 100%;
  margin-bottom: 20px;
}

.sb2-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.2, 0.65, 0.15, 1);
}

.sb2-slide {
  min-width: 100%;
  position: relative;
  padding: 20px 0;
}

.sb2-media {
  inset: 0;
  padding: 0 50px;
}

.sb2-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sb2-caption {
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #2a351f;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.55;
  bottom: 0;
  width: 70%;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.sb2-arrows {
  position: absolute;
  right: 50px;
  bottom: 100px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.sb2-arrow {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
}

.sb2-arrow:hover {
  transform: translateY(-1px);
  background: #f5f7ef;
}

.sb2-arrow svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 920px) {
  .sb2-caption {
    left: 36px;
    right: 36px;
    bottom: -30px;
    font-size: 16px;
    padding: 30px;
  }
}

.glx-wrap {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 16px;
  position: relative;
}

/* Galeri popup ölçülerini kontrol etmek için değişkenler */
:root {
  --glx-popup-width: 1200px;
  --glx-popup-height: 490px;
  --glx-popup-padding: 28px;
  --glx-item-height: 620px;
  --glx-zoom-width: 220%;
  --glx-zoom-height: 620px;
  --glx-reveal-spread: 40%;
  --glx-size-duration: 520ms;
  --glx-size-ease: cubic-bezier(0.16, 0.8, 0.25, 1);
}

.glx-title {
  text-align: center;
  margin: 0 0 18px;
  display: inline-block;
  vertical-align: middle;
  padding-left: 270px;
  font-weight: 500;
  color: #3f4727;
  font-size: 50px;
  font-family: "Belleza", sans-serif;
}

.glx-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0px;
  display: inline-block;
  vertical-align: middle;
  width: 65%;
  text-align: right;
}

.glx-tab {
  appearance: none;
  border: 1px solid #3f4727;
  background: #ffffff;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 3px;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  margin: 10px;
  color: #3f4727;
}

.glx-tab[aria-selected="true"] {
  background: #3f4727;
  color: #fff;
  border-color: #3f4727;
}

.glx-slider {
  position: relative;
  margin-top: 10px;
}

.glx-viewport {
  display: flex;
  gap: 0px;
  padding: 50px 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  align-items: center;
  justify-content: center;
}

.glx-viewport::-webkit-scrollbar {
  display: none;
}

/* Mobilde tek kart ve yatay kaydırma */
@media (max-width: 640px) {
  .glx-slider {
    overflow: hidden;
  }

  .glx-viewport {
    justify-content: flex-start;
    padding: 28px 12px;
    gap: 0;
  }

  .glx-item {
    flex-basis: calc(100% - 24px);
    width: calc(100% - 24px);
    margin: 0 12px;
    height: 420px;
  }
}

/* Kartlar */
.glx-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  position: relative;
  height: var(--glx-item-height, 620px);
  overflow: hidden;
  margin: 10px;
  transition: max-width var(--glx-size-duration) var(--glx-size-ease),
    max-height var(--glx-size-duration) var(--glx-size-ease);
}

@media (min-width: 640px) {
  .glx-item {
    flex-basis: 48%;
  }
}

@media (min-width: 960px) {
  .glx-item {
    flex-basis: 30%;
  }
}

@media (min-width: 1200px) {
  .glx-item {
    flex-basis: 23.9%;
  }
}

.glx-item[hidden] {
  display: none !important;
}

.glx-item img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.glx-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 260ms ease;
}

.glx-item.is-zoomed {
  /* Konteyner boyutunu sabit tut ki komşu kartlar itilmesin */
  z-index: 12;
  overflow: visible;
  position: relative;
  transform: translateZ(0);
  width: 100%;
}

/* Boyut animasyonu değişkenleri */
:root {
  --glx-size-anim-duration: 750ms;
  --glx-size-anim-ease: cubic-bezier(0.22, 0.68, 0.16, 1);
}

/* Boyut büyütme/küçültme için ek yumuşak animasyon (width/height) */
.glx-viewport .glx-item.is-zoomed img {
  animation: glx-size-open var(--glx-size-anim-duration) var(--glx-size-anim-ease);
  animation-fill-mode: both;
}

.glx-viewport .glx-item:not(.is-zoomed) img {
  animation: glx-size-close var(--glx-size-anim-duration) var(--glx-size-anim-ease);
  animation-fill-mode: both;
}

@keyframes glx-size-open {
  from {
    width: 100%;
    height: var(--glx-item-height, 620px);
    clip-path: inset(0 0 0 0);
  }

  to {
    width: var(--glx-zoom-width, 220%);
    height: var(--glx-zoom-height, 760px);
    clip-path: inset(calc(-1 * var(--glx-reveal-amount, 45%)) calc(-1 * var(--glx-reveal-amount, 45%)) calc(-1 * var(--glx-reveal-amount, 45%)) calc(-1 * var(--glx-reveal-amount, 45%)));
  }
}

@keyframes glx-size-close {
  from {
    width: var(--glx-zoom-width, 220%);
    height: var(--glx-zoom-height, 760px);
    clip-path: inset(calc(-1 * var(--glx-reveal-amount, 45%)) calc(-1 * var(--glx-reveal-amount, 45%)) calc(-1 * var(--glx-reveal-amount, 45%)) calc(-1 * var(--glx-reveal-amount, 45%)));
  }

  to {
    width: 100%;
    height: var(--glx-item-height, 620px);
    clip-path: inset(0 0 0 0);
    left: 0;
    top: 0;
    transform: translate(0, 0);
  }
}

/* Overflow'u yumuşak aç/kapa ve üstte göster (ek, mevcut kodu silmeden) */
:root {
  --glx-reveal-amount: 45%;
  --glx-reveal-duration: 420ms;
  --glx-reveal-ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --glx-overlay-z: 50;
}

.glx-viewport {
  position: relative;
}

.glx-viewport .glx-item {
  transition: max-width var(--glx-size-duration) var(--glx-size-ease),
    max-height var(--glx-size-duration) var(--glx-size-ease),
    width var(--glx-size-duration) var(--glx-size-ease),
    height var(--glx-size-duration) var(--glx-size-ease),
    box-shadow var(--glx-size-duration) var(--glx-size-ease),
    clip-path var(--glx-reveal-duration) var(--glx-reveal-ease);
}

.glx-viewport .glx-item img {
  clip-path: inset(0 0 0 0);
  transition: max-width var(--glx-size-duration) var(--glx-size-ease),
    max-height var(--glx-size-duration) var(--glx-size-ease),
    width var(--glx-size-duration) var(--glx-size-ease),
    height var(--glx-size-duration) var(--glx-size-ease),
    clip-path var(--glx-reveal-duration) var(--glx-reveal-ease);
}

.glx-viewport .glx-item.is-zoomed {
  width: 100%;
  z-index: var(--glx-overlay-z, 50);
  overflow: visible;
}

.glx-viewport .glx-item.is-zoomed img {
  clip-path: inset(calc(-1 * var(--glx-reveal-amount, 45%)) calc(-1 * var(--glx-reveal-amount, 45%)) calc(-1 * var(--glx-reveal-amount, 45%)) calc(-1 * var(--glx-reveal-amount, 45%)));
  width: var(--glx-zoom-width, 220%);
  height: var(--glx-zoom-height, 760px);
  max-width: none;
  max-height: none;
}

.glx-arrows {
  position: absolute;
  inset: auto 10px -35px 10px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  width: 60%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.glx-btn {
  border: unset !important;
  background: unset;
  place-items: center;
  cursor: pointer;
  pointer-events: auto;
}

.glx-btn svg {
  width: 60px;
  height: 60px;
}

.glx-dots {
  margin: 42px 0 0;
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* Mobilde ok ve noktalar i‡in konum dŸzeltmesi */
@media (max-width: 640px) {
  .glx-slider {
    padding-bottom: 80px; /* kontroller i‡in alan */
  }

  .glx-arrows {
    inset: auto 16px 32px 16px;
    width: calc(100% - 32px);
  }

  .glx-btn svg {
    width: 48px;
    height: 48px;
  }

  .glx-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    margin: 40px !important;
  }
}

/* Dot'lar artık <button> olacağı için button reset */
.glx-dot {
  width: 6px;
  height: 6px;
  border-radius: 60px;

  background: #afafaf;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;

  /* button reset */
  border: 0;
  padding: 0;
  margin: 0;
  line-height: 0;
  display: inline-block;
  appearance: none;
  -webkit-appearance: none;
  background-clip: padding-box;
}

.glx-dots {
  margin: 42px 0 0;
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* dot = button */
.glx-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #afafaf;

  /* button reset */
  border: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;

  cursor: pointer;
  transition: transform .2s, background .2s;

  /* iOS / mobile */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* aktif */
.glx-dot.is-active {
  background: #6f815a;
  transform: scale(1.2);
}

/* klavye ile gezen kullanıcılar için */
.glx-dot:focus-visible {
  outline: 2px solid #6f815a;
  outline-offset: 4px;
}


.glx-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--glx-popup-padding, 28px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
  height: 85%;
}

.glx-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.glx-popup[hidden] {
  display: none;
}

.glx-popup__content {
  position: relative;
  width: min(var(--glx-popup-width, 1200px), 92vw);
  height: min(var(--glx-popup-height, 780px), 90vh);
  transform: scale(0.9);
  transition: transform 340ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.glx-popup.is-open .glx-popup__content {
  transform: scale(1);
}

.glx-popup__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.glx-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.glx-popup__close:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: scale(1.02);
}

.glx-popup__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.glx-popup__nav--prev {
  left: -18px;
}

.glx-popup__nav--next {
  right: -18px;
}

.glx-popup__nav:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.02);
}

.glx-popup__caption {
  margin-top: 12px;
  text-align: center;
  color: #e9ecdf;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
}

@media (max-width: 680px) {
  .glx-popup {
    padding: 16px;
  }

  .glx-popup__content {
    width: 100%;
    height: min(var(--glx-popup-height, 520px), 82vh);
  }

  .glx-popup__nav {
    width: 42px;
    height: 42px;
  }

  .glx-popup__nav--prev {
    left: 6px;
  }

  .glx-popup__nav--next {
    right: 6px;
  }
}

body.glx-lock {
  overflow: hidden;
}

/* KVKK Modal */
.kvkk-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
}

.kvkk-modal[hidden] {
  display: none;
}

.kvkk-dialog {
  width: min(960px, 95vw);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: glx-pop-in 220ms ease-out;
}

.kvkk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.kvkk-title {
  margin: 0;
  font-size: 20px;
  color: #3f4727;
}

.kvkk-close {
  border: 0;
  background: #eef0e6;
  color: #3f4727;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.kvkk-close:hover {
  background: #d6dacc;
  transform: scale(1.04);
}

.kvkk-body {
  color: #444;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 18px;
}

.kvkk-footer {
  display: flex;
  justify-content: flex-end;
}

.kvkk-btn {
  border: 1px solid #3f4727;
  background: #3f4727;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.kvkk-btn-secondary {
  background: #fff;
  color: #3f4727;
}

.kvkk-btn:hover {
  background: #2f3523;
  color: #fff;
}

.kvkk-btn-secondary:hover {
  background: #eef0e6;
}

body.kvkk-lock {
  overflow: hidden;
}

@keyframes glx-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes glx-pop-in {
  from {
    transform: translateY(14px) scale(1);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

section.about-hero {
  min-height: 100vh;
  background-image: url("../images/senar.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #ffffff;
}

.about-panel {
  width: min(1120px, 100%);
  background: #3f4727db;
  padding: 60px;
  padding-top: 120px;
  padding-bottom: 120px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 36px;
}

.panel-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.25));
}

.panel-right {
  display: grid;
  align-content: center;
  gap: 16px;
  line-height: 1.65;
  font-size: 16px;
  color: #e7eadf;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.panel-right p {
  margin: 0px;
  width: 90%;
}

.panel-right a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 3px solid rgba(255, 255, 255, 0.8);
  padding-bottom: 3px;
}

.panel-right a:focus,
.panel-right a:hover {
  border-bottom-color: #ffffff;
}

@media (max-width: 980px) {
  .about-panel {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 22px;
  }

  .panel-left {
    justify-content: flex-start;
  }

  .brand-logo {
    max-width: 210px;
  }

  .panel-right {
    font-size: 15px;
  }
}

@media (max-width: 520px) {
  section.about-hero {
    padding: 16px;
  }

  .about-panel {
    padding: 22px 16px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px;
}

.form-head {
  margin: 12px 0 28px;
  margin-top: 60px;
}

.form-title {
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #3d452c;
  font-weight: 500;
  font-size: 45px;
  font-family: "Belleza", sans-serif;
}

.form-sub {
  margin: 0px;
  color: #5b6450;
  font-size: 15px;
  line-height: 1.55;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.contact-form {
  margin-top: 60px;
  margin-bottom: 60px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 22px;
  align-items: start;
}

.field {
  position: relative;
}

.input,
.textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 18px;
  border: 1px solid #3f4727;
  border-radius: 8px;
  background: #fff;
  color: #2b3022;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.textarea {
  min-height: 150px;
  height: 100%;
}

.input::placeholder,
.textarea::placeholder {
  color: #8a8f83;
}

.input:focus,
.textarea:focus {
  border-color: #3d452c;
  box-shadow: 0 0 0 3px rgba(61, 69, 44, 0.12);
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 22px;
  margin-top: -70px !important;
  position: relative;
}

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
}

.chk {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5b6450;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.chk input {
  width: 18px;
  height: 18px;
  accent-color: #3d452c;
  border: 1.5px solid #515c41;
  border-radius: 3px;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  background: #3d452c;
  color: #fff;
  letter-spacing: 3px;
  padding: 14px 28px;
  font-size: 15px;
  transition: transform 0.08s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  font-weight: 500;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

@media (max-width: 1100px) {

  .grid,
  .row2 {
    grid-template-columns: 1fr 1fr;
  }

  .col-msg {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {

  .grid,
  .row2 {
    grid-template-columns: 1fr;
  }

  .form-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    align-self: flex-end;
  }
}

.footer-hero {
  background: url("../images/footer.png") center/cover no-repeat;
  min-height: 520px;
  display: grid;
  align-content: end;
}

.footer-band {
  background: #3f4727e0;
  color: #fff;
  padding: 30px;
  width: 990px;
  margin: 0 auto;
  margin: 0 auto;
  margin-bottom: -60px;
}

.footer-band .container {
  max-width: 790px;
  margin: 0 auto;
}

.footer-logo {
  display: grid;
  place-items: center;
  margin-bottom: 26px;
}

.footer-logo svg {
  width: 160px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.25));
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 2px;
  opacity: 0.95;
  font-family: "Raleway", sans-serif;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.footer-nav .phone {
  white-space: nowrap;
  opacity: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.footer-bottom {
  background: #fff;
  color: #2e3226;
  padding: 0px;
  padding-top: 90px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-bottom .container {
  max-width: 990px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  flex-wrap: wrap;
}

.bottom-left,
.bottom-right {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.bottom-left a {
  color: #2e3226;
  text-decoration: none;
  opacity: 0.85;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
}

.follow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2e3226;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
}

.social {
  display: flex;
  gap: 12px;
}

.social a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #2e3226;
  text-decoration: none;
  transition: transform 0.08s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.social a:hover {
  transform: translateY(-1px);
  background: #e7eadf;
}

@media (max-width: 720px) {
  .footer-nav {
    gap: 20px;
  }

  .footer-logo img {
    width: 180px;
  }

  .bottom-right {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 520px) {
  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .bottom-right {
    justify-content: center;
  }
}

/* Security Slider Enhancement */
.security-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.sec-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.sec-slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
}

.sec-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

#kandilli {
  background: url(../images/pattern.jpg) repeat;
}

#kandilli .catalog-inner {
  display: flex;
  gap: 24px;
  align-items: center;
}

#kandilli .kandilli-left {
  flex: 1.5 1 0;
}

#kandilli .kandilli-center {
  flex: 1 1 0;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 100px;
  height: 540px;
  justify-content: flex-start;
}

#kandilli .kandilli-center .catalog-title-sm {
  font-size: 50px;
  line-height: 1.2;
  color: #ffffff;
  order: 2;
  font-weight: 400;
}

#kandilli .kandilli-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 590px;
}

#kandilli .kandilli-top {
  aspect-ratio: 16 / 9;
  order: 1;
}

#kandilli .kandilli-bottom {
  aspect-ratio: 3 / 4;
}

.fancybox-button--left {
  position: absolute !important;
  left: 16% !important;
  top: 1000% !important;
}

.fancybox-button--right {
  position: absolute !important;
  right: 16% !important;
  top: 1000% !important;
}

.catalog-wrap {
  padding: 80px 0;
  background: #f7f8f3;
  color: #1e1f19;
}

.catalog-wrap.catalog-alt {
  background: #ffffff;
}

.catalog-wrap.catalog-plan {
  padding-bottom: 100px;
}

.catalog-inner {
  width: min(1200px, 94%);
  margin: 0 auto;
  display: grid;
  gap: 28px;
  padding: 50px 50px 0px 50px;
}

.catalog-hero-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}

.catalog-two-col {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.catalog-heading {
  display: grid;
  gap: 10px;
  text-align: center;
}

.catalog-kicker {
  letter-spacing: 0.22em;
  font-size: 12px;
  text-transform: uppercase;
  color: #6a7450;
}

.catalog-title {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.1;
  font-weight: 700;
  color: #1e1f19;
}

.catalog-title-sm {
  font-size: 50px;
  line-height: 1.15;
  font-weight: 500;
  color: #3f4727;
  margin-bottom: 20px;
  font-family: "Belleza", sans-serif;
}

.catalog-lead {
  font-size: 18px;
  line-height: 1.6;
  color: #3f4727;
}

.catalog-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: #2f3225;
  margin-bottom: 12px;
}

.catalog-meta {
  font-weight: 600;
  color: #3f4727;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.catalog-media {
  position: relative;
  overflow: hidden;
}

.catalog-media img:nth-of-type(1) {
  width: 90%;
  height: 95%;
  display: block;
}

.catalog-tag,
.catalog-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  background: rgba(63, 71, 39, 0.85);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.catalog-grid.catalog-compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.catalog-card {
  background: #ffffff;
  border: 1px solid #e4e6dc;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  flex-direction: column;
}

.catalog-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.catalog-card h4 {
  font-size: 18px;
  color: #1f2218;
  letter-spacing: 0.02em;
}

.catalog-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #2f3225;
}

.catalog-card.catalog-card--mini {
  padding: 16px;
}

.catalog-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin-top: 8px;
}

.catalog-list li {
  font-size: 15px;
  line-height: 1.6;
  color: #2f3225;
}

.catalog-list li strong {
  color: #1f2218;
}

.catalog-plan .catalog-media {
  box-shadow: none;
  border: 1px solid #e4e6dc;
}

.catalog-plan .catalog-media img {
  border-radius: 14px;
}

.sb2-media h4 {
  font-size: 45px;
  color: #3f4727;
  letter-spacing: 0.02em;
  font-weight: 500;
  padding-bottom: 20px;
  font-family: "Belleza", sans-serif;
}

.sb2-media p {
  padding: 20px 0px 0px 0px;
  width: 80%;
  font-weight: 500;
}

#kandilli .catalog-media {
  display: block;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 980px) {
  #kandilli .catalog-inner {
    flex-direction: column;
    padding: 0;
  }

  #kandilli .kandilli-center {
    text-align: center;
  }

  #kandilli .kandilli-right {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .catalog-wrap {
    padding: 60px 0;
  }

  .catalog-media {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 640px) {
  .catalog-card__image {
    height: 170px;
  }
}

/* Sosyal Slider Styles */
#sosyal {
  /* Light beige background from design */
  padding: 60px 0 20px;
  position: relative;
}

#sosyal .catalog-inner {
  background-color: #eef0e7;
}

.sosyal-slider {
  position: relative;
  margin-top: 40px;
  padding-bottom: 40px;
  /* Space for dots */
  overflow: hidden;
}

.sosyal-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 0;
  /* Remove gap, we'll use padding in cards */
}

.sosyal-card {
  flex: 0 0 33.333%;
  padding: 0 12px;
  /* Gutter */
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.sosyal-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sosyal-card__content {
  padding: 30px 20px 20px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.sosyal-card h4 {
  font-size: 24px;
  color: #3f4727;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.3;
  font-family: "Belleza", sans-serif;
}

.sosyal-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.sosyal-card__media {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.sosyal-card__media img {
  width: 350px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Active State (Center Card) */
.sosyal-card.is-active .sosyal-card__content {
  background-color: #3f4727;
}

.sosyal-card.is-active h4 {
  color: #ffffff;
}

.sosyal-card.is-active p {
  color: rgba(255, 255, 255, 0.9);
}

.sosyal-card.is-active .sosyal-card__media {
  background-color: #3f4727;
}

/* Default state for non-active cards */
.sosyal-card__content {
  background-color: transparent;
  /* Or maybe slight off-white if needed, but looks transparent on section bg */
}

/* Navigation Arrows */
.sosyal-arrows {
  position: absolute;
  bottom: 50%;
  left: 190px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 999999;
  width: 80%;
}

.sosyal-arrow {
  pointer-events: all;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  /* Semi transparent like design */
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #888;
}

.sosyal-arrow:hover {
  background: #ffffff;
  color: #3f4727;
}

.sosyal-arrow svg {
  width: 24px;
  height: 24px;
}

/* Dots */
.sosyal-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.sosyal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sosyal-dot.is-active {
  background-color: #888;
  /* Darker grey for active dot */
}

@media (max-width: 980px) {
  .sosyal-card {
    flex: 0 0 50%;
  }
}

@media (max-width: 640px) {
  .sosyal-card {
    flex: 0 0 100%;
  }

  .sosyal-arrows {
    padding: 0 10px;
    left: 30px;
    right: 0px;
    bottom: 40px;
  }
}

/* Security Section Styles */
.security-section {
  background: url(../images/pattern1.jpg) repeat;
  background-color: #3f3e3a;
  /* Fallback color */
  padding: 80px 0;
  color: #fff;
}

.security-inner {
  width: min(1200px, 94%);
  margin: 0 auto;
}

.security-title {
  font-size: 45px;
  margin-bottom: 50px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  font-family: "Belleza", sans-serif;
}

.security-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  min-height: 580px;
}

.security-left {
  flex: 1.2;
  min-width: 0;
  /* Prevent flex overflow */
}

.security-right {
  flex: 0.8;
}

/* Security Slider */
.security-slider {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.sec-track {
  display: flex;
  transition: transform 0.4s ease-out;
}

.sec-slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 16/10;
}

.sec-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sec-arrows {
  position: absolute;
  bottom: 0px;
  left: 20px;
  display: flex;
  gap: 12px;
}

.sec-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #3f4727;
  transition: transform 0.2s;
}

.sec-arrow:hover {
  transform: scale(1.1);
}

.sec-arrow svg {
  width: 20px;
  height: 20px;
}

/* Security Features List */
.sec-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 30px;
}

.sec-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.sec-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  background: #fff;
  /* Circle bg from design seems white/light */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
}

.sec-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sec-text h4 {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.sec-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 980px) {
  .security-content {
    flex-direction: column;
    gap: 40px;
  }

  .security-left,
  .security-right {
    flex: none;
    width: 100%;
  }
}

.office-office-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.office-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.office-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.office-card {
  position: relative;
  z-index: 2;
  background-color: #f0f2ea;
  padding: 20px 20px;
  max-width: 330px;
  text-align: center;
  margin-left: 25%;
  margin-top: 60px;
  margin-bottom: 60px;
}

.office-title {
  font-size: 40px;
  color: #3f4727;
  /* Dark Green */
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 1.2px;
  font-family: "Belleza", sans-serif;
}

.office-address {
  font-size: 13px;
  line-height: 1.6;
  color: #3f4727;
  margin-bottom: 26px;
  font-weight: 500;
  letter-spacing: 1.1px;
}

.office-phone {
  font-size: 25px;
  color: #3f4727;
  margin-bottom: 30px;
  letter-spacing: 2px;
  font-weight: 500;
}

.office-btn-outline {
  display: inline-block;
  padding: 10px 31px;
  border: 1px solid #3f4727;
  color: #3f4727;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1px;
  transition: all 0.25s ease;
  border-radius: 5px;
  font-weight: 500;
}

.office-btn-outline:hover {
  background-color: #3f4727;
  color: #fff;
}

@media (max-width: 768px) {
  .office-card {
    padding: 30px 0px;
    margin: 20px auto;
    width: 100%;
    max-width: 460px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .bottom-left {
    flex-direction: column;
    gap: 10px;
  }
}

/* KVKK Modal Styles */
.modal-content {
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
  background: #b5a07f;
  color: white;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  padding: 20px 25px;
}

.modal-title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.btn-close {
  filter: invert(1);
}

.modal-body {
  padding: 25px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

.modal-body p {
  margin-bottom: 15px;
}

.modal-body p:last-child {
  margin-bottom: 0;
}

.modal-footer {
  border-top: 1px solid #dee2e6;
  padding: 15px 25px;
}

.modal-footer .btn-secondary {
  background: #6c757d;
  border-color: #6c757d;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  padding: 8px 20px;
}

.modal-footer .btn-secondary:hover {
  background: #5a6268;
  border-color: #545b62;
}

/* Responsive Design for Modal */
@media (max-width: 768px) {

  .detaileyebrow span {
    font-size: 70px;
  }

  .eyebrow span {
    font-size: 30px;
  }

  #sosyal .catalog-inner {
    padding: 0;
  }

  .modal-dialog {
    margin: 10px;
  }

  .modal-header {
    padding: 15px 20px;
  }

  .modal-title {
    font-size: 16px;
  }

  .modal-body {
    padding: 20px;
    font-size: 13px;
  }

  .modal-footer {
    padding: 12px 20px;
  }

  #kandilli .catalog-media {
    justify-content: center;
  }

  .sec-arrows {
    bottom: -70px;
    left: 1px;
  }

  .link {
    margin-right: 0px;
  }

  .sb2-media p {
    width: 95%;
  }

  .sb2-arrows {
    right: 10px;
    bottom: 10px;
  }

  .menumobil {
    display: block;
    z-index: 999;
  }
  .menudiv .brand{
    margin-top: 40px;
  }
}
