/* ═══════════════════════════════════════════
   Brand Vadi İstanbul — Theme CSS
   ═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --navy:      #1C3A5E;
  --navy-deep: #0F2340;
  --navy-mid:  #234872;
  --green:     #4E7A52;
  --green-lt:  #6A9E6E;
  --cream:     #F8F7F4;
  --grey:      #8A9BB0;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset / Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--cream); color: var(--navy); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ── Container ── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 52px; }
@media (max-width: 1024px) { .container { padding: 0 32px; } }
@media (max-width: 640px)  { .container { padding: 0 20px; } }

/* ── Reveal Animation ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff;
  transition: box-shadow 0.35s var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(15,35,64,0.14); }

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 0 52px;
  height: 70px;
}
.site-header.scrolled .header-inner { height: 60px; }

/* Logo */
.site-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.site-logo img { height: 54px; width: auto; transition: height 0.35s var(--ease); }
.site-header.scrolled .site-logo img { height: 46px; }

/* Remove WP custom logo link styles */
.site-logo .custom-logo-link { display: flex; }
.site-logo .custom-logo { height: 54px; width: auto !important; }
.site-header.scrolled .site-logo .custom-logo { height: 46px; }

/* Primary Nav */
.header-nav { display: flex; align-items: stretch; }
.header-nav .nav-menu { list-style: none; display: flex; align-items: stretch; }
.header-nav .nav-menu li { display: flex; }
.header-nav .nav-menu li a {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 0 15px; height: 70px;
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(28,58,94,0.5); text-decoration: none;
  position: relative; transition: color 0.22s var(--ease); white-space: nowrap;
}
.header-nav .nav-menu li a::after {
  content: '';
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%) translateY(5px);
  width: 46px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 62 20'%3E%3Cpath d='M10 5C7 1 2 0 0 3C3 2 6 3 8 5L9 6L10 7L11 6L12 5C14 3 17 2 20 3C18 0 13 1 10 5Z' fill='%231C3A5E'/%3E%3Cpath transform='translate(26,4) scale(0.6)' d='M10 5C7 1 2 0 0 3C3 2 6 3 8 5L9 6L10 7L11 6L12 5C14 3 17 2 20 3C18 0 13 1 10 5Z' fill='%231C3A5E'/%3E%3Cpath transform='translate(44,8) scale(0.45)' d='M10 5C7 1 2 0 0 3C3 2 6 3 8 5L9 6L10 7L11 6L12 5C14 3 17 2 20 3C18 0 13 1 10 5Z' fill='%231C3A5E'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat; background-position: center;
  opacity: 0; transition: opacity 0.28s var(--ease), transform 0.32s var(--ease);
  pointer-events: none;
}
.header-nav .nav-menu li a:hover { color: var(--navy); }
.header-nav .nav-menu li a:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }
.header-nav .nav-menu li.current-menu-item > a,
.header-nav .nav-menu li.current-page-ancestor > a { color: var(--navy); font-weight: 600; }
.header-nav .nav-menu li.current-menu-item > a::after { opacity: 0.7; transform: translateX(-50%) translateY(0); }

/* ── Desktop Sub-menu Dropdown ── */
.header-nav .nav-menu .menu-item-has-children { position: relative; }
.header-nav .nav-menu .menu-item-has-children > a { flex-direction: row; align-items: center; gap: 5px; }
.nav-chevron { display: inline-flex; align-items: center; opacity: 0.45; margin-top: 1px; transition: transform 0.26s var(--ease), opacity 0.22s; flex-shrink: 0; }
.nav-chevron svg { width: 9px; height: 9px; }
.header-nav .nav-menu .menu-item-has-children:hover > a .nav-chevron,
.header-nav .nav-menu .menu-item-has-children:focus-within > a .nav-chevron { transform: rotate(180deg); opacity: 1; }

.header-nav .nav-menu .sub-menu {
  position: absolute; top: 100%; left: 0;
  transform: translateY(-6px);
  min-width: 210px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(28,58,94,0.07), 0 12px 36px rgba(28,58,94,0.13), 0 0 0 1px rgba(28,58,94,0.07);
  list-style: none; padding: 6px;
  z-index: 999;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.24s var(--ease), visibility 0.2s;
}
.header-nav .nav-menu .sub-menu::before {
  content: ''; position: absolute; top: 0; left: 16px; right: 16px;
  height: 2px; background: linear-gradient(90deg, var(--navy-deep), var(--green));
  border-radius: 1px 1px 0 0;
}
.header-nav .nav-menu .menu-item-has-children:hover > .sub-menu,
.header-nav .nav-menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.header-nav .nav-menu .sub-menu li { display: block; width: 100%; }
.header-nav .nav-menu .sub-menu li a {
  display: block;
  height: auto; padding: 10px 16px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  color: rgba(28,58,94,0.55); text-decoration: none;
  border-radius: 8px; white-space: nowrap;
  transition: color 0.18s, background 0.18s;
}
.header-nav .nav-menu .sub-menu li a::after { display: none !important; }
.header-nav .nav-menu .sub-menu li a:hover { color: var(--navy); background: rgba(28,58,94,0.04); }
.header-nav .nav-menu .sub-menu li.current-menu-item > a { color: var(--navy); font-weight: 600; background: rgba(28,58,94,0.05); }

/* ── Mobile Sub-menu Accordion ── */
.mnd-menu .menu-item-has-children { position: relative; flex-wrap: wrap; display: flex; }
.mnd-menu .menu-item-has-children > a { flex: 1; padding-right: 56px; }
.mnd-sub-toggle {
  position: absolute; right: 0; top: 0;
  width: 56px; height: 53px;
  background: transparent; border: none; border-left: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, background 0.2s;
}
.mnd-sub-toggle:hover { color: #fff; background: rgba(255,255,255,0.04); }
.mnd-sub-toggle svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.mnd-menu .menu-item-has-children.sub-open > .mnd-sub-toggle { color: #fff; }
.mnd-menu .menu-item-has-children.sub-open > .mnd-sub-toggle svg { transform: rotate(180deg); }
.mnd-menu .sub-menu {
  width: 100%; list-style: none;
  max-height: 0; overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.4,0,0.2,1);
  background: rgba(0,0,0,0.18);
}
.mnd-menu .menu-item-has-children.sub-open > .sub-menu { max-height: 800px; }
.mnd-menu .sub-menu li { display: block; }
.mnd-menu .sub-menu li a {
  padding: 13px 28px 13px 44px;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.09em;
  color: rgba(255,255,255,0.45); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s, background 0.2s, padding-left 0.22s;
}
.mnd-menu .sub-menu li a::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: var(--green-lt); opacity: 0.5; flex-shrink: 0; }
.mnd-menu .sub-menu li a:hover { color: #fff; background: rgba(255,255,255,0.04); padding-left: 52px; }
.mnd-menu .sub-menu li a:hover::before { opacity: 1; }
.mnd-menu .sub-menu li.current-menu-item > a { color: var(--green-lt); }

/* Header Bar (color stripe) */
.header-bar {
  height: 6px; position: relative; overflow: hidden;
  background: var(--navy);
}
.header-bar::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy-deep) 0%, var(--navy) 25%, var(--navy-mid) 50%, var(--green) 75%, var(--navy) 100%);
  opacity: 0.7;
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Header CTA Butonları (Tema Ayarları'ndan) */
.header-cta {
  display: inline-flex; align-items: center;
  padding: 9px 18px; border-radius: 9px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; transition: all .22s; white-space: nowrap;
}
.header-cta.hcta-outline {
  border: 1.5px solid rgba(28,58,94,.22); color: var(--navy);
  background: transparent;
}
.header-cta.hcta-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.header-cta.hcta-solid {
  background: #4e7a52; color: #fff; border: 1.5px solid #4e7a52;
}
.header-cta.hcta-solid:hover { background: #3d6140; border-color: #3d6140; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(78,122,82,.28); }
@media (max-width: 900px) { .header-cta { display: none; } }

.action-phone {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  background: transparent; border: 1.5px solid rgba(28,58,94,0.14); border-radius: 10px;
  padding: 9px 18px; transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.action-phone:hover { background: var(--navy); border-color: var(--navy); box-shadow: 0 6px 20px rgba(28,58,94,0.18); }
.action-phone .ph-icon {
  width: 34px; height: 34px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.25s;
}
.action-phone .ph-icon svg { width: 14px; height: 14px; fill: #fff; }
.action-phone:hover .ph-icon { background: rgba(255,255,255,0.15); }
.action-phone .ph-text { display: flex; flex-direction: column; }
.action-phone .ph-text span:first-child { font-size: 14px; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; line-height: 1.2; transition: color 0.25s; }
.action-phone .ph-text span:last-child  { font-size: 10px; font-weight: 400; color: var(--grey); letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.25s; }
.action-phone:hover .ph-text span:first-child { color: #fff; }
.action-phone:hover .ph-text span:last-child  { color: rgba(255,255,255,0.55); }

.action-divider { width: 1px; height: 36px; background: rgba(28,58,94,0.1); margin: 0 4px; flex-shrink: 0; }

.action-katalog {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  background: var(--green); border-radius: 10px; padding: 9px 20px;
  border: 1.5px solid transparent; transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.action-katalog:hover { background: var(--green-lt); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(78,122,82,0.28); }
.action-katalog .kat-icon svg { width: 16px; height: 16px; fill: #fff; }
.action-katalog .kat-text { display: flex; flex-direction: column; }
.action-katalog .kat-text span:first-child { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.2; }
.action-katalog .kat-text span:last-child  { font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.65); letter-spacing: 0.08em; text-transform: uppercase; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border: none; background: none; flex-shrink: 0;
}
.hamburger span { width: 22px; height: 1.5px; background: var(--navy); border-radius: 2px; display: block; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Page wrap offset for fixed header */
.page-wrap { padding-top: 76px; }

/* ══════════════════════════════════════
   MOBILE NAV DRAWER
══════════════════════════════════════ */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,24,44,0.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: 199; opacity: 0; transition: opacity 0.32s;
}
.mobile-nav-overlay.active { opacity: 1; }

.mobile-nav-drawer {
  position: fixed; top: 0; right: 0;
  width: min(340px, 88vw); height: 100dvh;
  background: var(--navy-deep); z-index: 200;
  transform: translateX(100%); transition: transform 0.38s var(--ease);
  display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-nav-drawer.open { transform: translateX(0); }

.mnd-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); flex-shrink: 0;
}
.mnd-logo img, .mnd-logo .custom-logo { height: 42px; width: auto !important; }
.mnd-close {
  width: 36px; height: 36px; background: rgba(255,255,255,0.08); border: none; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; transition: background 0.2s;
}
.mnd-close:hover { background: rgba(255,255,255,0.15); }
.mnd-close svg { width: 15px; height: 15px; }

.mnd-links { flex: 1; padding: 12px 0; }
.mnd-links .mnd-menu { list-style: none; }
.mnd-links .mnd-menu li a {
  display: block; padding: 15px 28px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s, padding-left 0.22s;
}
.mnd-links .mnd-menu li a:hover,
.mnd-links .mnd-menu li.current-menu-item > a { color: #fff; background: rgba(255,255,255,0.04); padding-left: 36px; }
.mnd-links .mnd-menu li.current-menu-item > a { color: var(--green-lt); }

.mnd-contact { padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.08); flex-shrink: 0; }
.mnd-phone {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  margin-bottom: 14px; color: rgba(255,255,255,0.8); font-size: 16px; font-weight: 600;
}
.mnd-phone svg { width: 18px; height: 18px; fill: var(--green-lt); flex-shrink: 0; }
.mnd-katalog-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--green); border-radius: 10px; padding: 14px; text-decoration: none;
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; transition: background 0.22s;
}
.mnd-katalog-btn:hover { background: var(--green-lt); }
.mnd-katalog-btn svg { width: 15px; height: 15px; fill: #fff; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: #0e2338; }

.footer-main { position: relative; overflow: hidden; }
.footer-inner {
  max-width: 1400px; margin: 0 auto; padding: 88px 52px;
  display: grid; grid-template-columns: 1fr 1px 1fr; gap: 72px; align-items: start;
}

.footer-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green-lt); display: block; margin-bottom: 14px; }
.footer-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px,2.5vw,38px); font-weight: 400; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.footer-lead { font-size: 13px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.45); max-width: 380px; margin-bottom: 44px; }

