/* ============================================
   ESTE LEON CLINIC — PRESTIGIOUS NAVY THEME
   Araştırma: Beyaz+Lacivert+Altın = Max güven + premium
   ============================================ */

:root {
  --navy:      #0B1C3A;
  --navy2:     #0F2347;
  --navy3:     #162D58;
  --gold:      #C9A97E;
  --gold2:     #E8C99A;
  --white:     #FFFFFF;
  --bg:        #F8F9FC;
  --bg2:       #EFF2F8;
  --text:      #0D1B35;
  --text2:     #4A5875;
  --border:    rgba(11,28,58,0.1);
  --border2:   rgba(201,169,126,0.3);
  --font-h:    'Cormorant Garamond', Georgia, serif;
  --font-b:    'Inter', sans-serif;
  --radius:    6px;
  --transition: 0.3s ease;
  --shadow:    0 4px 24px rgba(11,28,58,0.08);
  --shadow2:   0 8px 40px rgba(11,28,58,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
body[dir="rtl"] { text-align: right; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

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

/* ---- LANGUAGE BAR ---- */
.lang-bar {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(201,169,126,0.2);
  z-index: 1000; height: 40px;
}
.lang-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 6px; height: 40px;
}
.lang-btn {
  background: none;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 3px 4px;
  border-radius: 5px;
  transition: all 0.2s ease;
  opacity: 0.45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lang-btn img {
  width: 28px; height: 21px;
  object-fit: cover; border-radius: 2px; display: block;
}
.lang-btn:hover { opacity: 0.85; transform: scale(1.1); border-color: rgba(201,169,126,0.4); }
.lang-btn.active {
  opacity: 1; transform: scale(1.18);
  border-color: var(--gold);
  background: rgba(201,169,126,0.15);
  box-shadow: 0 0 8px rgba(201,169,126,0.4);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 40px; left: 0; right: 0;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  z-index: 999; transition: all 0.4s ease; padding: 22px 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  padding: 14px 0;
  box-shadow: var(--shadow);
}
.nav-inner { display: flex; align-items: center; gap: 40px; }
.logo { text-decoration: none; display: flex; align-items: baseline; gap: 0; }
.logo-img { height: 44px; width: auto; transition: opacity 0.3s ease; }
/* Hero üzerinde beyaz logo, scroll sonrası renkli logo */
.navbar:not(.scrolled) .logo-white { display: block; }
.navbar:not(.scrolled) .logo-color { display: none; }
.navbar.scrolled .logo-white { display: none; }
.navbar.scrolled .logo-color { display: block; }
.logo-este { font-family: var(--font-h); font-size: 22px; font-weight: 600; color: var(--navy); letter-spacing: 3px; }
.logo-leon { font-family: var(--font-h); font-size: 22px; font-weight: 300; color: var(--gold); letter-spacing: 3px; }
.logo-sub { font-size: 9px; letter-spacing: 3px; color: var(--text2); margin-left: 6px; text-transform: uppercase; }
.nav-links { list-style: none; display: flex; gap: 32px; margin-left: auto; }
.nav-links a {
  text-decoration: none; color: var(--text2); font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase; transition: color var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text2); }
.nav-links a:hover, .navbar.scrolled .nav-links a:hover { color: var(--navy); }
.nav-cta {
  text-decoration: none; background: var(--navy); color: var(--white);
  padding: 10px 24px; font-size: 12px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase; border-radius: var(--radius);
  transition: all var(--transition); white-space: nowrap; border: 2px solid var(--navy);
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.burger { display: none; background: none; border: none; color: var(--navy); font-size: 22px; cursor: pointer; }

/* Hero'daki navbar için beyaz yazı */
.navbar:not(.scrolled) .logo-este { color: var(--white); }
.navbar:not(.scrolled) .logo-sub { color: rgba(255,255,255,0.5); }
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.7); }
.navbar:not(.scrolled) .nav-links a:hover { color: var(--white); }
.navbar:not(.scrolled) .nav-cta { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ---- HERO — Video arka plan + Form ---- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px 80px; overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 35%, #162D58 0%, #0B1C3A 70%);
}
/* Hero video background */
/* 3 dikey video yan yana */
.hero-video-grid {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  z-index: 0;
}
.hero-vid {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.8;
}
/* Eski tek video stili (kullanılmıyor ama dursun) */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.8;
  z-index: 0;
}
@media (max-width: 768px) {
  .hero-video-grid { grid-template-columns: 1fr; }
  .hero-vid:nth-child(2), .hero-vid:nth-child(3) { display: none; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,28,58,0.55) 0%, rgba(11,28,58,0.25) 50%, rgba(11,28,58,0.5) 100%);
  z-index: 1;
}
.hero-particles { position: absolute; inset: 0; z-index: 1; }

