/* ========================================
   BEGÜM MALKOÇ — Redesigned Stylesheet
   Fonts: Cormorant Garamond + DM Sans
   Palette: Warm cream, sage, terracotta
   ======================================== */


* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream:       #FAF8F4;
  --beige:       #F2EBE1;
  --beige-dark:  #E6DDD0;
  --brown:       #9B7B6A;
  --brown-dark:  #7A5A49;
  --sage:        #7A9A7F;
  --sage-light:  #EBF1EB;
  --text:        #2C2416;
  --text-muted:  #7A6E64;
  --border:      #E4DDD5;
  --white:       #FFFFFF;
  --dark-bg:     #2C2416;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); letter-spacing: -0.01em; margin-bottom: 1.2rem; }
h3 { font-size: 1.65rem; font-weight: 600; margin-bottom: 0.5rem; }
p  { font-size: 1.08rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1rem; }
a  { color: var(--brown); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--brown-dark); }
strong { font-weight: 600; color: var(--text); }
ul, ol { margin-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.5rem; color: var(--text-muted); line-height: 1.7; }

/* ── CONTAINER ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(to right, var(--brown-dark) 50%, var(--brown) 50%);
  background-size: 200% 100%;
  background-position: right center;
  color: var(--white);
  transition: background-position 0.4s ease, transform 0.25s, box-shadow 0.25s, color 0.25s;
}
.btn-primary:hover {
  background-position: left center;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(155,123,106,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
  transition: background 0.28s, color 0.28s, border-color 0.28s, transform 0.25s, box-shadow 0.25s;
}
.btn-secondary:hover {
  background: var(--beige);
  color: var(--brown-dark);
}
.btn-large { padding: 1.1rem 2.8rem; font-size: 1.08rem; }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
  transition: background 0.25s, color 0.25s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* ── NAVIGATION ── */
.navbar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  align-items: center;
}
.nav-menu a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.25s;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
}
.nav-menu a:hover { color: var(--text); }
.nav-menu a.active {
  color: var(--text);
  text-decoration: none;
  border-bottom-color: var(--text);
}
.nav-cta {
  background: var(--brown) !important;
  color: var(--white) !important;
  padding: 0.65rem 1.8rem !important;
  border-radius: 4px;
  font-size: 0.95rem !important;
  text-transform: uppercase !important;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--brown-dark) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* ── HERO LOAD ANIMATIONS ── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── HERO ── */
.hero {
  background: var(--cream);
  padding: clamp(2.5rem, 4.5vw, 4rem) 2rem clamp(2rem, 3.5vw, 3rem);
  min-height: clamp(480px, 80vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero-grid {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.2rem;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.1s;
}
.hero-text h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  margin-bottom: 1.4rem;
  line-height: 1.1;
  color: var(--text);
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.25s;
}
.hero-text > p {
  font-size: 1.18rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  line-height: 1.85;
  max-width: 480px;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.4s;
}
.hero-badges {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.5s;
}
.hero-text .btn {
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.62s;
}
/* Hero "Bilgi Alın" button %20 bigger */
.hero-text .btn-large { font-size: 1.3rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--beige);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
}
.hero-photo {
  position: relative;
  animation: heroFadeUp 0.9s ease both;
  animation-delay: 0.3s;
}
.hero-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(44,36,22,0.18);
  aspect-ratio: 3/4;
  max-height: clamp(480px, 70vh, 640px);
  background: var(--beige);
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-photo-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-photo-caption .caption-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.hero-photo-caption p {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}


/* ── SCROLL ANIMATIONS ── */
[data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--anim-delay, 0s);
}
[data-anim].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SECTION BASE ── */
.section { padding: clamp(4rem, 7vw, 6.5rem) 2rem; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--brown);
  flex-shrink: 0;
}
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { margin-bottom: 0.6rem; }
.section-title p { max-width: 540px; margin: 0 auto; font-size: 1.1rem; }
/* For centered section-label in dark sections, override flex alignment */
.section-dark .section-label,
.section-inner > .section-label {
  justify-content: center;
}
.section-alt { background: var(--beige); }
.hakkimda-creds { padding-top: clamp(1.5rem, 3vw, 2.5rem) !important; }
.section-dark {
  background: var(--brown);
  color: var(--white);
  text-align: center;
}
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.9); margin-bottom: 2rem; }
.section-dark .section-label { color: rgba(255,255,255,0.75); }
.section-dark .section-label::before { background: rgba(255,255,255,0.75); }

