/* ============================================================
   EGEMEN PREMIUM KIZ YURDU — LANDING PAGE STYLES
   Renk Paleti: Krem + Lacivert + Soft Altın + Bordo aksan
   ============================================================ */

/* Google Fonts */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --cream:        #FAF8F4;
  --cream-dark:   #F2EDE5;
  --navy:         #1C2B4A;
  --navy-mid:     #2D3F62;
  --navy-light:   #3D5280;
  --gold:         #C8A96E;
  --gold-light:   #E2C898;
  --gold-pale:    #F5EDD8;
  --burgundy:     #7B2D3E;
  --burgundy-mid: #9E3A4E;
  --blush:        #E8C4CC;
  --blush-pale:   #F7EDF0;
  --white:        #FFFFFF;
  --text-dark:    #1A1A2E;
  --text-mid:     #3D3D5C;
  --text-light:   #6B6B8A;
  --border:       #E0D8CD;
  --shadow-sm:    0 2px 12px rgba(28,43,74,0.08);
  --shadow-md:    0 6px 30px rgba(28,43,74,0.12);
  --shadow-lg:    0 16px 60px rgba(28,43,74,0.16);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); }

p  { color: var(--text-mid); font-size: 1rem; line-height: 1.75; }

/* ── UTILITIES ─────────────────────────────────────────────── */
/* Ekran okuyucular için görünmez, ama sayfada yer kaplamaz */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.section-alt { background: var(--cream-dark); }
.section-navy { background: var(--navy); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header p { margin-top: 14px; font-size: 1.05rem; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(28,43,74,0.25);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(28,43,74,0.3);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,169,110,0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

.btn-burgundy {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(123,45,62,0.3);
}
.btn-burgundy:hover {
  background: var(--burgundy-mid);
  transform: translateY(-2px);
}

/* ── NAVBAR ────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  transition: var(--transition);
}
.nav-logo-sub {
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
#navbar.scrolled .nav-logo-name { color: var(--navy); }
#navbar.scrolled .nav-logo-sub  { color: var(--text-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
#navbar.scrolled .nav-links a { color: var(--text-mid); }
#navbar.scrolled .nav-links a:hover { color: var(--navy); }

.nav-cta .btn { padding: 10px 22px; font-size: 0.84rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--navy); }

/* ── HERO ──────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1E3A6E 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(200,169,110,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(123,45,62,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-ornament {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-ornament-1 {
  width: 500px; height: 500px;
  border: 1px solid rgba(200,169,110,0.12);
  top: -100px; right: -100px;
}
.hero-ornament-2 {
  width: 300px; height: 300px;
  border: 1px solid rgba(200,169,110,0.08);
  bottom: 50px; left: -80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content { position: relative; z-index: 1; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  font-style: italic;
}
.hero-title span {
  color: var(--gold-light);
  font-style: normal;
}

.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(200,169,110,0.08));
}

.hero-img-placeholder-icon {
  width: 64px; height: 64px;
  background: rgba(200,169,110,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.hero-img-placeholder-text {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  line-height: 1.5;
}

.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(28,43,74,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: #25D366;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.2);
}

.hero-badge-text {
  color: var(--white);
  font-size: 0.78rem;
}

.hero-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-mini-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.hero-mini-card:hover { background: rgba(255,255,255,0.09); }

.hero-mini-card-icon {
  width: 36px; height: 36px;
  background: rgba(200,169,110,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  font-size: 1rem;
}

.hero-mini-card-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  line-height: 1.3;
}

/* ── GÜVEN ALANI ───────────────────────────────────────────── */
#trust {
  padding: 60px 0;
  background: var(--white);
  border-top: 3px solid var(--gold-pale);
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.trust-item:hover {
  background: var(--blush-pale);
  transform: translateY(-3px);
}

.trust-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  font-size: 1.3rem;
}

.trust-text h4 { color: var(--navy); margin-bottom: 4px; font-size: 0.95rem; }
.trust-text p  { font-size: 0.84rem; color: var(--text-light); }

/* ── HAKKIMIZDA ────────────────────────────────────────────── */
#about { padding: 100px 0; }

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

.about-visual {
  position: relative;
}

.about-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
}

.about-img-placeholder-icon {
  width: 72px; height: 72px;
  background: rgba(200,169,110,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.8rem;
}

.about-img-placeholder-text {
  color: var(--text-light);
  font-size: 0.82rem;
}

.about-accent-card {
  position: absolute;
  right: -24px;
  bottom: 40px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 180px;
}

.about-accent-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}
.about-accent-text {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

.about-content .section-label { margin-bottom: 20px; }

.about-content h2 { margin-bottom: 24px; }

.about-content p {
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
}

.about-feature-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── NEDEN BİZ ─────────────────────────────────────────────── */
#why { padding: 100px 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--burgundy));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.why-card:hover::before { transform: scaleX(1); }

.why-card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 16px;
}

.why-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 600;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── ODALAR ────────────────────────────────────────────────── */
#rooms { padding: 100px 0; }

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

.room-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.room-img {
  aspect-ratio: 16/9;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.room-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
  color: var(--text-light);
}

.room-img-placeholder-icon {
  font-size: 2.5rem;
  color: var(--gold);
}

.room-img-placeholder-label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.room-img-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

.room-info { padding: 24px 28px; }
.room-info h3 { font-family: var(--font-body); font-size: 1.05rem; margin-bottom: 8px; font-weight: 600; }
.room-info p  { font-size: 0.87rem; color: var(--text-light); line-height: 1.6; }

/* ── KİMLER İÇİN ───────────────────────────────────────────── */
#for-whom { padding: 100px 0; }

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

.forwhom-content h2 { margin-bottom: 20px; }
.forwhom-content > p { margin-bottom: 32px; font-size: 1.02rem; }