.footer-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.fc-block-label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--green-lt); margin-bottom: 14px; display: block; }
.fc-block-item {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.65;
  margin-bottom: 8px; text-decoration: none; transition: color 0.2s;
}
.fc-block-item:hover { color: #fff; }
.fc-block-item svg { width: 13px; height: 13px; fill: var(--green-lt); flex-shrink: 0; margin-top: 3px; }

.footer-map-btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,0.22); border-radius: 8px; padding: 12px 22px;
  text-decoration: none; color: rgba(255,255,255,0.75);
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s, background 0.25s; margin-bottom: 44px;
}
.footer-map-btn:hover { border-color: var(--green-lt); color: #fff; background: rgba(255,255,255,0.04); }
.footer-map-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer-social { display: flex; align-items: center; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center; transition: border-color 0.22s, background 0.22s;
}
.footer-social a:hover { border-color: var(--green-lt); background: rgba(78,122,82,0.15); }
.footer-social a svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.55); transition: fill 0.22s; }
.footer-social a:hover svg { fill: #fff; }

.footer-vdiv { background: rgba(255,255,255,0.08); align-self: stretch; width: 1px; }

/* Footer Form */
.footer-form-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px,2.4vw,36px); font-weight: 400; color: #fff; line-height: 1.2; margin-bottom: 36px; }
.footer-form { display: flex; flex-direction: column; }
.ff-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.ff-field { display: flex; flex-direction: column; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 4px; }
.ff-field label { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.ff-field input, .ff-field textarea { background: none; border: none; outline: none; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 300; color: #fff; }
.ff-field input::placeholder, .ff-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.ff-field textarea { resize: none; height: 72px; }
.ff-field-full { grid-column: 1 / -1; }
.ff-kvkk { display: flex; align-items: center; gap: 12px; padding: 20px 0; font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.45); cursor: pointer; }
.ff-kvkk input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--green); cursor: pointer; flex-shrink: 0; }
.ff-kvkk a { color: var(--green-lt); text-decoration: underline; }
.ff-submit {
  width: 100%; padding: 18px; background: var(--green); border: none; border-radius: 8px;
  color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; margin-top: 8px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.ff-submit:hover { background: var(--green-lt); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(78,122,82,0.3); }
.ff-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Footer Bottom */
.footer-bottom-wrap { border-top: 1px solid rgba(255,255,255,0.07); }
.footer-bottom {
  padding: 28px 52px; max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px;
}
.fb-brand { display: flex; align-items: center; gap: 14px; }
.fb-brand img { height: 36px; opacity: 0.8; }
.fb-brand span { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.35); border-left: 1px solid rgba(255,255,255,0.15); padding-left: 14px; }
.fb-links .footer-menu { list-style: none; display: flex; align-items: center; justify-content: center; gap: 28px; }
.fb-links .footer-menu li a { font-size: 11.5px; font-weight: 300; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.22s; }
.fb-links .footer-menu li a:hover { color: rgba(255,255,255,0.75); }
.fb-right { text-align: right; font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.28); line-height: 1.7; }

/* ══════════════════════════════════════
   FLOATING CTA
══════════════════════════════════════ */
.fcta-overlay {
  position: fixed; inset: 0; background: rgba(10,24,44,0.45); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  z-index: 109; opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.fcta-overlay.active { opacity: 1; pointer-events: all; }

.fcta-tab {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 111;
  background: var(--navy); border-radius: 10px 0 0 10px; border: none;
  width: 48px; padding: 14px 0;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: background 0.22s, opacity 0.25s, transform 0.3s var(--ease);
  box-shadow: -4px 0 20px rgba(15,35,64,0.2);
}
.fcta-tab:hover { background: var(--navy-mid); }
.fcta-tab.hidden { opacity: 0; pointer-events: none; transform: translateY(-50%) translateX(100%); }

.fcta-tab-icon { width: 34px; height: 34px; background: rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.fcta-tab-icon svg { width: 15px; height: 15px; fill: #fff; }
.fcta-tab-text { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.88); white-space: nowrap; }
.fcta-tab-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; position: relative; }
.fcta-tab-dot::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; background: var(--green); opacity: 0.3; animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0%,100%{transform:scale(1);opacity:.3} 50%{transform:scale(1.8);opacity:0} }

.fcta-panel {
  position: fixed; right: 0; top: 0; width: min(560px,100vw); height: 100vh;
  background: #fff; z-index: 110; display: flex; flex-direction: column; justify-content: center;
  box-shadow: -12px 0 50px rgba(15,35,64,0.16);
  transform: translateX(100%); transition: transform 0.42s var(--ease);
}
.fcta-panel.active { transform: translateX(0); }
.fcta-inner { display: flex; flex-direction: column; max-height: 100vh; overflow-y: auto; }
.fcta-inner::-webkit-scrollbar { width: 4px; }
.fcta-inner::-webkit-scrollbar-thumb { background: rgba(28,58,94,0.18); border-radius: 2px; }

.fcta-head {
  flex-shrink: 0; background: #fff; padding: 22px 32px 18px;
  border-bottom: 1px solid rgba(28,58,94,0.07); display: flex; align-items: flex-start; justify-content: space-between;
}
.fcta-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; color: var(--navy); line-height: 1.2; margin-bottom: 6px; }
.fcta-sub { font-size: 12px; color: var(--grey); line-height: 1.7; max-width: 380px; }
.fcta-close-btn {
  width: 36px; height: 36px; border: 1.5px solid rgba(28,58,94,0.15); border-radius: 8px;
  background: none; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s; color: var(--navy);
}
.fcta-close-btn:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.fcta-close-btn svg { width: 14px; height: 14px; }

.fcta-body { padding: 20px 32px 32px; }
.fcta-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 8px; }
.fcta-field {
  width: 100%; padding: 10px 14px; border: none; border-bottom: 1.5px solid rgba(28,58,94,0.15);
  font-family: 'Plus Jakarta Sans',sans-serif; font-size: 13px; color: var(--navy); outline: none; background: transparent; transition: border-color 0.2s;
}
.fcta-field::placeholder { color: rgba(28,58,94,0.35); }
.fcta-field:focus { border-color: var(--navy); }
.fcta-kvkk { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(28,58,94,0.6); margin-top: 12px; cursor: pointer; }
.fcta-kvkk input { accent-color: var(--navy); width: 15px; height: 15px; flex-shrink: 0; }
.fcta-kvkk a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.fcta-submit {
  width: 100%; padding: 14px; background: var(--navy); color: #fff;
  font-family: 'Plus Jakarta Sans',sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: 8px; margin-top: 16px; transition: background 0.22s, transform 0.2s;
}
.fcta-submit:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ══════════════════════════════════════
   SCROLL TOP
══════════════════════════════════════ */
.scroll-top {
  position: fixed; bottom: 32px; left: 32px; width: 44px; height: 44px;
  background: var(--navy); border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 90; opacity: 0; pointer-events: none;
  transform: translateY(10px); transition: opacity 0.3s, transform 0.3s, background 0.22s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2); color: #fff;
}
.scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top:hover { background: var(--navy-mid); }
.scroll-top svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════
   BLOG / ARCHIVE
══════════════════════════════════════ */
.blog-archive { padding: 80px 0; }
.blog-archive-header { text-align: center; margin-bottom: 56px; }
.eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.archive-title { font-family: 'Cormorant Garamond',serif; font-size: clamp(32px,4vw,56px); font-weight: 300; color: var(--navy); line-height: 1.1; }

.blog-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.blog-card { background: #fff; border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 2px 20px rgba(15,35,64,0.06); transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease); }
.blog-card:hover { box-shadow: 0 20px 60px rgba(15,35,64,0.13); transform: translateY(-6px); }

.bc-img-link { display: block; overflow: hidden; aspect-ratio: 16/10; position: relative; }
.bc-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.blog-card:hover .bc-img-link img { transform: scale(1.05); }
.bc-num { position: absolute; top: 18px; left: 22px; font-family: 'Cormorant Garamond',serif; font-size: 72px; font-weight: 300; color: rgba(255,255,255,0.16); line-height: 1; z-index: 2; pointer-events: none; }

.bc-body { padding: 28px 32px 32px; flex: 1; display: flex; flex-direction: column; }
.bc-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.bc-cat { font-size: 9px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); background: rgba(78,122,82,0.1); padding: 5px 13px; border-radius: 20px; }
.bc-date { font-size: 11.5px; font-weight: 400; color: var(--grey); }
.bc-title { font-family: 'Cormorant Garamond',serif; font-size: clamp(20px,2.2vw,28px); font-weight: 400; color: var(--navy); line-height: 1.2; margin-bottom: 14px; text-decoration: none; display: block; transition: color 0.22s; }
.bc-title:hover { color: var(--navy-mid); }
.bc-excerpt { font-size: 13.5px; font-weight: 300; line-height: 1.85; color: #6a7a90; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 24px; }
.bc-divider { height: 1px; background: rgba(28,58,94,0.07); margin-bottom: 20px; }
.bc-foot { display: flex; align-items: center; justify-content: space-between; }
.bc-more { display: inline-flex; align-items: center; gap: 9px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); text-decoration: none; transition: color 0.22s, gap 0.25s; }
.bc-more:hover { color: var(--green); gap: 14px; }
.bc-more svg { width: 16px; height: 16px; transition: transform 0.25s; }
.bc-more:hover svg { transform: translateX(3px); }

.pagination { margin-top: 60px; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: 8px; }
.pagination .page-numbers { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: #fff; color: var(--navy); text-decoration: none; font-size: 13px; font-weight: 500; border: 1px solid rgba(28,58,94,0.1); transition: background 0.2s, color 0.2s; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--navy); color: #fff; }

/* ══════════════════════════════════════
   SINGLE POST / ARTICLE
══════════════════════════════════════ */
.article-container { max-width: 100%; }
.article-hero { position: relative; height: 70vh; min-height: 480px; overflow: hidden; display: flex; align-items: flex-end; }
.article-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-hero .ah-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(10,24,44,.1) 0%,rgba(10,24,44,.8) 100%); }
.article-hero .ah-content { position: relative; z-index: 2; padding: 0 52px 60px; }
.ah-cat { display: inline-flex; font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green-lt); background: rgba(78,122,82,0.2); border: 1px solid rgba(106,158,110,0.35); padding: 6px 16px; border-radius: 20px; margin-bottom: 18px; }
.ah-title { font-family: 'Cormorant Garamond',serif; font-size: clamp(28px,5vw,56px); font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 22px; max-width: 820px; }
.ah-meta { display: flex; align-items: center; gap: 24px; }
.ah-date { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.55); }
.ah-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.ah-time { font-size: 12px; color: rgba(255,255,255,0.4); }