/* Hero iç düzen: sol metin + sağ form */
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 60px; align-items: center;
}
.hero-content { text-align: left; }

/* ---- HERO FORM (sağ panel) ---- */
.hero-form-panel {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,169,126,0.25);
  border-radius: 12px;
  padding: 36px 32px;
}
.hero-form-panel h3 {
  font-family: var(--font-h); font-size: 22px; font-weight: 400;
  color: var(--white); margin-bottom: 6px;
}
.hero-form-panel .hf-sub {
  font-size: 12px; color: rgba(255,255,255,0.5);
  letter-spacing: 1px; margin-bottom: 24px;
  padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-form-panel input,
.hero-form-panel select {
  width: 100%; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); color: var(--white);
  padding: 13px 16px; font-family: var(--font-b); font-size: 14px;
  border-radius: 6px; margin-bottom: 12px;
  transition: border-color 0.2s; outline: none;
}
.hero-form-panel input::placeholder { color: rgba(255,255,255,0.4); }
.hero-form-panel input:focus,
.hero-form-panel select:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }
.hero-form-panel select option { background: var(--navy); color: var(--white); }
.hero-form-panel .hf-phone-row { display: grid; grid-template-columns: 100px 1fr; gap: 8px; }
.hf-submit {
  width: 100%; background: var(--gold); color: var(--navy);
  border: none; padding: 15px; font-family: var(--font-b);
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 6px;
  cursor: pointer; transition: all 0.3s; margin-top: 4px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.hf-submit:hover { background: var(--gold2); transform: translateY(-2px); }
.hf-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.hf-wa-alt {
  text-align: center; margin-top: 14px;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
.hf-wa-alt a {
  color: #25D366; text-decoration: none; font-weight: 500;
}
.hf-wa-alt a:hover { text-decoration: underline; }
.hf-success {
  display: none; text-align: center; padding: 20px;
  background: rgba(46,204,113,0.1); border: 1px solid rgba(46,204,113,0.3);
  border-radius: 8px; color: #2ecc71; font-size: 14px; line-height: 1.6;
}
.hf-error {
  display: none; text-align: center; padding: 12px;
  background: rgba(231,76,60,0.1); border: 1px solid rgba(231,76,60,0.3);
  border-radius: 6px; color: #e74c3c; font-size: 13px; margin-top: 8px;
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { text-align: center; }
  .hero-form-panel { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 580px) {
  .hero-form-panel { padding: 24px 20px; }
  .hero-form-panel .hf-phone-row { grid-template-columns: 1fr; }
}
.hero-tag {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  display: inline-block; border: 1px solid rgba(201,169,126,0.3);
  padding: 7px 20px; border-radius: 40px;
}
.hero-title {
  font-family: var(--font-h); font-size: clamp(48px, 8vw, 88px);
  font-weight: 300; line-height: 1.1; color: var(--white);
  margin-bottom: 28px; white-space: pre-line;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 44px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  text-decoration: none; background: var(--gold); color: var(--navy);
  padding: 15px 38px; font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,126,0.4); }
.btn-outline {
  text-decoration: none; border: 2px solid rgba(255,255,255,0.4); color: var(--white);
  padding: 13px 38px; font-size: 13px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase; border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
}
.hero-scroll span {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0;transform:scaleY(0)} 50%{opacity:1;transform:scaleY(1)} }

/* ---- PROMISES — Hero sonrası ilk vuruş ---- */
.promises {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.promises-label {
  text-align: center; font-size: 10px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 48px;
}
.promises-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.promise-card {
  background: var(--white); padding: 44px 32px; text-align: center;
  transition: background var(--transition);
}
.promise-card:hover { background: var(--bg); }
.promise-card.highlight {
  background: var(--navy);
}
.promise-card.highlight .promise-icon,
.promise-card.highlight h3 { color: var(--white); }
.promise-card.highlight p { color: rgba(255,255,255,0.65); }
.promise-icon {
  font-size: 40px; font-family: var(--font-h); color: var(--navy);
  line-height: 1; margin-bottom: 16px; font-weight: 300;
}
.promise-card h3 {
  font-family: var(--font-h); font-size: 19px; font-weight: 400;
  color: var(--navy); margin-bottom: 10px;
}
.promise-card p { font-size: 13px; color: var(--text2); line-height: 1.7; }

/* ---- STATS — Lacivert şerit ---- */
.stats {
  background: var(--navy);
  border-top: 1px solid rgba(201,169,126,0.15);
  border-bottom: 1px solid rgba(201,169,126,0.15);
  padding: 48px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item {
  text-align: center; padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-h); font-size: 52px; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-plus { font-family: var(--font-h); font-size: 32px; color: var(--gold); vertical-align: super; }
.stat-item p { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 8px; }

/* ---- SECTION BASE ---- */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-header h2 {
  font-family: var(--font-h); font-size: clamp(32px,5vw,54px);
  font-weight: 300; color: var(--navy); margin-bottom: 18px;
}
.section-sub { font-size: 15px; color: var(--text2); max-width: 560px; margin: 0 auto; }

/* ---- WHY ---- */
.why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.why-card {
  background: var(--white); padding: 48px;
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.why-card:hover { border-color: var(--gold); box-shadow: var(--shadow2); transform: translateY(-4px); }
.why-icon { font-size: 28px; color: var(--gold); margin-bottom: 20px; }
.why-card h3 { font-family: var(--font-h); font-size: 22px; font-weight: 400; color: var(--navy); margin-bottom: 12px; }
.why-card p { font-size: 14px; color: var(--text2); line-height: 1.8; }

/* ---- GUARANTEE ---- */
.guarantee { background: var(--navy); }
.guarantee .section-header h2 { color: var(--white); }
.guarantee .section-sub { color: rgba(255,255,255,0.6); }
.guarantee .section-tag { color: var(--gold); }
.guarantee-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 32px; }
.guarantee-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(201,169,126,0.2);
  padding: 40px 36px; border-radius: var(--radius);
  transition: all var(--transition);
}
.guarantee-card:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); }
.g-num {
  font-family: var(--font-h); font-size: 48px; font-weight: 300;
  color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: 16px;
}
.guarantee-card h3 { font-family: var(--font-h); font-size: 20px; font-weight: 400; color: var(--white); margin-bottom: 10px; }
.guarantee-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; }
.guarantee-note {
  text-align: center; font-size: 12px; color: rgba(255,255,255,0.4);
  letter-spacing: 1px; font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
}

