/* =====================
   LOCAL FONTS
   ===================== */

/* Montserrat — latin-ext (Türkçe karakterler dahil) */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Montserrat — latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Open Sans — latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('fonts/opensans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Open Sans — latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('fonts/opensans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }

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

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(13, 27, 62, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 1.6rem;
  color: #fff; letter-spacing: 2px;
}
.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; font-size: 0.85rem;
  color: #25c55e; letter-spacing: 1px;
}

nav ul { list-style: none; display: flex; gap: 32px; }
nav ul li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  color: #fff; letter-spacing: 0.5px;
}
nav ul li a:hover { color: #25c55e; }

/* ── DROPDOWN ── */
nav ul li.has-dropdown { position: relative; }

nav ul li.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.7;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13,27,62,0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(37,197,94,0.2);
  border-radius: 12px;
  padding: 24px 0 8px;
  min-width: 220px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
  transition-delay: 300ms;
}

nav ul li.has-dropdown:hover .dropdown,
nav ul li.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0ms;
}

.dropdown li a {
  display: block;
  padding: 11px 22px;
  font-size: 0.87rem;
  color: #a7f3c1;
  white-space: nowrap;
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
}

.dropdown li a:hover {
  background: rgba(126,200,227,0.12);
  color: #fff;
}

.dropdown li a.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Hamburger butonu — masaüstünde gizli */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* X animasyonu */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================
   HERO SLIDER
   ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.slider { position: absolute; inset: 0; }

.slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,25,60,0.55) 0%,
    rgba(10,25,60,0.3) 50%,
    rgba(10,25,60,0.65) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 3;
}

.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 20px;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 5rem);
  color: #fff; letter-spacing: 3px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #fff; margin-bottom: 36px; line-height: 1.8;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, #1aaa4a, #25c55e);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1rem;
  border-radius: 50px; letter-spacing: 1px;
  box-shadow: 0 8px 32px rgba(185,148,46,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(185,148,46,0.55);
  color: #fff;
}

.slider-dots {
  position: absolute; bottom: 100px; left: 50%;
  transform: translateX(-50%);
  z-index: 4; display: flex; gap: 10px;
}

.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent; cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.dot.active { background: #fff; border-color: #fff; }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4;
  background: rgba(255,255,255,0.15); border: none;
  color: #fff; font-size: 2.8rem; line-height: 1;
  width: 52px; height: 52px; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); transition: background 0.2s;
}
.slider-arrow:hover { background: rgba(255,255,255,0.3); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* =====================
   HİZMETLER
   ===================== */
.services {
  padding: 100px 0 80px;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #e2eaf4;
  box-shadow: 0 2px 16px rgba(10,25,60,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(185,148,46,0.16);
}

.service-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
}

.service-card--wide .service-img {
  width: 50%;
  height: auto;
  min-height: 280px;
}

.service-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

/* Kart slider */
.card-slider { position: relative; }

.card-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-slide.active { opacity: 1; }

.service-card:hover .service-img img {
  transform: scale(1.07);
}

.service-body {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1.15rem;
  color: #0d1b3e; margin-bottom: 12px;
}

.service-body p {
  font-size: 0.95rem; color: #4b5563; line-height: 1.75;
}

/* =====================
   HAKKIMIZDA
   ===================== */
.about {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d1b3e 0%, #1a3a5c 100%);
  color: #fff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #0d1b3e;
  text-align: center;
  margin-bottom: 10px;
}
.section-title.left { text-align: left; }
.section-sub {
  text-align: center; color: #6b7280;
  font-size: 1.05rem; margin-bottom: 56px;
}

.about .section-title { color: #fff; }

.about-text p {
  color: #fff; margin-bottom: 16px; font-size: 1rem;
}

.about-image img {
  width: 100%; border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  object-fit: cover; height: 340px;
}


/* =====================
   TAM GENİŞLİK HARİTA
   ===================== */
.map-fullwidth {
  width: 100%;
  line-height: 0;
}

.map-fullwidth iframe {
  display: block;
  width: 100%;
  height: 33vh;
  min-height: 200px;
  border: none;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: #080f1f;
  color: #a7f3c1;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.footer-logo-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 2rem;
  color: #fff; letter-spacing: 2px;
}

.footer-logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; font-size: 0.9rem;
  color: #25c55e; letter-spacing: 1px;
}

.footer-tagline {
  font-size: 0.92rem;
  color: rgba(204,232,244,0.7);
  line-height: 1.75;
  max-width: 320px;
}

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(37,197,94,0.25);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col ul li svg {
  width: 16px; height: 16px;
  min-width: 16px;
  color: #25c55e;
  fill: #25c55e;
}

.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.92rem;
  color: rgba(204,232,244,0.8);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  padding: 18px 0;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(204,232,244,0.4);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

/* ── FLOATING WHATSAPP ── */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 500;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
}