.article-wrap { background: #fff; }
.article-inner { max-width: 800px; margin: 0 auto; padding: 72px 52px 80px; }
.article-body p { font-size: 15.5px; font-weight: 300; line-height: 1.95; color: #4a5a6e; margin-bottom: 28px; }
.article-body h2 { font-family: 'Cormorant Garamond',serif; font-size: clamp(22px,2.5vw,32px); font-weight: 500; color: var(--navy); margin: 52px 0 20px; padding-top: 12px; border-top: 2px solid rgba(78,122,82,0.2); position: relative; }
.article-body h2::before { content: ''; position: absolute; top: -2px; left: 0; width: 40px; height: 2px; background: var(--green); }
.article-body blockquote { margin: 36px 0; padding: 24px 32px; border-left: 3px solid var(--green); background: rgba(78,122,82,0.05); border-radius: 0 8px 8px 0; }
.article-body blockquote p { font-family: 'Cormorant Garamond',serif; font-size: 18px; font-style: italic; color: var(--navy-mid); margin: 0; }
.article-tags { margin-top: 52px; padding-top: 32px; border-top: 1px solid rgba(28,58,94,0.08); display: flex; flex-wrap: wrap; gap: 8px; }
.article-tags a { font-size: 11px; font-weight: 500; color: var(--navy); background: rgba(28,58,94,0.06); padding: 6px 14px; border-radius: 20px; text-decoration: none; transition: background 0.2s, color 0.2s; }
.article-tags a:hover { background: var(--navy); color: #fff; }

/* ── FCTA Sol Konum ── */
.fcta-tab.fcta-left  { right: auto; left: 0; border-radius: 0 10px 10px 0; }
.fcta-tab.fcta-left.hidden { transform: translateY(-50%) translateX(-100%); }
.fcta-panel.fcta-left { right: auto; left: 0; transform: translateX(-100%); box-shadow: 12px 0 50px rgba(15,35,64,0.16); }
.fcta-panel.fcta-left.active { transform: translateX(0); }

/* ── FCTA Panel Telefon ── */
.fcta-head-phone { display: flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--navy); }

/* ══════════════════════════════════════
   WHATSAPP BUTONU
══════════════════════════════════════ */
.wa-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.22s, box-shadow 0.22s;
  text-decoration: none;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-btn svg { width: 28px; height: 28px; }
.wa-btn--left { right: auto; left: 24px; }

/* ══════════════════════════════════════
   WP ADMIN BAR UYUMU
══════════════════════════════════════ */
body.wp-toolbar .fcta-panel { top: 32px; height: calc(100vh - 32px); }
body.wp-toolbar .fcta-inner { max-height: calc(100vh - 32px); }
body.wp-toolbar .fcta-tab   { top: calc(50% + 16px); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1280px) {
  .header-inner { gap: 24px; padding: 0 32px; }
  .header-nav .nav-menu li a { padding: 0 11px; font-size: 11.5px; }
  .footer-inner { padding: 64px 32px; }
  .footer-bottom { padding: 24px 32px; }
}
@media (max-width: 1024px) {
  .header-inner { grid-template-columns: 1fr auto; padding: 0 24px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .action-phone, .action-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-vdiv { display: none; }
  .footer-bottom { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .fb-brand { justify-content: center; }
  .fb-links .footer-menu { justify-content: center; flex-wrap: wrap; }
  .fb-right { text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-inner { padding: 52px 32px; }
}
@media (max-width: 768px) {
  .footer-contact-grid { grid-template-columns: 1fr; }
  .ff-row { grid-template-columns: 1fr; }
  .footer-inner { padding: 52px 24px; }
  .footer-bottom { padding: 20px 24px; }
  .article-hero .ah-content { padding: 0 24px 40px; }
}
@media (max-width: 640px) {
  .header-inner { height: 60px; padding: 0 16px; }
  .site-header.scrolled .header-inner { height: 54px; }
  .page-wrap { padding-top: 66px; }
  .scroll-top { bottom: 20px; left: 20px; width: 38px; height: 38px; }
  .fcta-tab { width: 40px; }
}

/* ══════════════════════════════════════
   BRAND STRIP
══════════════════════════════════════ */
.brand-strip { background: #003a5d; position: relative; z-index: 10; }
.brand-strip-inner { max-width: 1400px; margin: 0 auto; padding: 0 52px; display: grid; grid-template-columns: auto 1px auto 1px 1fr; align-items: stretch; min-height: 160px; }
.brand-strip-left { display: flex; align-items: center; gap: 28px; padding: 36px 52px 36px 0; }
.ems-logo { height: 56px; width: auto; flex-shrink: 0; opacity: 0.92; }
.brand-strip-info { display: flex; flex-direction: column; gap: 6px; }
.brand-strip-by { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.38); }
.brand-strip-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: #fff; line-height: 1.3; }
.brand-strip-name em { font-style: italic; color: rgba(255,255,255,0.65); font-size: 17px; }
.brand-strip-divider { background: rgba(255,255,255,0.1); align-self: stretch; }
.brand-strip-right { display: flex; align-items: stretch; }
.brand-strip-action { display: flex; align-items: center; gap: 20px; padding: 36px; cursor: pointer; transition: background 0.25s; text-decoration: none; }
.brand-strip-action:hover { background: rgba(255,255,255,0.04); }
.bsa-icon { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.22); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 0.25s, background 0.25s; }
.brand-strip-action:hover .bsa-icon { border-color: var(--green-lt); background: rgba(78,122,82,0.15); }
.bsa-icon svg { width: 20px; height: 20px; fill: #fff; }
.bsa-text { display: flex; flex-direction: column; gap: 5px; }
.bsa-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; }
.bsa-desc { font-size: 12.5px; font-weight: 300; line-height: 1.65; color: rgba(255,255,255,0.45); max-width: 220px; }
.brand-strip-vdiv { background: rgba(255,255,255,0.1); width: 1px; flex-shrink: 0; }
.brand-strip-stats { display: flex; align-items: stretch; flex: 1; }
.bss-item { flex: 1; display: flex; align-items: center; gap: 14px; padding: 28px 24px; border-left: 1px solid rgba(255,255,255,0.1); }
.bss-icon { flex-shrink: 0; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); }
.bss-icon svg { width: 38px; height: 38px; }
.bss-info { display: flex; flex-direction: column; gap: 3px; }
.bss-num { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: #fff; line-height: 1.1; letter-spacing: 0.01em; }
.bss-label { font-size: 10.5px; font-weight: 400; color: rgba(255,255,255,0.42); letter-spacing: 0.04em; line-height: 1.4; }

/* ══════════════════════════════════════
   VIDEO MODAL
══════════════════════════════════════ */
.vmodal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.vmodal.active { opacity: 1; pointer-events: all; }
.vmodal-backdrop { position: absolute; inset: 0; background: rgba(5,14,30,0.88); backdrop-filter: blur(6px); }
.vmodal-box { position: relative; z-index: 1; width: 100%; max-width: 960px; aspect-ratio: 16/9; background: #000; border-radius: 8px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.6); transform: scale(0.93); transition: transform 0.35s var(--ease); }
.vmodal.active .vmodal-box { transform: scale(1); }
.vmodal-box iframe { width: 100%; height: 100%; border: none; display: block; }
.vmodal-close { position: absolute; top: -40px; right: 0; width: 32px; height: 32px; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 28px; line-height: 1; cursor: pointer; transition: color 0.2s; }
.vmodal-close:hover { color: #fff; }

/* ══════════════════════════════════════
   VILLAS SECTION
══════════════════════════════════════ */
.villas-section { background: var(--cream); padding: 52px 52px 56px; }
.villas-header { max-width: 1400px; margin: 0 auto 60px; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.section-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--green); }
.villas-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 58px); font-weight: 400; color: var(--navy); line-height: 1.08; }
.villas-title em { font-style: italic; font-weight: 300; color: var(--navy-mid); }
.villas-sub { font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--grey); max-width: 320px; text-align: right; }
.villas-slider-wrap { max-width: 1400px; margin: 0 auto; position: relative; overflow: hidden; }
.villas-track { display: flex; gap: 20px; transition: transform 0.58s cubic-bezier(0.25,0.46,0.45,0.94); will-change: transform; user-select: none; -webkit-user-select: none; }
.villas-track img { pointer-events: none; }
.villa-card { flex-shrink: 0; position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; background: var(--navy-deep); }
.vc-img { position: absolute; inset: 0; }
.vc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); will-change: transform; }
.villa-card:hover .vc-img img { transform: scale(1.07); }
.vc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,15,32,0.96) 0%, rgba(5,15,32,0.55) 45%, rgba(5,15,32,0.08) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px 26px; transition: background 0.4s; }
.villa-card:hover .vc-overlay { background: linear-gradient(to top, rgba(5,15,32,0.97) 0%, rgba(5,15,32,0.72) 55%, rgba(5,15,32,0.12) 100%); }
.vc-eyebrow { font-size: 9.5px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: var(--green-lt); margin-bottom: 7px; }
.vc-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,3vw,44px); font-weight: 400; color: #fff; line-height: 1; margin-bottom: 6px; letter-spacing: 0.02em; }
.vc-specs { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0; transition: margin-bottom 0.35s; }
.villa-card:hover .vc-specs { margin-bottom: 14px; }
.vc-desc { font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.65); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; max-height: 0; opacity: 0; transform: translateY(6px); transition: max-height 0.4s ease, opacity 0.35s ease, transform 0.35s ease; }
.villa-card:hover .vc-desc { max-height: 80px; opacity: 1; transform: translateY(0); }
.vc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.12); opacity: 0; transform: translateY(6px); transition: opacity 0.35s 0.05s, transform 0.35s 0.05s; }
.villa-card:hover .vc-foot { opacity: 1; transform: translateY(0); }
.vc-more { font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 7px; }
.vc-more svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2; transition: transform 0.25s; }
.vc-more:hover svg { transform: translateX(3px); }
.vc-floor { font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; }
.vs-nav { max-width: 1400px; margin: 28px auto 0; display: flex; align-items: center; justify-content: space-between; }
.vs-dots { display: flex; align-items: center; gap: 8px; }
.vs-dot { width: 28px; height: 3px; border-radius: 2px; background: rgba(28,58,94,0.18); border: none; cursor: pointer; transition: background 0.3s, width 0.3s; padding: 0; }
.vs-dot.active { width: 52px; background: var(--navy); }
.vs-arrows { display: flex; align-items: center; gap: 10px; }
.vs-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(28,58,94,0.2); background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.22s, border-color 0.22s, opacity 0.22s; }
.vs-arrow:hover { background: var(--navy); border-color: var(--navy); }
.vs-arrow:hover svg { stroke: #fff; }
.vs-arrow:disabled { opacity: 0.28; cursor: default; pointer-events: none; }
.vs-arrow svg { width: 16px; height: 16px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ══════════════════════════════════════
   LOCATION SECTION
══════════════════════════════════════ */
.location-section { background: var(--cream); padding: 0 0 112px; }
.location-inner { max-width: 1400px; margin: 0 auto; padding: 0 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: stretch; }
.location-map-wrap { display: flex; flex-direction: column; }
.location-map-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.lm-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: ctaPulse 2.5s infinite; }
.lm-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); }
.location-map-frame { border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(15,35,64,0.13); flex: 1; min-height: 400px; position: relative; }
.location-map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; }
.location-info { padding-top: 8px; }
.location-info .section-eyebrow { margin-bottom: 14px; }
.location-title-wrap { margin-bottom: 28px; }
.location-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px,3.5vw,52px); font-weight: 400; color: var(--navy); line-height: 1.1; margin-bottom: 20px; }
.location-title em { font-style: italic; font-weight: 300; }
.location-lead { font-size: 15px; font-weight: 300; line-height: 1.85; color: #5a6a7e; max-width: 480px; }
.location-divider { width: 100%; height: 1px; background: rgba(28,58,94,0.1); margin: 36px 0; }
.nearby-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy); margin-bottom: 24px; }
.nearby-cats { display: flex; flex-direction: column; gap: 20px; }
.nearby-cat { display: flex; gap: 16px; align-items: flex-start; }
.nc-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(28,58,94,0.07); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.nc-icon svg { width: 17px; height: 17px; stroke: var(--navy); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.nc-body { display: flex; flex-direction: column; gap: 4px; }
.nc-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); }
.nc-items { font-size: 13.5px; font-weight: 300; line-height: 1.7; color: #6b7c91; }

/* ══════════════════════════════════════
   PRIV / AYRICALIKLAR SECTION
══════════════════════════════════════ */
.priv-section { background: var(--navy-deep); overflow: hidden; }
.priv-inner { max-width: 1400px; margin: 0 auto; padding: 0 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; min-height: 680px; }
.priv-left { padding: 96px 0; }
.priv-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green-lt); margin-bottom: 20px; }
.priv-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--green-lt); }
.priv-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px,3.5vw,52px); font-weight: 400; color: #fff; line-height: 1.1; margin-bottom: 52px; }
.priv-heading em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.65); }
.priv-features { display: flex; flex-direction: column; }
.priv-feature { padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.08); cursor: pointer; transition: border-color 0.3s; }
.priv-feature:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.priv-feature.active { border-top-color: rgba(255,255,255,0.22); }
.pf-head { display: flex; align-items: center; gap: 16px; margin-bottom: 0; transition: margin-bottom 0.35s; }
.priv-feature.active .pf-head { margin-bottom: 14px; }
.pf-num { font-family: 'Cormorant Garamond', serif; font-size: 13px; font-weight: 400; color: var(--green-lt); letter-spacing: 0.1em; flex-shrink: 0; min-width: 22px; }
.pf-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: rgba(255,255,255,0.75); line-height: 1.2; transition: color 0.3s; flex: 1; }
.priv-feature.active .pf-title { color: #fff; font-size: 21px; }
.pf-plus { width: 20px; height: 20px; flex-shrink: 0; position: relative; }
.pf-plus::before, .pf-plus::after { content: ''; position: absolute; background: rgba(255,255,255,0.35); border-radius: 1px; transition: transform 0.35s, opacity 0.35s, background 0.3s; }
.pf-plus::before { width: 14px; height: 1px; top: 50%; left: 3px; transform: translateY(-50%); }
.pf-plus::after { width: 1px; height: 14px; left: 10px; top: 3px; transform: translateX(-50%); }
.priv-feature.active .pf-plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.priv-feature.active .pf-plus::before { background: var(--green-lt); }
.pf-desc { font-size: 13.5px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.48); padding-left: 38px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.4s ease, opacity 0.35s ease; }
.priv-feature.active .pf-desc { max-height: 140px; opacity: 1; }
.priv-right { position: relative; height: 100%; min-height: 560px; border-radius: 16px; overflow: hidden; align-self: stretch; }
.priv-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.priv-slide.active { opacity: 1; z-index: 1; }
.priv-slide img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; user-select: none; -webkit-user-select: none; }
.priv-right::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px; background: linear-gradient(transparent, rgba(5,15,32,0.65)); z-index: 2; pointer-events: none; }
.priv-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.priv-dot { width: 24px; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.3); border: none; cursor: pointer; padding: 0; transition: background 0.3s, width 0.3s; }
.priv-dot.active { width: 40px; background: #fff; }

/* ══════════════════════════════════════
   ARAZI SECTION
══════════════════════════════════════ */
.arazi-section { background: #fff; padding: 108px 0; }
.arazi-inner { max-width: 1400px; margin: 0 auto; padding: 0 52px; display: grid; grid-template-columns: 1fr 1.35fr; gap: 88px; align-items: center; }
.arazi-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,3.4vw,50px); font-weight: 400; color: var(--navy); line-height: 1.15; margin-bottom: 28px; }
.arazi-title em { font-style: italic; font-weight: 300; color: var(--navy-mid); }
.arazi-desc { font-size: 15px; font-weight: 300; line-height: 1.9; color: #5a6a7e; max-width: 460px; }
.arazi-video-wrap { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; background: var(--navy-deep); box-shadow: 0 28px 72px rgba(15,35,64,0.18); cursor: pointer; }
.arazi-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease, opacity 0.3s; }
.arazi-video-wrap:hover .arazi-thumb { transform: scale(1.04); opacity: 0.82; }
.arazi-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; z-index: 2; }
.arazi-play-ring { width: 76px; height: 76px; border-radius: 50%; background: rgba(255,255,255,0.96); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 36px rgba(0,0,0,0.28); transition: transform 0.28s var(--ease), box-shadow 0.28s; }
.arazi-video-wrap:hover .arazi-play-ring { transform: scale(1.1); box-shadow: 0 16px 48px rgba(0,0,0,0.32); }
.arazi-play-ring svg { width: 26px; height: 26px; fill: var(--navy); margin-left: 4px; }
.arazi-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; }