/* ---- TECHNIQUES ---- */
.techniques { background: var(--white); }
.tech-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tech-card {
  background: var(--bg); border: 1px solid var(--border);
  padding: 36px; border-radius: var(--radius);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.tech-card::before {
  content:''; position:absolute; top:0; left:0; right:0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.tech-card:hover { border-color: rgba(201,169,126,0.4); box-shadow: var(--shadow2); transform: translateY(-4px); }
.tech-card:hover::before { transform: scaleX(1); }
.tech-card.featured { border-color: var(--gold); background: var(--white); box-shadow: var(--shadow2); }
.tech-card.featured::before { transform: scaleX(1); }
.tech-num { font-size: 11px; letter-spacing: 3px; color: var(--gold); opacity: 0.7; }
.tech-card h3 { font-family: var(--font-h); font-size: 24px; font-weight: 400; color: var(--navy); margin: 12px 0 10px; }
.tech-card p { font-size: 13px; color: var(--text2); line-height: 1.8; }
.tech-line { width: 32px; height: 2px; background: var(--gold); margin-top: 20px; }

/* ---- GALLERY ---- */
.gallery { background: var(--bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.gallery-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.gallery-card:hover { box-shadow: var(--shadow2); }
.gallery-img {
  height: 220px; display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text2); background: var(--bg2);
}
.gallery-img.before { border-bottom: 1px solid var(--border); }
.gallery-img.after { background: rgba(11,28,58,0.04); color: var(--navy); font-weight: 500; }
.gallery-caption { padding: 14px 20px; font-size: 12px; color: var(--text2); letter-spacing: 1px; background: var(--white); }

/* ---- HOTEL ---- */
.hotel-section { background: var(--navy); }
.hotel-section .section-header h2 { color: var(--white); }
.hotel-section .section-sub { color: rgba(255,255,255,0.6); }
.hotel-section .section-tag { color: var(--gold); }
.hotel-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.hotel-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(201,169,126,0.15);
  padding: 36px 24px; text-align: center; border-radius: var(--radius);
  transition: all var(--transition);
}
.hotel-card:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); transform: translateY(-4px); }
.hotel-icon { font-size: 36px; margin-bottom: 16px; }
.hotel-card h3 { font-family: var(--font-h); font-size: 18px; font-weight: 400; color: var(--white); margin-bottom: 10px; }
.hotel-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ---- PACKAGES ---- */
.packages { background: var(--bg); }
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.pkg-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 44px 36px; border-radius: var(--radius);
  box-shadow: var(--shadow); position: relative;
  transition: all var(--transition);
}
.pkg-card:hover { box-shadow: var(--shadow2); transform: translateY(-4px); }
.pkg-card.featured {
  border-color: var(--navy); box-shadow: var(--shadow2);
  transform: scale(1.03);
}
.pkg-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: var(--gold); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; padding: 5px 18px;
  border-radius: 20px; white-space: nowrap;
}
.pkg-card h3 { font-family: var(--font-h); font-size: 26px; font-weight: 400; color: var(--navy); margin-bottom: 8px; }
.pkg-price { font-size: 28px; color: var(--gold); font-weight: 600; margin-bottom: 24px; }
.pkg-features { list-style: none; margin-bottom: 32px; }
.pkg-features li { padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text2); }
.pkg-features li::before { content: '✓  '; color: var(--navy); font-weight: 600; }
.btn-gold-sm {
  display: block; text-align: center; text-decoration: none;
  background: var(--navy); color: var(--white); padding: 13px;
  font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  border-radius: var(--radius); transition: all var(--transition);
  border: 2px solid var(--navy);
}
.btn-gold-sm:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ---- ISTANBUL ---- */
.istanbul { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 0; }
.istanbul-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.istanbul-text h2 { font-family: var(--font-h); font-size: clamp(30px,4vw,48px); font-weight: 300; color: var(--navy); margin-bottom: 16px; }
.istanbul-list { list-style: none; margin-top: 32px; }
.istanbul-list li { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text2); }
.istanbul-list li::before { content: '→  '; color: var(--gold); font-weight: 600; }
.istanbul-visual { display: flex; align-items: center; justify-content: center; }
.emblem-ring {
  width: 320px; height: 320px; border: 2px solid var(--navy);
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: radial-gradient(circle, var(--bg2) 0%, var(--white) 70%);
  box-shadow: 0 0 60px rgba(11,28,58,0.08);
}
.emblem-city { font-size: 11px; letter-spacing: 7px; text-transform: uppercase; color: var(--text2); }
.emblem-icon { font-size: 56px; }
.emblem-icon-img { width: 90px; height: auto; display: block; }
.emblem-text { font-family: var(--font-h); font-size: 20px; letter-spacing: 4px; color: var(--navy); font-weight: 400; }