/* ── DIVIDER LINE ── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--brown);
  margin: 1.2rem auto;
}
.divider-left {
  margin-left: 0;
}

/* ── VALUE CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(44,36,22,0.08);
}
.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--beige-dark);
  line-height: 1;
  margin-bottom: 1rem;
}
.card h3 { font-size: 1.45rem; margin-bottom: 0.6rem; }
.card p { font-size: 1.02rem; margin: 0; }

/* ── STEPS ── */
.steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2.8rem;
  right: 0;
  width: 1px;
  height: 60px;
  background: var(--border);
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--beige-dark);
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.755rem; margin-bottom: 0.5rem; }
.step p { font-size: 1rem; max-width: 200px; margin: 0 auto; }

/* ── ABOUT PREVIEW ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-photo-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(44,36,22,0.12);
  aspect-ratio: 4/5;
  background: var(--beige);
}
.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-text p { font-size: 1.3rem; }
.about-text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
}
/* "Daha Fazlasını Öğrenin" — area card hover style */
.about-text .btn-secondary:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(155,123,106,0.22);
}

/* ── FAQ GRID ── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.8rem;
  transition: box-shadow 0.25s;
}
.faq-item:hover { box-shadow: 0 8px 24px rgba(44,36,22,0.07); }
.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  margin-top: 0;
}
.faq-item p { font-size: 0.93rem; margin: 0; line-height: 1.7; }

.faq-detail {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  margin: 1rem 0;
}
.faq-detail h3 { margin-top: 0; font-size: 1.2rem; }
.faq-detail p { margin: 0; font-size: 0.95rem; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--beige);
  border-bottom: 1px solid var(--border);
  padding: clamp(3rem, 5vw, 4.5rem) 2rem clamp(2.5rem, 4vw, 3.5rem);
}
.page-header-inner {
  max-width: 700px;
}
.page-header h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 0.6rem;
}
.page-header p {
  font-size: 1.12rem;
  margin: 0;
}

/* ── CONTENT PAGE ── */
.content-wrap {
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4rem) 2rem;
}

/* ── CONTACT SECTION PADDING ── */
.contact-section { padding-top: 2.5rem; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.8rem 2rem;
  margin: 2rem 0;
}
.highlight-box h3 { margin-top: 0; font-size: 1.2rem; }

/* ── CREDENTIALS ── */
.cred-list { list-style: none; margin: 1.5rem 0; }
.cred-list li {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.2rem 1.6rem;
  margin-bottom: 0.8rem;
  border-radius: 8px;
  color: var(--text);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}
.cred-list li::before {
  content: '✦';
  color: var(--brown);
  font-size: 0.75rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}
.cred-list li strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
  grid-column: 2;
}
.cred-source {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  grid-column: 2;
}

/* ── ABOUT PAGE PHOTO SECTION ── */
.about-hero {
  padding: clamp(2rem, 3.5vw, 3rem) 2rem clamp(1rem, 2vw, 1.5rem);
  min-height: clamp(480px, 80vh, 860px);
  background: var(--cream);
  position: relative;
}
.about-hero-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1.8fr;
  gap: 4rem;
  align-items: center;
}
.about-hero-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(44,36,22,0.14);
  aspect-ratio: 3/4;
  background: var(--beige);
}
.about-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-hero-text h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  margin-bottom: 0.4rem;
}
.about-hero-text .title {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.8rem;
}
.about-hero-text p {
  font-size: 1.08rem;
  line-height: 1.85;
}