/* ══════════════════════════════════════
   SECTION RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1000px) {
  .brand-strip-inner { grid-template-columns: 1fr; padding: 0 20px; }
  .brand-strip-divider { display: none; }
  .brand-strip-left { padding: 28px 0 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .brand-strip-right { flex-wrap: wrap; }
  .brand-strip-action { padding: 24px 16px; }
  .brand-strip-stats { flex-wrap: wrap; }
  .bss-item { padding: 20px 16px; min-width: 0; }
  .bss-num { font-size: 18px; }
}
@media (max-width: 900px) {
  .villas-header { flex-direction: column; align-items: flex-start; }
  .villas-sub { text-align: left; max-width: 100%; }
  .villas-section { padding: 72px 32px 88px; }
  .location-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 32px; }
  .location-section { padding: 0 0 80px; }
  .priv-inner { grid-template-columns: 1fr; gap: 0; padding: 0; }
  .priv-left { padding: 64px 32px 48px; }
  .priv-right { min-height: 360px; border-radius: 0; align-self: auto; }
  .arazi-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 32px; }
  .arazi-section { padding: 72px 0; }
}
@media (max-width: 640px) {
  .villas-section { padding: 56px 20px 72px; }
  .villa-card { aspect-ratio: 4/3; }
  .brand-strip-inner { padding: 0 16px; }
  .brand-strip-left { flex-direction: column; align-items: flex-start; gap: 12px; }
  .brand-strip-action { width: 100%; padding: 20px 16px; border-top: 1px solid rgba(255,255,255,0.08); }
  .brand-strip-vdiv { display: none; }
  .brand-strip-stats { display: grid; grid-template-columns: 1fr 1fr; width: 100%; flex: none; }
  .bss-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); padding: 14px 12px; flex: none; }
  .bss-num { font-size: 14px; word-break: break-word; }
}

/* ══════════════════════════════════════════
   VILLALAR SAYFA — Page Banner
══════════════════════════════════════════ */
.vpage-wrap { background: var(--cream); }

.page-banner {
  position: relative;
  height: 58vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-top: 76px;
  overflow: hidden;
}
.page-banner-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  animation: bannerScale 8s ease-out forwards;
}
@keyframes bannerScale { to { transform: scale(1); } }
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,24,44,0.3) 0%, rgba(10,24,44,0.75) 100%);
}
.page-banner-content {
  position: relative; z-index: 2;
  padding: 0 52px 60px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 16px;
}
.page-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.page-breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.page-breadcrumb span { color: rgba(255,255,255,0.25); }
.page-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300;
  color: #fff;
  line-height: 1.0;
  letter-spacing: 0.01em;
}
.page-banner-title em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.65); }

/* ── Genel Sayfa İçerik Alanı ── */
.page-content-section { padding: 80px 24px; }
.page-content-inner { max-width: 860px; margin: 0 auto; }
.page-content-body { font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--navy); }
.page-content-body h1,
.page-content-body h2,
.page-content-body h3,
.page-content-body h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; color: var(--navy); margin: 1.6em 0 0.5em; line-height: 1.2; }
.page-content-body h1 { font-size: clamp(28px, 4vw, 44px); }
.page-content-body h2 { font-size: clamp(22px, 3vw, 34px); }
.page-content-body h3 { font-size: clamp(18px, 2.4vw, 26px); }
.page-content-body h4 { font-size: 18px; }
.page-content-body p  { margin-bottom: 1.2em; }
.page-content-body a  { color: var(--navy); text-underline-offset: 3px; }
.page-content-body a:hover { color: var(--green); }
.page-content-body ul,
.page-content-body ol { padding-left: 1.4em; margin-bottom: 1.2em; }
.page-content-body li { margin-bottom: 0.4em; }
.page-content-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 24px 0; }
.page-content-body blockquote { border-left: 3px solid var(--green); margin: 28px 0; padding: 12px 24px; font-style: italic; color: #5a6a7e; }
.page-content-body table { width: 100%; border-collapse: collapse; margin-bottom: 1.4em; font-size: 14px; }
.page-content-body th,
.page-content-body td { padding: 10px 14px; border: 1px solid rgba(28,58,94,0.12); text-align: left; }
.page-content-body th { background: rgba(28,58,94,0.05); font-weight: 600; }
.page-content-body hr { border: none; border-top: 1px solid rgba(28,58,94,0.1); margin: 36px 0; }

/* ══════════════════════════════════════════
   VILLALAR SAYFA — Intro Section
══════════════════════════════════════════ */
.villas-intro {
  background: #fff;
  padding: 80px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
.vi-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--green); margin-bottom: 18px;
}
.vi-eyebrow::before { content: ''; display: block; width: 26px; height: 1px; background: var(--green); }
.vi-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400; color: var(--navy);
  line-height: 1.15;
}
.vi-title em { font-style: italic; font-weight: 300; color: var(--navy-mid); }
.vi-desc {
  font-size: 15px; font-weight: 300;
  line-height: 1.9; color: #5a6a7e;
}

/* ══════════════════════════════════════════
   VILLALAR SAYFA — Grid
══════════════════════════════════════════ */
.vg-section {
  background: var(--cream);
  padding: 0 52px 100px;
}
.vg-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.vg-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 20px rgba(15,35,64,0.06);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.vg-card:hover { box-shadow: 0 20px 60px rgba(15,35,64,0.13); transform: translateY(-6px); }

.vg-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.vg-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.8s var(--ease);
  pointer-events: none; user-select: none; -webkit-user-select: none;
}
.vg-card:hover .vg-img img { transform: scale(1.05); }
.vg-img-ph { width: 100%; height: 100%; background: var(--navy-mid); }

.vg-num {
  position: absolute; top: 20px; left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 88px; font-weight: 300;
  color: rgba(255,255,255,0.18);
  line-height: 1; letter-spacing: -0.03em;
  pointer-events: none; user-select: none; -webkit-user-select: none;
  z-index: 2;
}

.vg-body {
  padding: 32px 36px 36px;
  flex: 1; display: flex; flex-direction: column;
  background: #fff;
}
.vg-eyebrow {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.vg-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--green); }
.vg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 3.4vw, 56px); font-weight: 300;
  color: var(--navy); line-height: 1.0;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.vg-specs {
  display: flex; align-items: center; gap: 12px;
  font-size: 11.5px; font-weight: 500;
  color: var(--grey); margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.vg-specs-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(138,155,176,0.5); }
.vg-desc {
  font-size: 13.5px; font-weight: 300;
  line-height: 1.85; color: #6a7a90;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 32px;
}
.vg-divider { height: 1px; background: rgba(28,58,94,0.07); margin-bottom: 24px; }
.vg-foot { display: flex; align-items: center; }
.vg-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  transition: color 0.25s var(--ease), gap 0.25s var(--ease);
}
.vg-cta:hover { color: var(--green); gap: 16px; }
.vg-cta svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.25s var(--ease);
}
.vg-cta:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════════
   VILLA DETAY SAYFASI
══════════════════════════════════════════ */
.vdet-hero {
  min-height: 68vh;
  padding-top: 76px;
  background: var(--navy-deep) center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.vdet-hero-over {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,24,44,.12) 0%, rgba(10,24,44,.78) 100%);
  display: flex; align-items: flex-end;
  width: 100%;
}
.vdet-hero-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 52px 60px;
  color: #fff;
}

.vdet-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 16px;
}
.vdet-breadcrumb a { color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s; }
.vdet-breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.vdet-breadcrumb span { color: rgba(255,255,255,0.2); }

.vdet-badge {
  display: inline-block;
  background: var(--green); color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em;
  padding: 4px 14px; border-radius: 20px; text-transform: uppercase;
  margin-bottom: 14px;
}

.vdet-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.vdet-specs {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.vdet-spec {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 12.5px; font-weight: 600; color: #fff;
  letter-spacing: 0.05em;
}
.vdet-spec svg { width: 14px; height: 14px; opacity: 0.7; }
.vdet-spec-price { background: var(--green); border-color: var(--green); }

.vdet-body { background: var(--cream); padding-bottom: 96px; }

.vdet-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 340px;
  gap: 48px; padding: 64px 52px 0;
}

.vdet-main { display: flex; flex-direction: column; gap: 48px; }

.vdet-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: #5a6a7e;
}

.vdet-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(28,58,94,0.12);
  line-height: 1.1;
}

.vdet-ozellik-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
}
.vdet-ozellik-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; font-weight: 300; color: #5a6a7e; line-height: 1.6;
}
.vdet-ozellik-list li svg {
  width: 15px; height: 15px;
  flex-shrink: 0; margin-top: 2px;
  stroke: var(--green); fill: none;
}

.vdet-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.vdet-gal-item {
  display: block; aspect-ratio: 4/3; overflow: hidden;
  border-radius: 10px; position: relative;
  background: rgba(28,58,94,0.08);
}
.vdet-gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s var(--ease); }
.vdet-gal-item:hover img { transform: scale(1.07); }
.vdet-gal-over {
  position: absolute; inset: 0;
  background: rgba(15,35,64,0.42); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s var(--ease);
}
.vdet-gal-over svg { width: 22px; height: 22px; }
.vdet-gal-item:hover .vdet-gal-over { opacity: 1; }

/* Sidebar */
.vdet-sidebar { display: flex; flex-direction: column; gap: 16px; }
.vdet-sidebar-card {
  background: var(--navy-deep); color: #fff;
  border-radius: 16px; padding: 28px;
  position: sticky; top: 96px;
}
.vdet-sidebar-title {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.26em;
  text-transform: uppercase; color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 8px;
}
.vdet-sidebar-title::before {
  content: '';
  display: block; width: 20px; height: 1px;
  background: rgba(255,255,255,0.25);
}
.vdet-info-list { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; }
.vdet-info-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 13px;
}
.vdet-info-list li span { color: rgba(255,255,255,0.4); font-weight: 300; }
.vdet-info-list li strong { color: #fff; font-weight: 600; }
.vdet-price-row strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400;
  color: var(--green-lt) !important;
  letter-spacing: 0.01em;
}

.vdet-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: #fff;
  text-decoration: none; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 20px; border-radius: 10px;
  transition: background 0.22s var(--ease);
  width: 100%; box-sizing: border-box;
}
.vdet-cta:hover { background: var(--green-lt); color: #fff; }
.vdet-cta svg { width: 14px; height: 14px; }

.vdet-back {
  display: flex; align-items: center; gap: 8px;
  color: var(--navy); text-decoration: none;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 18px; border: 1.5px solid rgba(28,58,94,0.18);
  border-radius: 10px; transition: border-color 0.22s var(--ease), background 0.22s var(--ease), color 0.22s var(--ease);
  background: #fff;
}
.vdet-back:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.vdet-back svg { width: 14px; height: 14px; }

/* Villa slider card: yardımcı sınıflar (ana sayfa) */
.vc-img-ph { width: 100%; height: 100%; background: var(--navy); }
.vc-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--green); color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em;
  padding: 3px 12px; border-radius: 20px; text-transform: uppercase;
  z-index: 2;
}
.vc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.6);
}
.vc-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.vc-specs span {
  font-size: 10.5px; background: rgba(255,255,255,0.1);
  padding: 3px 10px; border-radius: 20px;
  color: rgba(255,255,255,0.75); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* Responsive — Villalar */
@media (max-width: 1280px) {
  .vg-section { padding: 0 32px 80px; }
}
@media (max-width: 1000px) {
  .villas-intro { grid-template-columns: 1fr; gap: 32px; padding: 64px 32px; }
  .vg-section { padding: 0 24px 72px; }
  .vg-grid { gap: 2px; }
  .page-banner-content { padding: 0 32px 44px; }
}
@media (max-width: 768px) {
  .page-banner { height: 50vh; }
  .vg-grid { grid-template-columns: 1fr; }
  .vg-body { padding: 24px 24px 28px; }
}
@media (max-width: 640px) {
  .villas-intro { padding: 48px 20px; }
  .vg-section { padding: 0 0 0; }
  .vg-grid { gap: 1px; }
  .page-banner-content { padding: 0 20px 40px; }
}
@media (max-width: 1024px) {
  .vdet-inner { padding: 48px 32px 0; gap: 32px; }
}
@media (max-width: 900px) {
  .vdet-inner { grid-template-columns: 1fr; }
  .vdet-sidebar-card { position: static; }
  .vdet-hero-inner { padding: 0 32px 48px; }
  .vdet-ozellik-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .vdet-hero { min-height: 55vh; padding-top: 66px; }
  .vdet-hero-inner { padding: 0 20px 40px; }
  .vdet-inner { padding: 36px 20px 0; gap: 24px; }
  .vdet-gallery { grid-template-columns: 1fr 1fr; }
  .vdet-ozellik-list { grid-template-columns: 1fr; }
  .vdet-body { padding-bottom: 56px; }
}

/* ============================================================
   VILLA DETAY SAYFASI — single-villa.php
   ============================================================ */

/* ── Hero ── */
.villa-hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; display: flex; align-items: flex-end; }
.vh-bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; transform: scale(1.06); animation: heroScale 10s ease-out forwards; }
@keyframes heroScale { to { transform: scale(1.0); } }
.vh-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,24,44,0.15) 0%, rgba(10,24,44,0.2) 50%, rgba(10,24,44,0.82) 100%); }
.vh-content { position: relative; z-index: 2; width: 100%; padding: 0 52px 72px; }
.vh-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.vh-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.vh-breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.vh-breadcrumb span { color: rgba(255,255,255,0.2); }
.vh-label { font-size: 10px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--green-lt); display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.vh-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--green-lt); }
.vh-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(72px, 11vw, 160px); font-weight: 300; color: #fff; line-height: 0.9; letter-spacing: -0.01em; margin-bottom: 24px; }
.vh-specs { display: flex; align-items: center; gap: 20px; }
.vh-spec { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.vh-spec-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.3); flex-shrink: 0; }
.vh-scroll { position: absolute; right: 52px; bottom: 80px; display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 3; }
.vh-scroll-line { width: 1px; height: 56px; background: linear-gradient(to bottom, rgba(255,255,255,0.0), rgba(255,255,255,0.5)); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(0.6);opacity:0.4} }
.vh-scroll-text { writing-mode: vertical-rl; font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ── Intro ── */
.villa-intro { background: #fff; padding: 96px 52px; }
.vi-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1px 1fr; gap: 80px; align-items: start; }
.vi-divider { background: rgba(28,58,94,0.08); align-self: stretch; }
.vi-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 52px); font-weight: 400; color: var(--navy); line-height: 1.1; }
.vi-heading em { font-style: italic; font-weight: 300; color: var(--navy-mid); }
.villa-intro .vi-desc { font-size: 15.5px; font-weight: 300; line-height: 2.0; color: #5a6a7e; margin-bottom: 18px; }
.vi-ozellik-list { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.vi-ozellik-list li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 400; line-height: 1.5; color: var(--navy); }
.vi-ozellik-list li svg { flex-shrink: 0; opacity: 0.65; }

.vi-specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(28,58,94,0.08); border: 1px solid rgba(28,58,94,0.08); border-radius: 12px; overflow: hidden; margin-top: 18px; }
.vi-spec-item { background: #fff; padding: 22px 20px; display: flex; flex-direction: column; gap: 6px; }
.vi-spec-label { font-size: 9px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); }
.vi-spec-value { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--navy); line-height: 1; }