/* ---- FAQ ---- */
.faq { background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); background: var(--white); }
.faq-item:first-child { border-top: 1px solid var(--border); border-radius: var(--radius) var(--radius) 0 0; }
.faq-item:last-child { border-radius: 0 0 var(--radius) var(--radius); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px; cursor: pointer; font-size: 15px; color: var(--navy);
  gap: 20px; transition: color var(--transition); font-weight: 400;
}
.faq-q:hover { color: var(--gold); background: var(--bg); }
.faq-arrow { color: var(--navy); font-size: 20px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(45deg); color: var(--gold); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 14px; color: var(--text2); line-height: 1.8; padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ---- CONTACT ---- */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start; max-width: 940px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg); border: 1px solid var(--border); color: var(--text);
  padding: 14px 18px; font-family: var(--font-b); font-size: 14px;
  border-radius: var(--radius); transition: border-color var(--transition); outline: none; width: 100%;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text2); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--navy); background: var(--white); }
.contact-form select option { background: var(--white); }
.btn-gold-full {
  background: var(--navy); color: var(--white); border: 2px solid var(--navy);
  padding: 15px; font-family: var(--font-b); font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; border-radius: var(--radius);
  cursor: pointer; transition: all var(--transition); width: 100%;
}
.btn-gold-full:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.contact-info { display: flex; flex-direction: column; gap: 16px; padding-top: 16px; }
.contact-or { font-size: 12px; color: var(--text2); letter-spacing: 1px; text-transform: uppercase; }
.contact-wa, .contact-email {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  padding: 16px 20px; border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text); font-size: 14px; transition: all var(--transition); background: var(--bg);
}
.contact-wa:hover { border-color: #25D366; color: #25D366; background: rgba(37,211,102,0.04); }
.contact-email:hover { border-color: var(--navy); color: var(--navy); }
.wa-icon { font-size: 20px; }
.availability-note {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border: 1px solid rgba(201,169,126,0.3);
  border-radius: var(--radius); background: rgba(201,169,126,0.06);
}
.avail-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 8px var(--gold); flex-shrink: 0;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
#availText { font-size: 13px; color: var(--gold); }
.contact-trust { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-badge {
  font-size: 11px; padding: 6px 12px;
  border: 1px solid var(--border); border-radius: 20px;
  color: var(--text2); background: var(--bg);
}

/* ---- FOOTER ---- */
.footer { background: var(--navy); border-top: 1px solid rgba(201,169,126,0.15); padding: 44px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer .logo-este { color: var(--white); }
.footer .logo-sub { color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 1px; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-float svg { width: 28px; height: 28px; }

/* ---- ANIMATIONS ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- MOBILE ---- */
@media (max-width: 900px) {
  .promises-grid { grid-template-columns: repeat(2,1fr); }
  .guarantee-grid { grid-template-columns: 1fr; }
  .hotel-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2,1fr); }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-card.featured { transform: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .istanbul-inner { grid-template-columns: 1fr; }
  .emblem-ring { width: 240px; height: 240px; }
  .emblem-icon { font-size: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; position: fixed; top: 76px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 24px; gap: 16px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .burger { display: block; }
  .nav-cta { display: none; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline { width: 100%; max-width: 280px; text-align: center; }
  .tech-grid { grid-template-columns: 1fr; }
  .why-card { padding: 32px 24px; }
  .hotel-grid { grid-template-columns: 1fr; }
}