/* ── EXPERTISE BLOCKS ── */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@keyframes gotoHighlight {
  0%   { box-shadow: 0 0 0 0 rgba(155,123,106,0.55); }
  40%  { box-shadow: 0 0 0 10px rgba(155,123,106,0.22); }
  100% { box-shadow: 0 0 0 0 rgba(155,123,106,0); }
}
.goto-highlight {
  animation: gotoHighlight 1.4s ease-out forwards;
}
.expertise-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.expertise-block:hover {
  box-shadow: 0 12px 32px rgba(44,36,22,0.08);
  transform: translateY(-2px);
}
.expertise-block h2 {
  font-size: 1.55rem;
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: var(--text);
}
.expertise-block p { font-size: 1.02rem; margin: 0; line-height: 1.75; }
.expertise-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  background: var(--beige);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-method {
  background: var(--beige);
  border: 1px solid var(--border);
  padding: 1.5rem 1.8rem;
  border-radius: 10px;
  margin: 1rem 0;
}
.contact-method h3 { margin-top: 0; font-size: 1.1rem; }
.contact-note {
  background: #FEF9EE;
  border: 1px solid #F0DFA0;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  margin: 1rem 0;
}
.contact-note p { margin: 0.3rem 0; font-size: 1rem; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(44,36,22,0.06);
}
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(155,123,106,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { width: 100%; margin-top: 0.5rem; }

/* ── FOOTER ── */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.9);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  align-items: start;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,1);
  margin-bottom: 0.25rem;
}
.footer-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,1);
  margin: 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-end;
}
.footer-nav a {
  font-size: 0.95rem;
  color: rgba(255,255,255,1);
  text-decoration: none;
  transition: color 0.25s;
  letter-spacing: 0.02em;
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 1.5rem;
}
.footer-bottom p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* ── WHATSAPP BUTTON ── */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 70px;
  height: 70px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.25s, box-shadow 0.25s, bottom 0.3s;
}
.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}
.wa-btn svg { width: 36px; height: 36px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    padding: 1rem 1.5rem 0.5rem;
    min-height: auto;
    align-items: flex-start;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .hero-photo { order: -1; }
  .hero-photo-wrap {
    max-height: 280px;
    aspect-ratio: 4/3;
  }
  .hero-text h1 { font-size: 2.1rem; margin-bottom: 0.4rem; }
  .hero-eyebrow { margin-bottom: 0.3rem; }
  .hero-subline { margin-bottom: 0.6rem; }
  .hero-text > p { font-size: 1rem; margin-bottom: 0.8rem; }
  .hero-photo-wrap img { object-position: center 10%; }
  .cards-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-hero-photo {
    aspect-ratio: 4/3;
    max-height: 340px;
  }
  .about-hero-photo img { object-position: center 10%; }
  .expertise-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps { flex-direction: column; align-items: center; }
  .step:not(:last-child)::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 1rem 2rem;
    z-index: 99;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { border-bottom: 1px solid var(--border); }
  .nav-menu li:last-child { border: none; }
  .nav-menu a { display: block; padding: 0.75rem 0; font-size: 0.9rem; }
  .nav-cta { margin-top: 0.5rem; margin-bottom: 0.75rem; text-align: center; padding: 0.65rem 1.8rem !important; display: inline-block !important; }
  .nav-container { position: relative; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-nav { align-items: flex-start; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 1.5rem; }
  .page-header { padding: 3rem 1.5rem 2rem; }
  .contact-form { padding: 1.8rem 1.5rem; }
  .wa-btn { bottom: 20px; right: 20px; width: 62px; height: 62px; }
  .wa-btn svg { width: 31px; height: 31px; }
}


/* Hero subline */
.hero-subline {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: -0.8rem;
  margin-bottom: 1.4rem;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.35s;
}

/* Çalışma Alanlarım grid (index.html) */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.area-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.8rem 1rem;
  min-height: 120px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.86rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  transition: background 0.28s, color 0.28s, border-color 0.28s, transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.area-card:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(155,123,106,0.22);
}
@media (max-width: 768px) {
  .areas-grid { grid-template-columns: 1fr; }
  .area-card { font-size: 1.65rem; padding: 2rem 1.2rem; }
}
@media (max-width: 480px) {
  .area-card { font-size: 1.45rem; padding: 1.6rem 1rem; }
}

/* ── LANDING PAGES ── */
.lp-hero {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 7.5rem) 2rem clamp(3.5rem, 6vw, 5rem);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.lp-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.lp-hero .hero-eyebrow {
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.1s;
}
.lp-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.25s;
}
.lp-intro {
  font-size: 1.18rem;
  max-width: 580px;
  margin: 0 auto 2.2rem;
  line-height: 1.85;
  color: var(--text-muted);
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.4s;
}
.lp-hero .btn {
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.55s;
}
.lp-trust {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.65s;
}
.lp-trust-item {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.lp-trust-item::before {
  content: '✓';
  color: var(--brown);
  font-weight: 700;
  font-size: 1rem;
}
.lp-specialty { max-width: 800px; margin: 0 auto; }
.lp-specialty .expertise-block h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.lp-specialty .expertise-block p { font-size: 1.12rem; }
.lp-about {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.lp-about p { font-size: 1.12rem; }
@media (max-width: 600px) {
  .lp-hero { padding: 4rem 1.5rem 3rem; }
  .lp-trust { gap: 1rem; }
}