.vi-catalog-btn {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 22px;
  padding: 11px 22px; border: 1.5px solid var(--navy); border-radius: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  transition: background 0.22s, color 0.22s;
}
.vi-catalog-btn:hover { background: var(--navy); color: #fff; }
.vi-catalog-btn svg { transition: stroke 0.22s; }
.vi-catalog-btn:hover svg { stroke: #fff; }

/* ── Features ── */
.villa-features { background: var(--cream); }
.vf-section { min-height: 90vh; display: grid; grid-template-columns: 1fr 1fr; }
.vf-section.reverse { direction: rtl; }
.vf-section.reverse > * { direction: ltr; }
.vf-image { position: relative; overflow: hidden; }
.vf-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.vf-section:hover .vf-image img { transform: scale(1.04); }
.vf-content { display: flex; flex-direction: column; justify-content: center; padding: 80px 72px; background: #fff; }
.vf-section:nth-child(even) .vf-content { background: var(--navy-deep); }
.vf-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: 0.38em; text-transform: uppercase; color: var(--green-lt); display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.vf-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--green-lt); }
.vf-section:nth-child(odd) .vf-eyebrow { color: var(--green); }
.vf-section:nth-child(odd) .vf-eyebrow::before { background: var(--green); }
.vf-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3vw, 50px); font-weight: 400; color: var(--navy); line-height: 1.1; margin-bottom: 24px; }
.vf-section:nth-child(even) .vf-title { color: #fff; }
.vf-desc { font-size: 14.5px; font-weight: 300; line-height: 1.95; color: #5a6a7e; margin-bottom: 48px; max-width: 440px; }
.vf-section:nth-child(even) .vf-desc { color: rgba(255,255,255,0.5); }
.vf-scroll-cta { display: flex; flex-direction: column; align-items: flex-start; }
.vf-scroll-label { font-size: 9px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.vf-section:nth-child(even) .vf-scroll-label { color: rgba(255,255,255,0.35); }
.vf-scroll-word { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy); line-height: 1.4; }
.vf-section:nth-child(even) .vf-scroll-word { color: rgba(255,255,255,0.5); }
.vf-arrows { display: flex; flex-direction: column; align-items: flex-start; margin-top: 12px; }
.vf-arrows svg { width: 22px; height: 16px; stroke: var(--green); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; animation: arrowDrop 1.8s ease-in-out infinite; }
.vf-section:nth-child(even) .vf-arrows svg { stroke: var(--green-lt); }
.vf-arrows svg:nth-child(1) { animation-delay: 0s; opacity: 1; }
.vf-arrows svg:nth-child(2) { animation-delay: 0.2s; opacity: 0.65; }
.vf-arrows svg:nth-child(3) { animation-delay: 0.4s; opacity: 0.3; }
@keyframes arrowDrop { 0%,100%{transform:translateY(0);} 50%{transform:translateY(5px);} }

/* ── Specs Banner ── */
.villa-specs-banner { background: var(--navy-deep); padding: 0; overflow: hidden; }
.vsb-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: minmax(260px, 400px) 1fr; min-height: 540px; align-items: center; }
.vsb-inner > div:first-child { padding: 80px 52px; }
.vsb-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 44px); font-weight: 300; color: #fff; line-height: 1.25; margin-bottom: 14px; }
.vsb-title em { font-style: italic; color: rgba(255,255,255,0.5); }
.vsb-sub { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.4); max-width: 380px; line-height: 1.8; }
.vsb-plan { max-width: none; height: 100%; min-height: 540px; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 36px 52px 36px 0; }
.vsb-plan img { display: block; width: 100%; height: auto; border-radius: 12px; box-shadow: 0 16px 48px rgba(0,0,0,0.45); }

/* ── Gallery ── */
.villa-gallery { background: var(--cream); padding: 100px 52px; }
.vg-head { max-width: 1400px; margin: 0 auto 56px; }
.vg-head-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--green); display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.vg-head-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--green); }
.vg-head-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 44px); font-weight: 400; color: var(--navy); line-height: 1.1; }
.vg-head-title em { font-style: italic; font-weight: 300; color: var(--grey); }
.villa-gallery .vg-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.vg-item { position: relative; overflow: hidden; border-radius: 10px; cursor: pointer; aspect-ratio: 16/10; }
.vg-item:first-child { grid-column: span 3; aspect-ratio: 21/8; }
.vg-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.vg-item:hover img { transform: scale(1.06); }
.vg-item-overlay { position: absolute; inset: 0; background: rgba(10,24,44,0); transition: background 0.35s; }
.vg-item:hover .vg-item-overlay { background: rgba(10,24,44,0.2); }

/* ── CTA ── */
.villa-cta { background: #fff; padding: 100px 52px; }
.villa-cta .vc-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.villa-cta .vc-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.38em; text-transform: uppercase; color: var(--green); display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 20px; }
.villa-cta .vc-eyebrow::before, .villa-cta .vc-eyebrow::after { content: ''; display: block; width: 24px; height: 1px; background: var(--green); }
.villa-cta .vc-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 58px); font-weight: 400; color: var(--navy); line-height: 1.1; margin-bottom: 18px; }
.villa-cta .vc-title em { font-style: italic; font-weight: 300; color: var(--grey); }
.villa-cta .vc-desc { font-size: 15px; font-weight: 300; line-height: 1.9; color: #6a7a90; margin-bottom: 48px; max-width: 620px; margin-left: auto; margin-right: auto; }
.vc-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.vc-btn-primary { display: inline-flex; align-items: center; gap: 12px; background: var(--navy); color: #fff; text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 18px 36px; border-radius: 10px; transition: background 0.25s, transform 0.2s, box-shadow 0.25s; }
.vc-btn-primary:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(28,58,94,0.25); }
.vc-btn-secondary { display: inline-flex; align-items: center; gap: 12px; background: transparent; color: var(--navy); text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 17px 36px; border-radius: 10px; border: 1.5px solid rgba(28,58,94,0.2); transition: border-color 0.25s, background 0.25s, transform 0.2s; }
.vc-btn-secondary:hover { border-color: var(--navy); background: rgba(28,58,94,0.04); transform: translateY(-2px); }
.vc-btn-primary svg { stroke: #fff; fill: none; stroke-width: 2; width: 16px; height: 16px; stroke-linecap: round; stroke-linejoin: round; }
.vc-btn-secondary svg { fill: currentColor; width: 16px; height: 16px; }

/* ── Responsive — Villa Detay ── */
@media (max-width: 1280px) {
  .villa-intro { padding: 80px 32px; }
  .villa-gallery { padding: 80px 32px; }
  .villa-cta { padding: 80px 32px; }
  .vf-content { padding: 60px 48px; }
}
@media (max-width: 1000px) {
  .vi-inner { grid-template-columns: 1fr; gap: 40px; }
  .vi-divider { display: none; }
  .vf-section { grid-template-columns: 1fr; min-height: auto; }
  .vf-section.reverse { direction: ltr; }
  .vf-image { aspect-ratio: 16/9; position: relative; }
  .vsb-inner { grid-template-columns: 1fr; min-height: auto; }
  .vsb-inner > div:first-child { padding: 60px 32px 40px; }
  .vsb-plan { min-height: auto; padding: 0 32px 48px; }
  .vsb-plan img { border-radius: 8px; }
}
@media (max-width: 768px) {
  .vh-content { padding: 0 24px 56px; }
  .vh-scroll { display: none; }
  .villa-intro { padding: 60px 24px; }
  .vf-content { padding: 44px 28px; }
  .villa-specs-banner { padding: 60px 24px; }
  .villa-gallery { padding: 60px 24px; }
  .villa-gallery .vg-grid { grid-template-columns: 1fr; }
  .vg-item:first-child { grid-column: span 1; aspect-ratio: 16/9; }
  .villa-cta { padding: 60px 24px; }
}
@media (max-width: 640px) {
  .vh-title { font-size: clamp(56px, 16vw, 90px); }
  .vc-buttons { flex-direction: column; align-items: stretch; }
  .vc-btn-primary, .vc-btn-secondary { justify-content: center; }
}

/* ============================================================
   HAKKIMIZDA SAYFASI — page-hakkimizda.php
   ============================================================ */

/* ── About Section ── */
.about-section { background: #fff; padding: 100px 0; }
.about-inner { max-width: 1300px; margin: 0 auto; padding: 0 52px; }

.about-intro { max-width: 820px; margin: 0 auto 88px; text-align: center; }
.about-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.about-eyebrow::before, .about-eyebrow::after { content: ''; display: block; width: 32px; height: 1px; background: var(--green); opacity: 0.5; }
.about-intro-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 52px); font-weight: 400; color: var(--navy); line-height: 1.12; margin-bottom: 28px; }
.about-intro-title em { font-style: italic; font-weight: 300; color: var(--navy-mid); }
.about-intro-lead { font-size: 16px; font-weight: 300; line-height: 1.9; color: #5a6a7e; }

.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(28,58,94,0.08); border-radius: 16px; overflow: hidden; margin-top: 88px; }
.about-stat { background: #fff; padding: 48px 40px; text-align: center; }
.about-stat-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px, 4vw, 60px); font-weight: 300; color: var(--navy); line-height: 1; margin-bottom: 10px; }
.about-stat-num em { font-style: italic; font-size: 0.65em; color: var(--green); }
.about-stat-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); }

.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 100px; }
.about-block:last-child { margin-bottom: 0; }
.about-block.reverse { direction: rtl; }
.about-block.reverse > * { direction: ltr; }
.about-text-label { font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.about-text-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--green); }
.about-block-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 2.6vw, 38px); font-weight: 400; color: var(--navy); line-height: 1.2; margin-bottom: 24px; }
.about-block-title em { font-style: italic; font-weight: 300; color: var(--navy-mid); }
.about-block-body { font-size: 14.5px; font-weight: 300; line-height: 1.95; color: #5a6a7e; }
.about-block-body p + p { margin-top: 18px; }

.about-image { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 24px 64px rgba(15,35,64,0.14); }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease); }
.about-image:hover img { transform: scale(1.04); }
.about-image-badge { position: absolute; bottom: 24px; left: 24px; background: rgba(10,24,44,0.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 12px 18px; color: #fff; }
.about-image-badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; }
.about-image-badge span { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

.about-closing { margin-top: 100px; padding: 72px 52px; background: var(--navy-deep); border-radius: 20px; text-align: center; position: relative; overflow: hidden; }
.about-closing::before { content: '"'; position: absolute; top: -20px; left: 50%; transform: translateX(-50%); font-family: 'Cormorant Garamond', serif; font-size: 200px; line-height: 1; color: rgba(255,255,255,0.03); pointer-events: none; }
.about-closing-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 2.2vw, 30px); font-weight: 300; font-style: italic; color: rgba(255,255,255,0.82); line-height: 1.6; max-width: 900px; margin: 0 auto 20px; }
.about-closing-attr { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green-lt); }

/* ── Timeline ── */
.tl-section { background: var(--navy-deep); display: flex; align-items: stretch; overflow: hidden; }

.tl-panel { width: 320px; flex-shrink: 0; position: relative; display: flex; align-items: center; padding: 60px 44px; }
.tl-panel-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.14; }
.tl-panel-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(9,23,44,0.85) 0%, rgba(9,23,44,0.3) 60%, transparent 100%); }
.tl-panel-content { position: relative; z-index: 2; }
.tl-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 2.6vw, 44px); font-weight: 300; font-style: italic; color: #fff; line-height: 1.22; margin-bottom: 28px; }
.tl-quote span { display: block; }
.tl-quote span:last-of-type { font-weight: 400; color: rgba(255,255,255,0.75); }
.tl-brand-badge { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green-lt); }
.tl-brand-badge::before { content: ''; width: 22px; height: 1px; background: var(--green-lt); opacity: 0.6; }