.forwhom-list { display: flex; flex-direction: column; gap: 14px; }

.forwhom-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.forwhom-item:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.forwhom-item-icon {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.forwhom-item-text { font-size: 0.9rem; font-weight: 500; color: var(--text-dark); line-height: 1.4; }

.forwhom-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.forwhom-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 40px;
  text-align: center;
  color: var(--white);
}

.forwhom-img-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.forwhom-img-text { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

.forwhom-stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.forwhom-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.forwhom-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}

.forwhom-stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ── ANA SITE CTA ──────────────────────────────────────────── */
#main-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  position: relative;
  overflow: hidden;
}

#main-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(200,169,110,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(123,45,62,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.main-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.main-cta-inner .section-label { justify-content: center; color: var(--gold-light); }
.main-cta-inner .section-label::before { background: var(--gold-light); }

.main-cta-inner h2 {
  color: var(--white);
  margin-bottom: 20px;
  font-style: italic;
}

.main-cta-inner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 40px; }

.main-cta-url {
  display: inline-block;
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: var(--radius-sm);
  padding: 8px 20px;
  font-size: 0.9rem;
  color: var(--gold-light);
  font-family: 'Courier New', monospace;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.main-cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── FAQ ───────────────────────────────────────────────────── */
#faq { padding: 100px 0; }

.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: var(--font-body);
}

.faq-q-text {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}

.faq-q-icon {
  width: 28px; height: 28px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1rem;
}

.faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--gold); color: var(--white); }

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }

.faq-a p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* ── İLETİŞİM ──────────────────────────────────────────────── */
#contact { padding: 100px 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 18px; }
.contact-info > p { margin-bottom: 32px; font-size: 1.02rem; }

.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: var(--transition);
}
.contact-method:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.contact-method-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-method-text { flex: 1; }
.contact-method-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-method-value { font-size: 0.95rem; font-weight: 600; color: var(--navy); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); }

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.12);
}

.form-group textarea { min-height: 110px; }

.form-submit { width: 100%; padding: 14px; font-size: 1rem; font-weight: 600; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success.visible { display: block; }

.form-success-icon {
  width: 64px; height: 64px;
  background: rgba(37,211,102,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #25D366;
  font-size: 1.8rem;
}

.form-success h4 { color: var(--navy); margin-bottom: 10px; }
.form-success p  { font-size: 0.9rem; color: var(--text-light); }

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: #0F1A2E;
  padding: 60px 0 0;
  color: rgba(255,255,255,0.7);
}

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

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.footer-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  padding: 10px 14px;
  border-left: 2px solid rgba(200,169,110,0.3);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a { color: var(--gold-light); }

/* ── STICKY WHATSAPP ───────────────────────────────────────── */
#sticky-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.sticky-wa-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
  font-size: 1.5rem;
}
.sticky-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

.sticky-wa-tooltip {
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  animation: pulseTooltip 2s ease-in-out infinite;
}

@keyframes pulseTooltip {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ── SCROLL ANIMATIONS ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── MOBILE MENU ───────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.5rem; color: var(--white); font-family: var(--font-display); }
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--white); font-size: 1.8rem; cursor: pointer;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual      { display: none; }
  .hero-subtitle    { max-width: 100%; }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid       { grid-template-columns: 1fr; }
  .about-inner      { grid-template-columns: 1fr; gap: 48px; }
  .about-visual     { max-width: 480px; }
  .forwhom-inner    { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner    { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
  .trust-inner      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section          { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger        { display: flex; }
  .hero-stats       { gap: 20px; flex-wrap: wrap; }
  .why-grid         { grid-template-columns: 1fr; }
  .trust-inner      { grid-template-columns: 1fr; }
  .about-accent-card{ right: 0; }
  .form-row         { grid-template-columns: 1fr; }
  .footer-inner     { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  #sticky-wa        { bottom: 20px; right: 16px; }
  .forwhom-stat-cards { grid-template-columns: 1fr 1fr; }
  .rooms-grid       { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  .hero-buttons     { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }
  .main-cta-buttons { flex-direction: column; align-items: center; }
  .hero-cards-row   { grid-template-columns: 1fr; }
  .about-features   { grid-template-columns: 1fr; }
  .forwhom-stat-cards { grid-template-columns: 1fr; }
}

/* ── PERFORMANS OPTİMİZASYONLARI ──────────────────────────── */

/* Kritik görseller için layout shift önle */
.hero-image-main,
.about-img-box,
.room-img {
  contain: layout style;
}

/* Scroll animasyonları için GPU kullan */
.reveal {
  will-change: opacity, transform;
}
.reveal.visible {
  will-change: auto;
}

/* Font display swap — FOUT yerine FOIT önle */
@font-face {
  font-display: swap;
}

/* Sticky WhatsApp GPU katmanı */
#sticky-wa {
  will-change: transform;
}

/* Navbar geçişi için GPU */
#navbar {
  will-change: background-color, padding;
  transform: translateZ(0);
}

/* ── LAYOUT SHIFT ÖNLEYİCİ ────────────────────────────────── */

/* Hero görsel alanı — boyut sabitle */
.hero-image-main {
  aspect-ratio: 4/3;
  min-height: 300px;
}

/* Hakkımızda görsel alanı */
.about-img-box {
  aspect-ratio: 3/4;
  min-height: 400px;
}

/* Oda görsel alanı */
.room-img {
  aspect-ratio: 16/9;
  min-height: 200px;
  background: var(--cream-dark);
}

/* Tüm img elementleri için layout shift önle */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Navbar yüksekliğini sabitle */
#navbar {
  height: 72px;
}

#navbar.scrolled {
  height: 60px;
}

/* Font değişiminden kaynaklanan layout shift önle */
* {
  font-display: swap;
}