.float-wa svg {
  width: 30px;
  height: 30px;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  /* Hamburger mobile */
  .hamburger { display: flex; }

  nav ul {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(13, 27, 62, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 16px 0 24px;
    z-index: 199;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }

  nav ul.open { display: flex; }

  nav ul li a {
    display: block;
    padding: 14px 28px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  /* Mobil dropdown */
  nav ul li.has-dropdown > a::after { content: ' ▾'; }

  .dropdown {
    position: static;
    transform: none;
    background: rgba(255,255,255,0.04);
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.2s, visibility 0.2s, max-height 0.3s;
    transition-delay: 0ms;
  }

  nav ul li.has-dropdown.open .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 400px;
  }

  .dropdown li a {
    padding: 12px 28px 12px 44px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card--wide {
    flex-direction: column;
    grid-column: 1;
  }

  .service-card--wide .service-img {
    width: 100%;
    height: 260px;
  }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image { display: none; }

  .contact-inner { grid-template-columns: 1fr; }

  nav ul { gap: 16px; }

  .footer-main { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; padding-bottom: 36px; }

  .slider-arrow { display: none; }

  .map-fullwidth iframe { height: 360px; }
}

/* =====================
   SATILIK İLANLAR
   ===================== */
.listings {
  padding: 80px 0 90px;
  background: #f4f6fa;
}

.listing-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
}

.listing-tab {
  padding: 10px 28px;
  border: 2px solid #25c55e;
  background: transparent;
  color: #0d1b3e;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.listing-tab.active,
.listing-tab:hover {
  background: #25c55e;
  color: #fff;
}

.listing-card {
  display: none;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.listing-card.active { display: grid; }

/* Fotoğraf carousel */
.listing-photos {
  position: relative;
}

.listing-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  background: #0d1b3e;
}

.listing-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s;
}

.listing-photo.active { opacity: 1; }

.listing-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #25c55e;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}

.lc-prev, .lc-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13,27,62,0.6);
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}

.lc-prev:hover, .lc-next:hover { background: rgba(37,197,94,0.85); }
.lc-prev { left: 10px; }
.lc-next { right: 10px; }

.lc-counter {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.82rem;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 2;
}

/* Detay */
.listing-details {
  padding: 8px 0;
}

.listing-details h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #0d1b3e;
  margin-bottom: 24px;
  line-height: 1.3;
}

.listing-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding: 0;
}

.listing-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
  font-size: 0.95rem;
  color: #374151;
}

.spec-label {
  font-weight: 700;
  color: #0d1b3e;
  min-width: 120px;
}

.listing-note {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.listing-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #25c55e;
  margin-bottom: 28px;
}

.listing-btns {
  display: flex;
  gap: 12px;
}

.btn-listing-tel, .btn-listing-wa {
  flex: 1;
  text-align: center;
  padding: 13px 20px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.btn-listing-tel {
  background: #0d1b3e;
  color: #fff;
}

.btn-listing-tel:hover { background: #1a3a5c; }

.btn-listing-wa {
  background: #25d366;
  color: #fff;
}

.btn-listing-wa:hover { background: #1ebe5d; }

@media (max-width: 768px) {
  .listing-card.active { grid-template-columns: 1fr; }
  .listing-tabs { flex-wrap: wrap; }
}