.tl-right { flex: 1; min-width: 0; display: flex; flex-direction: column; padding-top: 72px; border-left: 1px solid rgba(255,255,255,0.06); position: relative; }
.tl-right::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 72px; background: linear-gradient(to left, var(--navy-deep), transparent); pointer-events: none; z-index: 4; }

.tl-header { display: flex; align-items: flex-end; justify-content: space-between; padding: 0 52px; margin-bottom: 56px; }
.tl-eyebrow { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 10px; }
.tl-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 42px); font-weight: 400; color: #fff; line-height: 1.1; }
.tl-nav { display: flex; gap: 10px; flex-shrink: 0; }
.tl-btn { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color 0.22s, background 0.22s; }
.tl-btn:hover { border-color: var(--green-lt); background: rgba(78,122,82,0.15); }
.tl-btn svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.75); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.tl-scroll { overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; user-select: none; -webkit-user-select: none; }
.tl-scroll::-webkit-scrollbar { display: none; }
.tl-scroll.dragging { cursor: grabbing; }
.tl-track { display: flex; align-items: stretch; position: relative; height: 240px; min-width: max-content; padding: 0 52px; }
.tl-track::before { content: ''; position: absolute; top: 120px; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.12) 4%, rgba(255,255,255,0.12) 96%, transparent); }

.tl-item { width: 190px; flex-shrink: 0; display: flex; flex-direction: column; position: relative; }
.tl-item:first-child { width: 170px; }
.tl-top { height: 108px; flex-shrink: 0; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; padding: 0 10px 18px; text-align: center; }
.tl-mid { height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; position: relative; }
.tl-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--green); border: 2px solid var(--navy-deep); box-shadow: 0 0 0 1.5px var(--green), 0 0 10px rgba(78,122,82,0.35); z-index: 2; flex-shrink: 0; transition: transform 0.25s, box-shadow 0.25s; }
.tl-item:hover .tl-dot { transform: scale(1.5); box-shadow: 0 0 0 2px var(--green-lt), 0 0 18px rgba(78,122,82,0.55); }
.tl-item.tl-above .tl-mid::before { content: ''; position: absolute; bottom: calc(50% + 5px); left: 50%; transform: translateX(-50%); width: 1px; height: 14px; background: rgba(255,255,255,0.12); }
.tl-item.tl-below .tl-mid::after { content: ''; position: absolute; top: calc(50% + 5px); left: 50%; transform: translateX(-50%); width: 1px; height: 14px; background: rgba(255,255,255,0.12); }
.tl-bottom { height: 108px; flex-shrink: 0; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; padding: 18px 10px 0; text-align: center; }
.tl-date { font-family: 'Cormorant Garamond', serif; font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,0.9); line-height: 1.25; margin-bottom: 6px; white-space: nowrap; }
.tl-desc { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.42); line-height: 1.6; }
.tl-item:hover .tl-date { color: #fff; }
.tl-item:hover .tl-desc { color: rgba(255,255,255,0.65); }

/* ── Hakkımızda Responsive ── */
@media (max-width: 1000px) {
  .tl-section { flex-direction: column; }
  .tl-panel { width: 100%; padding: 48px 32px; min-height: 0; }
  .tl-panel-bg { opacity: 0.12; }
  .tl-quote { font-size: 30px; }
  .tl-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 48px; }
  .tl-header { padding: 0 24px; }
  .tl-track { padding: 0 24px; }
  .about-block { grid-template-columns: 1fr; gap: 40px; }
  .about-block.reverse { direction: ltr; }
  .about-stats { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .about-inner { padding: 0 24px; }
  .about-section { padding: 72px 0; }
  .about-intro { margin-bottom: 60px; }
  .about-block { margin-bottom: 64px; }
  .about-closing { padding: 48px 28px; }
}
@media (max-width: 640px) {
  .about-closing-text { font-size: 18px; }
  .about-stat { padding: 36px 20px; }
}

/* ============================================================
   AYRICALIKLAR SAYFASI — page-ayricaliklar.php
   ============================================================ */

/* ── Hero ── */
.asy-hero { position: relative; height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.asy-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); animation: asyHeroScale 9s ease-out forwards; }
@keyframes asyHeroScale { to { transform: scale(1.0); } }
.asy-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,22,42,0.15) 0%, rgba(10,22,42,0.4) 45%, rgba(10,22,42,0.85) 100%); }
.asy-hero-content { position: relative; z-index: 2; padding: 0 52px 80px; width: 100%; }
.asy-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.asy-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.asy-breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.asy-breadcrumb span { color: rgba(255,255,255,0.2); }
.asy-hero-label { display: inline-flex; align-items: center; gap: 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--green-lt); margin-bottom: 20px; }
.asy-hero-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--green-lt); }
.asy-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px, 6.5vw, 96px); font-weight: 300; color: #fff; line-height: 1.0; letter-spacing: 0.01em; max-width: 900px; margin-bottom: 28px; }
.asy-hero-title em { font-style: italic; color: rgba(255,255,255,0.6); }
.asy-hero-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 540px; }
.asy-hero-scroll { position: absolute; bottom: 48px; right: 52px; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px; cursor: pointer; }
.asy-hero-scroll-txt { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 9.5px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color 0.25s; }
.asy-hero-scroll:hover .asy-hero-scroll-txt { color: rgba(255,255,255,0.8); }
.asy-hero-scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, rgba(255,255,255,0.15), rgba(255,255,255,0.4)); animation: asyLineBreath 2s ease-in-out infinite; }
@keyframes asyLineBreath { 0%, 100% { opacity: 0.5; transform: scaleY(0.85); } 50% { opacity: 1; transform: scaleY(1); } }

/* ── Fullscreen Sections ── */
.asy-section { position: relative; min-height: 100vh; display: flex; flex-direction: column; overflow: hidden; }
.asy-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); transition: transform 1.4s var(--ease); }
.asy-section.in-view .asy-bg { transform: scale(1.0); }
.asy-overlay { position: absolute; inset: 0; background: linear-gradient(125deg, rgba(10,22,42,0.9) 0%, rgba(10,22,42,0.6) 55%, rgba(10,22,42,0.25) 100%); }

.asy-counter { position: absolute; right: 52px; top: 50%; transform: translateY(-50%) rotate(90deg); z-index: 3; display: flex; align-items: center; gap: 14px; font-size: 10px; font-weight: 300; letter-spacing: 0.15em; color: rgba(255,255,255,0.25); white-space: nowrap; user-select: none; }
.asy-counter-current { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1; letter-spacing: 0; }
.asy-counter-line { width: 28px; height: 1px; background: rgba(255,255,255,0.2); }

.asy-label { position: absolute; top: 120px; left: 52px; z-index: 3; display: inline-flex; align-items: center; gap: 12px; font-size: 9.5px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--green-lt); }
.asy-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--green-lt); }
.asy-label-brand { color: rgba(255,255,255,0.45); margin-right: 6px; }

.asy-content { position: relative; z-index: 2; padding: 0 52px 0; max-width: 820px; margin-top: auto; }
.asy-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 4.8vw, 72px); font-weight: 300; color: #fff; line-height: 1.08; letter-spacing: 0.01em; margin-bottom: 22px; }
.asy-title em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.65); }
.asy-desc { font-size: 15px; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.52); max-width: 600px; }

.asy-cta { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 56px 0 48px; cursor: pointer; text-decoration: none; }
.asy-cta-text { font-size: 9.5px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(255,255,255,0.45); transition: color 0.3s; }
.asy-cta:hover .asy-cta-text { color: rgba(255,255,255,0.85); }
.asy-arrows { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.asy-arrows svg { width: 26px; height: 15px; stroke: rgba(255,255,255,0.35); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; animation: asyArrowCascade 2s ease-in-out infinite; }
.asy-arrows svg:nth-child(1) { animation-delay: 0s; }
.asy-arrows svg:nth-child(2) { animation-delay: 0.22s; }
.asy-arrows svg:nth-child(3) { animation-delay: 0.44s; }
@keyframes asyArrowCascade { 0%, 100% { opacity: 0.15; transform: translateY(-4px); } 50% { opacity: 0.75; transform: translateY(4px); } }
.asy-cta:hover .asy-arrows svg { stroke: rgba(255,255,255,0.7); }

/* ============================================================
   LOKASYON SAYFASI — page-lokasyon.php
   ============================================================ */

/* ── Intro ── */
.loc-intro { background: #fff; padding: 88px 52px 80px; }
.loc-intro-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1px 1.5fr; gap: 72px; align-items: center; }
.li-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); margin-bottom: 18px; }
.li-eyebrow::before { content: ''; display: block; width: 26px; height: 1px; background: var(--green); }
.li-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 3.2vw, 50px); font-weight: 400; color: var(--navy); line-height: 1.15; }
.li-title em { font-style: italic; color: var(--navy-mid); }
.li-stats { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.li-stat { display: flex; align-items: center; gap: 16px; }
.li-stat-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--navy); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.li-stat-icon svg { width: 18px; height: 18px; fill: #fff; }
.li-stat-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--navy); }
.li-stat-text span { font-size: 12px; font-weight: 300; color: var(--grey); }
.li-vdiv { background: rgba(28,58,94,0.08); align-self: stretch; }
.li-desc { font-size: 16px; font-weight: 300; line-height: 2.0; color: #5a6a7e; }
.li-desc strong { font-weight: 600; color: var(--navy); }

/* ── Video ── */
.loc-video { background: var(--navy-deep); padding: 96px 52px; }
.loc-video-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.55fr; gap: 72px; align-items: center; }
.lv-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green-lt); margin-bottom: 18px; }
.lv-eyebrow::before { content: ''; display: block; width: 26px; height: 1px; background: var(--green-lt); }
.lv-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.4vw, 56px); font-weight: 300; color: #fff; line-height: 1.08; margin-bottom: 24px; }
.lv-title em { font-style: italic; color: rgba(255,255,255,0.5); }
.lv-desc { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.9; margin-bottom: 36px; max-width: 380px; }
.lv-watch-btn { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; border: 1px solid rgba(255,255,255,0.18); border-radius: 50px; padding: 12px 22px 12px 14px; transition: border-color 0.25s, background 0.25s; }
.lv-watch-btn:hover { border-color: var(--green-lt); background: rgba(255,255,255,0.04); }
.lv-btn-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.25s; }
.lv-watch-btn:hover .lv-btn-icon { background: var(--green-lt); }
.lv-btn-icon svg { width: 12px; height: 12px; fill: #fff; margin-left: 2px; }
.lv-watch-btn span { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.lv-embed { position: relative; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.55); }
.lv-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ── Nearby Cards ── */
.loc-nearby { background: var(--cream); padding: 96px 52px 100px; }
.loc-nearby-inner { max-width: 1300px; margin: 0 auto; }
.ln-head { text-align: center; margin-bottom: 60px; }
.ln-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.ln-eyebrow::before, .ln-eyebrow::after { content: ''; display: block; width: 26px; height: 1px; background: var(--green); }
.ln-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.2vw, 48px); font-weight: 400; color: var(--navy); line-height: 1.15; }
.ln-title em { font-style: italic; color: var(--navy-mid); }
.ln-sub { font-size: 15px; font-weight: 300; color: var(--grey); line-height: 1.7; margin-top: 12px; max-width: 520px; margin-left: auto; margin-right: auto; }
.ln-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: start; }
.ln-card { background: #fff; border-radius: 16px; padding: 32px 28px 28px; box-shadow: 0 2px 20px rgba(15,35,64,0.06); transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease); }
.ln-card:hover { box-shadow: 0 12px 44px rgba(15,35,64,0.12); transform: translateY(-3px); }
.ln-icon { width: 52px; height: 52px; background: var(--navy); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.ln-icon svg { width: 22px; height: 22px; fill: #fff; }
.ln-card-title { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.ln-card-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--navy); line-height: 1.2; margin-bottom: 20px; }
.ln-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ln-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; font-weight: 400; color: #5a6a7e; line-height: 1.45; }
.ln-list li::before { content: ''; display: block; flex-shrink: 0; width: 4px; height: 4px; background: var(--green); border-radius: 50%; margin-top: 6px; }
.ln-divider { height: 1px; background: rgba(28,58,94,0.07); margin: 20px 0; }

/* ── Map ── */
.loc-map { position: relative; }
.loc-map-header { background: var(--navy-deep); padding: 64px 52px 52px; }
.loc-map-header-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.lm-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green-lt); margin-bottom: 14px; }
.lm-eyebrow::before { content: ''; display: block; width: 26px; height: 1px; background: var(--green-lt); }
.lm-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 2.8vw, 44px); font-weight: 300; color: #fff; line-height: 1.1; }
.lm-title em { font-style: italic; color: rgba(255,255,255,0.55); }
.lm-address { text-align: right; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.8; }
.lm-address strong { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-lt); margin-bottom: 8px; }
.lm-address a { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); text-decoration: none; border: 1px solid rgba(255,255,255,0.18); border-radius: 8px; padding: 10px 18px; transition: border-color 0.22s, color 0.22s, background 0.22s; }
.lm-address a:hover { border-color: var(--green-lt); color: #fff; background: rgba(255,255,255,0.04); }
.lm-address a svg { width: 14px; height: 14px; stroke: var(--green-lt); fill: none; stroke-width: 2; }
.loc-map-frame { display: block; width: 100%; height: 520px; border: 0; filter: grayscale(20%) contrast(0.95); transition: filter 0.3s; }
.loc-map-frame:hover { filter: grayscale(0%) contrast(1); }

/* ── Lokasyon Responsive ── */
@media (max-width: 1280px) {
  .ln-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1000px) {
  .loc-intro { padding: 64px 32px; }
  .loc-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .li-vdiv { display: none; }
  .loc-video { padding: 64px 32px; }
  .loc-video-inner { grid-template-columns: 1fr; gap: 44px; }
  .lv-desc { max-width: 100%; }
  .loc-nearby { padding: 72px 32px 80px; }
  .loc-map-header { padding: 52px 32px 44px; }
  .loc-map-header-inner { flex-direction: column; align-items: flex-start; }
  .lm-address { text-align: left; }
}
@media (max-width: 768px) {
  .ln-grid { grid-template-columns: 1fr; }
  .loc-map-frame { height: 380px; }
}
@media (max-width: 640px) {
  .loc-video { padding: 48px 20px; }
  .loc-nearby { padding: 56px 20px 64px; }
  .loc-map-header { padding: 40px 20px 36px; }
}

/* ── Ayrıcalıklar Responsive ── */
@media (max-width: 1000px) {
  .asy-content { padding: 0 32px 0; max-width: 100%; }
  .asy-label { left: 32px; }
  .asy-hero-content { padding: 0 32px 64px; }
  .asy-hero-scroll { right: 32px; }
  .asy-counter { display: none; }
}
@media (max-width: 768px) {
  .asy-title { font-size: clamp(32px, 7vw, 56px); }
  .asy-hero-content { padding: 0 20px 52px; }
  .asy-content { padding: 0 20px 0; }
  .asy-label { left: 20px; top: 100px; }
}
@media (max-width: 640px) {
  .asy-hero-title { font-size: clamp(36px, 9vw, 60px); }
}

/* ============================================================
   MEDYA SAYFASI — page-medya.php
   ============================================================ */

.media-section { background: var(--cream); padding: 80px 52px 100px; }
.media-inner { max-width: 1300px; margin: 0 auto; }

.media-section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; padding-bottom: 28px; border-bottom: 1px solid rgba(28,58,94,0.09); }
.ms-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.ms-eyebrow::before { content: ''; display: block; width: 26px; height: 1px; background: var(--green); }
.ms-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 3vw, 46px); font-weight: 400; color: var(--navy); line-height: 1.1; }
.ms-title em { font-style: italic; color: var(--navy-mid); }
.ms-count { font-size: 12px; font-weight: 300; color: var(--grey); letter-spacing: 0.06em; }
.ms-count strong { font-weight: 600; color: var(--navy); }

.media-row { display: grid; gap: 28px; margin-bottom: 28px; }
.media-row.equal { grid-template-columns: 1fr 1fr; }
.media-row.unequal { grid-template-columns: 1.4fr 1fr; }

.mc { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 20px rgba(15,35,64,0.06); display: flex; flex-direction: column; transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease); }
.mc:hover { box-shadow: 0 14px 48px rgba(15,35,64,0.12); transform: translateY(-4px); }

.mc-media { position: relative; overflow: hidden; }
.mc-media.ratio-news { aspect-ratio: 16 / 9; }
.mc-media.ratio-press { aspect-ratio: 4 / 3; }
.mc-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease); }
.mc:hover .mc-media img { transform: scale(1.04); }

.mc-media.ratio-video { position: relative; aspect-ratio: 16 / 9; }
.mc-media.ratio-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.mc-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.mc-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mc-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.mc-badge.badge-haber { background: rgba(78,122,82,0.1); color: var(--green); }
.mc-badge.badge-video { background: rgba(28,58,94,0.1); color: var(--navy); }
.mc-badge.badge-basin { background: rgba(139,99,41,0.1); color: #6B5320; }
.mc-badge svg { width: 10px; height: 10px; fill: currentColor; }
.mc-date { font-size: 11px; font-weight: 400; color: var(--grey); letter-spacing: 0.06em; }
.mc-title { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.5; flex: 1; margin-bottom: 20px; letter-spacing: 0.01em; }
.mc-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); text-decoration: none; border: 1.5px solid rgba(28,58,94,0.15); border-radius: 8px; padding: 10px 18px; align-self: flex-start; transition: background 0.22s, border-color 0.22s, color 0.22s; }
.mc-cta:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.mc-cta svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.22s; }
.mc-cta:hover svg { transform: translateX(3px); }

/* ── Medya Responsive ── */
@media (max-width: 1280px) {
  .media-section { padding: 72px 32px 88px; }
}
@media (max-width: 1000px) {
  .media-section { padding: 64px 24px 80px; }
  .media-row.unequal { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .media-section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .media-row.equal, .media-row.unequal { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .media-section { padding: 48px 16px 72px; }
  .media-row { gap: 20px; margin-bottom: 20px; }
}

/* ============================================================
   BLOG LİSTELEME — home.php
   ============================================================ */

.blog-intro { background: #fff; padding: 64px 52px; }
.bi-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1px 1fr; gap: 60px; align-items: center; }
.bi-divider { background: rgba(28,58,94,0.08); align-self: stretch; }
.bi-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--green); display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.bi-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--green); }
.bi-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 42px); font-weight: 400; color: var(--navy); line-height: 1.15; }
.bi-heading em { font-style: italic; font-weight: 300; color: var(--navy-mid); }
.bi-desc { font-size: 15px; font-weight: 300; line-height: 2.0; color: #5a6a7e; }

.blog-section { background: var(--cream); padding: 72px 52px 100px; }
.blog-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.blog-card { background: #fff; border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 2px 20px rgba(15,35,64,0.06); transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease); }
.blog-card:hover { box-shadow: 0 20px 60px rgba(15,35,64,0.13); transform: translateY(-6px); }
.bc-img-link { display: block; overflow: hidden; aspect-ratio: 16/10; position: relative; }
.bc-img-link img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s var(--ease); }
.blog-card:hover .bc-img-link img { transform: scale(1.05); }
.bc-num { position: absolute; top: 18px; left: 22px; font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: rgba(255,255,255,0.16); line-height: 1; pointer-events: none; z-index: 2; }
.bc-body { padding: 28px 32px 32px; flex: 1; display: flex; flex-direction: column; }
.bc-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.bc-cat { font-size: 9px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); background: rgba(78,122,82,0.1); padding: 5px 13px; border-radius: 20px; }
.bc-date { font-size: 11.5px; font-weight: 400; color: var(--grey); letter-spacing: 0.04em; }
.bc-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 2.2vw, 30px); font-weight: 400; color: var(--navy); line-height: 1.2; margin-bottom: 14px; text-decoration: none; display: block; transition: color 0.22s; }
.bc-title:hover { color: var(--navy-mid); }
.bc-excerpt { font-size: 13.5px; font-weight: 300; line-height: 1.85; color: #6a7a90; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 28px; }
.bc-divider { height: 1px; background: rgba(28,58,94,0.07); margin-bottom: 22px; }
.bc-foot { display: flex; align-items: center; justify-content: space-between; }
.bc-more { display: inline-flex; align-items: center; gap: 9px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); text-decoration: none; transition: color 0.22s, gap 0.25s; }
.bc-more:hover { color: var(--green); gap: 14px; }
.bc-more svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.25s; }
.bc-more:hover svg { transform: translateX(3px); }
.bc-read-time { font-size: 11px; font-weight: 400; color: var(--grey); }

/* ── Blog Listing Responsive ── */
@media (max-width: 1280px) { .blog-section { padding: 60px 32px 80px; } .blog-intro { padding: 52px 32px; } }
@media (max-width: 1000px) { .bi-inner { grid-template-columns: 1fr; gap: 28px; } .bi-divider { display: none; } }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } .blog-section { padding: 52px 24px 72px; } .bc-body { padding: 22px 24px 26px; } }

/* ============================================================
   BLOG TEK YAZI — single.php
   ============================================================ */

.article-hero { position: relative; height: 70vh; min-height: 500px; display: flex; align-items: flex-end; padding-top: 76px; overflow: hidden; }
.ah-bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; transform: scale(1.04); animation: blogHeroScale 10s ease-out forwards; }
@keyframes blogHeroScale { to { transform: scale(1.0); } }
.ah-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,24,44,0.2) 0%, rgba(10,24,44,0.72) 60%, rgba(10,24,44,0.88) 100%); }
.ah-content { position: relative; z-index: 2; padding: 0 52px 60px; width: 100%; max-width: 960px; }
.ah-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.ah-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.ah-breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.ah-breadcrumb span { color: rgba(255,255,255,0.25); }
.ah-cat { display: inline-flex; align-items: center; font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green-lt); background: rgba(78,122,82,0.2); border: 1px solid rgba(106,158,110,0.35); padding: 6px 16px; border-radius: 20px; margin-bottom: 18px; }
.ah-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 5vw, 60px); font-weight: 300; color: #fff; line-height: 1.1; letter-spacing: 0.01em; margin-bottom: 22px; max-width: 820px; }
.ah-meta { display: flex; align-items: center; gap: 24px; }
.ah-date { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; }
.ah-time { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.4); }
.ah-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.25); }

.article-wrap { background: #fff; }
.article-inner { max-width: 800px; margin: 0 auto; padding: 72px 52px 80px; }
.article-lead { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 2.2vw, 26px); font-weight: 400; font-style: italic; color: var(--navy-mid); line-height: 1.6; margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(28,58,94,0.1); position: relative; }
.article-lead::before { content: '\201C'; position: absolute; top: -20px; left: -8px; font-size: 80px; font-family: 'Cormorant Garamond', serif; color: rgba(28,58,94,0.08); line-height: 1; }

.article-body p { font-size: 15.5px; font-weight: 300; line-height: 1.95; color: #4a5a6e; margin-bottom: 28px; }
.article-body h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 2.5vw, 32px); font-weight: 500; color: var(--navy); line-height: 1.2; margin: 52px 0 20px; padding-top: 12px; border-top: 2px solid rgba(78,122,82,0.2); position: relative; }
.article-body h2::before { content: ''; position: absolute; top: -2px; left: 0; width: 40px; height: 2px; background: var(--green); }
.article-body h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 2vw, 24px); font-weight: 500; font-style: italic; color: var(--navy-mid); line-height: 1.3; margin: 36px 0 16px; }
.article-body ul, .article-body ol { margin: 0 0 28px 20px; }
.article-body li { font-size: 15px; font-weight: 300; line-height: 1.9; color: #4a5a6e; margin-bottom: 8px; }
.article-body blockquote { margin: 36px 0; padding: 24px 32px; border-left: 3px solid var(--green); background: rgba(78,122,82,0.05); border-radius: 0 8px 8px 0; }
.article-body blockquote p { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: var(--navy-mid); margin: 0; line-height: 1.65; }

.numbered-list { counter-reset: item; list-style: none; margin: 0 0 36px; padding: 0; }
.numbered-list li { counter-increment: item; display: flex; gap: 20px; margin-bottom: 24px; align-items: flex-start; }
.numbered-list li::before { content: counter(item, decimal-leading-zero); font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--green); line-height: 1; flex-shrink: 0; width: 36px; }
.nl-content { flex: 1; }
.nl-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.03em; }
.nl-desc { font-size: 14.5px; font-weight: 300; line-height: 1.85; color: #5a6a7e; }

.benefits-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.benefits-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; font-weight: 300; line-height: 1.75; color: #4a5a6e; }
.benefits-list li::before { content: ''; flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: rgba(78,122,82,0.12); border: 1.5px solid var(--green); margin-top: 3px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234E7A52' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; }
.benefits-list li strong { font-weight: 600; color: var(--navy); }

.article-tags { margin-top: 52px; padding-top: 32px; border-top: 1px solid rgba(28,58,94,0.08); display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.article-tags span { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-right: 4px; }
.article-tag { font-size: 11px; font-weight: 500; color: var(--navy); background: rgba(28,58,94,0.06); padding: 6px 14px; border-radius: 20px; border: 1px solid rgba(28,58,94,0.1); text-decoration: none; transition: background 0.2s, color 0.2s; }
.article-tag:hover { background: var(--navy); color: #fff; }

.related-section { background: var(--cream); padding: 72px 52px; }
.related-inner { max-width: 1400px; margin: 0 auto; }
.related-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.related-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--green); display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.related-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--green); }
.related-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 3vw, 40px); font-weight: 400; color: var(--navy); }
.related-all { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.22s, gap 0.25s; padding-bottom: 4px; border-bottom: 1px solid rgba(28,58,94,0.15); }
.related-all:hover { color: var(--green); gap: 13px; }
.related-all svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.related-card { background: #fff; border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 2px 20px rgba(15,35,64,0.06); transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease); max-width: 680px; }
.related-card:hover { box-shadow: 0 20px 60px rgba(15,35,64,0.13); transform: translateY(-6px); }
.rc-img-link { display: block; overflow: hidden; aspect-ratio: 16/9; }
.rc-img-link img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s var(--ease); }
.related-card:hover .rc-img-link img { transform: scale(1.05); }
.rc-body { padding: 24px 28px 28px; flex: 1; }
.rc-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rc-cat { font-size: 9px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); background: rgba(78,122,82,0.1); padding: 5px 13px; border-radius: 20px; }
.rc-date { font-size: 11.5px; color: var(--grey); }
.rc-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px, 2vw, 26px); font-weight: 400; color: var(--navy); line-height: 1.25; margin-bottom: 16px; text-decoration: none; display: block; }
.rc-more { display: inline-flex; align-items: center; gap: 9px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); text-decoration: none; transition: color 0.22s, gap 0.25s; }
.rc-more:hover { color: var(--green); gap: 14px; }
.rc-more svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.cta-section { padding: 80px 52px; background: var(--navy-deep); display: flex; align-items: center; justify-content: center; text-align: center; flex-direction: column; }
.cta-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--green-lt); margin-bottom: 18px; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.5vw, 48px); font-weight: 300; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.cta-title em { font-style: italic; color: rgba(255,255,255,0.6); }
.cta-lead { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 480px; margin: 0 auto 40px; }
.cta-btn { display: inline-flex; align-items: center; gap: 12px; background: var(--green); color: #fff; padding: 16px 36px; border-radius: 10px; text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; transition: background 0.25s, transform 0.2s, box-shadow 0.25s; }
.cta-btn:hover { background: var(--green-lt); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(78,122,82,0.35); }

/* ── Blog Single Responsive ── */
@media (max-width: 768px) { .article-hero { height: 60vh; } .ah-content { padding: 0 24px 40px; } .article-inner { padding: 52px 24px 64px; } .related-section { padding: 52px 24px; } .cta-section { padding: 60px 24px; } }

/* ════════════════════════════════════════
   İLETİŞİM PAGE
════════════════════════════════════════ */

/* Contact layout */
.contact-section { background: var(--cream); padding: 80px 52px 100px; }
.contact-inner { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 80px rgba(15,35,64,0.13); }

/* Form side */
.cf-form-side { background: #fff; padding: 60px 56px 64px; }
.cf-form-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); margin-bottom: 6px; display: block; }
.cf-form-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.2vw, 50px); font-weight: 300; color: var(--navy); line-height: 1.05; margin-bottom: 36px; letter-spacing: -0.01em; }

/* CF7 reset inside form */
.cf-form-side .wpcf7 { display: block; }
.cf-form-side .wpcf7-form { margin: 0; }
.cf-form-side .wpcf7-form p { margin: 0; }
.cf-form-side .wpcf7-response-output { margin: 12px 0 0; padding: 10px 16px; border-radius: 8px; font-size: 12.5px; font-weight: 500; border: 1.5px solid rgba(28,58,94,0.15); }
.cf-form-side .wpcf7-not-valid-tip { font-size: 10.5px; color: #d85050; margin-top: 4px; display: block; }
.cf-form-side .wpcf7-spinner { display: none; }

/* Form fields */
.cf-fields-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 28px; }
.cf-field { display: flex; flex-direction: column; padding: 14px 0; border-bottom: 1.5px solid rgba(28,58,94,0.1); margin-bottom: 4px; transition: border-color 0.2s; }
.cf-field:focus-within { border-color: var(--navy); }
.cf-field label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(28,58,94,0.35); margin-bottom: 8px; display: block; }
.cf-field input, .cf-field textarea { background: none; border: none; outline: none; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 300; color: var(--navy); width: 100%; }
.cf-field input::placeholder, .cf-field textarea::placeholder { color: rgba(28,58,94,0.3); }
.cf-field textarea { resize: none; height: 76px; }
.cf-field-full { grid-column: 1 / -1; }
.cf-field .wpcf7-form-control-wrap { display: block; }
.cf-field .wpcf7-form-control { background: none; border: none; outline: none; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 300; color: var(--navy); width: 100%; }
.cf-field .wpcf7-form-control::placeholder { color: rgba(28,58,94,0.3); }
.cf-field textarea.wpcf7-form-control { resize: none; height: 76px; }

/* Section label */
.cf-section-label { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--navy); margin-top: 32px; margin-bottom: 14px; }

/* Villa grid */
.villa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.vc-item { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border: 1.5px solid rgba(28,58,94,0.1); border-radius: 12px; cursor: pointer; user-select: none; transition: border-color 0.22s var(--ease), background 0.22s var(--ease), transform 0.2s var(--ease); }
.vc-item:hover { border-color: rgba(28,58,94,0.28); background: rgba(28,58,94,0.02); transform: translateY(-1px); }
.vc-item.active { border-color: var(--navy); background: rgba(28,58,94,0.04); }
.vc-info { flex: 1; }
.vc-name { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.06em; line-height: 1.3; }
.vc-spec { font-size: 10.5px; font-weight: 300; color: var(--grey); margin-top: 2px; }
.vc-check { width: 20px; height: 20px; flex-shrink: 0; border: 1.5px solid rgba(28,58,94,0.18); border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-left: 10px; transition: background 0.2s, border-color 0.2s; }
.vc-check svg { width: 11px; height: 11px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; opacity: 0; transition: opacity 0.15s; }
.vc-item.active .vc-check { background: var(--navy); border-color: var(--navy); }
.vc-item.active .vc-check svg { opacity: 1; }

/* Contact type grid */
.ct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.ct-option { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1.5px solid rgba(28,58,94,0.1); border-radius: 12px; cursor: pointer; user-select: none; transition: border-color 0.22s, background 0.22s; }
.ct-option:hover { border-color: rgba(28,58,94,0.28); background: rgba(28,58,94,0.02); }
.ct-option.active { border-color: var(--navy); background: rgba(28,58,94,0.04); }
.ct-radio { width: 18px; height: 18px; flex-shrink: 0; border: 1.5px solid rgba(28,58,94,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; }
.ct-radio::after { content: ''; width: 8px; height: 8px; background: var(--navy); border-radius: 50%; opacity: 0; transform: scale(0.4); transition: opacity 0.15s, transform 0.15s; }
.ct-option.active .ct-radio { border-color: var(--navy); }
.ct-option.active .ct-radio::after { opacity: 1; transform: scale(1); }
.ct-text { font-size: 13px; font-weight: 300; color: var(--navy); line-height: 1.4; }

/* KVKK toggle */
.cf-kvkk { display: flex; align-items: center; gap: 12px; margin-top: 24px; cursor: pointer; user-select: none; }
.cf-kvkk-box { width: 20px; height: 20px; flex-shrink: 0; border: 1.5px solid rgba(28,58,94,0.25); border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; }
.cf-kvkk-box svg { width: 11px; height: 11px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; opacity: 0; transition: opacity 0.15s; }
.cf-kvkk.active .cf-kvkk-box { background: var(--navy); border-color: var(--navy); }
.cf-kvkk.active .cf-kvkk-box svg { opacity: 1; }
.cf-kvkk-text { font-size: 12.5px; font-weight: 300; color: rgba(28,58,94,0.6); line-height: 1.6; }
.cf-kvkk-text a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.bvi-cf7-accept { display: none !important; }

/* Submit button */
.cf-submit, input.cf-submit { width: 100%; margin-top: 24px; padding: 16px; background: var(--navy); border: none; border-radius: 10px; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background 0.25s, transform 0.2s, box-shadow 0.25s; display: block; }
.cf-submit:hover, input.cf-submit:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(28,58,94,0.22); }
.cf-submit.sent { background: var(--green); }

/* Info side */
.cf-info-side { background: var(--navy-deep); padding: 60px 48px 64px; position: relative; overflow: hidden; }
.cf-info-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.07; }
.cf-info-deco { position: absolute; bottom: -80px; right: -80px; width: 340px; height: 340px; border: 1px solid rgba(255,255,255,0.04); border-radius: 50%; }
.cf-info-deco::before { content: ''; position: absolute; inset: 40px; border: 1px solid rgba(255,255,255,0.04); border-radius: 50%; }
.cf-info-inner { position: relative; z-index: 1; }
.cf-info-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green-lt); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.cf-info-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--green-lt); flex-shrink: 0; }
.cf-info-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 2.4vw, 40px); font-weight: 300; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.cf-info-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 40px; }
.cf-info-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 36px; }
.cf-info-block { margin-bottom: 28px; }
.cf-info-block-label { font-size: 9px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green-lt); margin-bottom: 10px; display: block; }
.cf-info-item { display: flex; align-items: flex-start; gap: 12px; text-decoration: none; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 10px; transition: color 0.2s; }
.cf-info-item:hover { color: #fff; }
.cf-info-item svg { width: 14px; height: 14px; fill: var(--green-lt); flex-shrink: 0; margin-top: 3px; }
.cf-phones-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-phone-label { font-size: 8.5px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--green-lt); display: block; margin-bottom: 4px; }
.cf-phone-num { display: block; font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.82); text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s; }
.cf-phone-num:hover { color: #fff; }
.cf-info-map-btn { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; padding: 13px 22px; text-decoration: none; color: rgba(255,255,255,0.75); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 36px; transition: border-color 0.25s, color 0.25s, background 0.25s; }
.cf-info-map-btn:hover { border-color: var(--green-lt); color: #fff; background: rgba(255,255,255,0.04); }
.cf-info-map-btn svg { width: 15px; height: 15px; stroke: var(--green-lt); fill: none; stroke-width: 2; }

/* Map section */
.map-header { background: var(--navy-deep); padding: 28px 52px; display: flex; align-items: center; justify-content: space-between; }
.map-header-label { font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--green-lt); margin-bottom: 4px; display: block; }
.map-header-addr { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.6); }
.map-dir-btn { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 11px 20px; text-decoration: none; color: rgba(255,255,255,0.75); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; flex-shrink: 0; transition: border-color 0.25s, color 0.25s, background 0.25s; }
.map-dir-btn:hover { border-color: var(--green-lt); color: #fff; background: rgba(255,255,255,0.04); }
.map-dir-btn svg { width: 14px; height: 14px; stroke: var(--green-lt); fill: none; stroke-width: 2; }
.map-frame { width: 100%; height: 480px; display: block; border: 0; }

/* ── CF7 Global Fixes (fieldset / p wrapper / screen reader) ── */
.wpcf7 fieldset { border: none; margin: 0; padding: 0; }
.wpcf7 .hidden-fields-container { display: none !important; }
.wpcf7 .screen-reader-response { position: absolute; overflow: hidden; clip: rect(0 0 0 0); height: 1px; width: 1px; margin: -1px; padding: 0; border: 0; }
.cf-field > p, .cf-field > p:first-child, .cf-field > p:last-child { margin: 0; padding: 0; display: contents; }
.cf-form-side .wpcf7-form p { margin: 0; padding: 0; }

/* ── Fcta Panel CF7 Form ── */
.fcta-body .wpcf7 { display: block; }
.fcta-body .wpcf7-form p { margin: 0; padding: 0; }
.fcta-body .wpcf7-spinner { display: none; }
.fcta-body .wpcf7-response-output { font-size: 12px; padding: 8px 12px; margin: 10px 0 0; border-radius: 6px; border: 1.5px solid rgba(28,58,94,0.15); }
.fcta-body .wpcf7-not-valid-tip { font-size: 10px; color: #d85050; }
.fcta-body .cf-fields-row { grid-template-columns: repeat(3, 1fr); gap: 0 14px; }
.fcta-body .cf-field { padding: 10px 0; }
.fcta-body .cf-section-label { font-size: 17px; margin-top: 20px; margin-bottom: 10px; }
.fcta-body .villa-grid { gap: 8px; }
.fcta-body .vc-item { padding: 10px 12px; }
.fcta-body .vc-name { font-size: 12px; }
.fcta-body .ct-grid { gap: 8px; margin-top: 10px; }
.fcta-body .ct-option { padding: 10px 14px; }
.fcta-body .cf-kvkk { margin-top: 16px; }
.bvi-fcta-accept { display: none !important; }
input.fcta-submit, button.fcta-submit { width: 100%; margin-top: 20px; padding: 15px; background: var(--navy); border: none; border-radius: 8px; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; display: block; transition: background 0.25s, transform 0.2s; }
input.fcta-submit:hover, button.fcta-submit:hover { background: var(--navy-mid); transform: translateY(-1px); }
input.fcta-submit.sent, button.fcta-submit.sent { background: var(--green); }
@media (max-width: 480px) { .fcta-body .cf-fields-row { grid-template-columns: 1fr; } .fcta-body .villa-grid { grid-template-columns: 1fr 1fr; } }

/* İletişim Responsive */
@media (max-width: 1280px) { .contact-section { padding: 64px 32px 88px; } .cf-form-side { padding: 48px 40px 52px; } .cf-info-side { padding: 48px 36px 52px; } .map-header { padding: 24px 32px; } }
@media (max-width: 1100px) { .contact-inner { grid-template-columns: 1fr; } .cf-info-side { padding: 48px 40px 52px; } .cf-phones-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px) { .contact-section { padding: 52px 24px 72px; } .cf-form-side { padding: 40px 28px 44px; } .cf-fields-row { grid-template-columns: 1fr; } .villa-grid { grid-template-columns: 1fr 1fr; } .ct-grid { grid-template-columns: 1fr; } .cf-phones-grid { grid-template-columns: 1fr 1fr; } .map-header { flex-direction: column; align-items: flex-start; gap: 16px; } }
@media (max-width: 640px) { .contact-section { padding: 40px 16px 60px; } .villa-grid { grid-template-columns: 1fr; } .cf-phones-grid { grid-template-columns: 1fr 1fr; } }
