/* ── SECTION SHARED ── */
section { padding: var(--section-pad) 0; }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-heading {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.section-heading em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 1rem;
  color: var(--warm-gray);
  max-width: 580px;
  line-height: 1.8;
}

/* ── ABOUT ENTITY SECTION ── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}
.about-img-placeholder {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(26, 20, 16, 0.12);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 130px;
  height: 130px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}
.about-badge-num {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
.about-badge-text {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 80px;
}
.about-details { margin-top: 2rem; }
.about-detail-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--ivory);
}
.about-detail-item:last-child { border-bottom: none; }
.about-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.about-detail-title {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.about-detail-text { font-size: 0.88rem; color: var(--warm-gray); }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { bottom: -1rem; right: -0.5rem; width: 100px; height: 100px; }
  .about-badge-num { font-size: 1.6rem; }
}

/* ── SERVICES ── */
.services-section { background: var(--cream); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5px;
}
.service-card {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-3px); }
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.service-num {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 3.5rem;
  color: var(--ivory);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  line-height: 1;
  font-weight: 300;
  pointer-events: none;
}
.service-name {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
  color: var(--charcoal);
}
.service-desc {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-meta {
  display: flex;
  gap: 1.5rem;
}
.service-meta-item {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* ── WHY CHOOSE US ── */
.why-section { background: var(--charcoal); color: var(--white); }
.why-heading { color: var(--white) !important; }
.why-body { color: rgba(255,255,255,0.6) !important; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.why-card {
  border: 1px solid rgba(201,169,110,0.2);
  padding: 2.2rem;
  transition: border-color 0.3s, background 0.3s;
}
.why-card:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.05);
}
.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,169,110,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.3rem;
}
.why-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.why-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ── GALLERY ── */
.gallery-section { background: var(--ivory); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item:nth-child(6) { grid-column: span 7; }
.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-placeholder {
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.5s;
}
.gallery-item:nth-child(odd) .gallery-placeholder { background: linear-gradient(135deg, #e8d5c4, #d4b896); }
.gallery-item:nth-child(even) .gallery-placeholder { background: linear-gradient(135deg, #d4b896, #c9a96e40); }
.gallery-tag {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  backdrop-filter: blur(4px);
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* ── SEO CONTENT SECTION ── */
.content-section { background: var(--white); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
}
.content-block h3 {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gold-light);
}
.content-block p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 0.8rem;
}
.content-tips {
  margin-top: 3rem;
  background: var(--ivory);
  padding: 2.5rem;
}
.content-tips h3 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.tips-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  list-style: none;
}
.tips-list li {
  font-size: 0.87rem;
  color: var(--warm-gray);
  padding-left: 1.2rem;
  position: relative;
}
.tips-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}
@media (max-width: 768px) {
  .content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .tips-list { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS (Google — gerçek yorumlar profilde) ── */
.testimonials-section { background: var(--cream); }
.testimonials-google-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
  margin-top: 2.75rem;
}
.testimonials-google-panel {
  background: var(--white);
  padding: clamp(1.75rem, 3vw, 2.35rem);
  border-left: 3px solid var(--gold);
  box-shadow: 0 16px 40px rgba(26, 20, 16, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.testimonials-google-score {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.testimonials-google-num {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1;
}
.testimonials-google-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}
.testimonials-google-caption {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}
.testimonials-google-note {
  margin: 0.25rem 0 0.5rem;
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.75;
  max-width: 34ch;
}
.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.85rem 1.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--white);
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-google-reviews:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.testimonials-map-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 20, 16, 0.12);
  min-height: 280px;
  background: rgba(26, 20, 16, 0.06);
}
.testimonials-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 42vw, 400px);
  border: 0;
}
@media (max-width: 900px) {
  .testimonials-google-wrap {
    grid-template-columns: 1fr;
  }
}

/* ── FAQ ── */
.faq-section { background: var(--ivory); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  margin-top: 3rem;
}
.faq-sidebar h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.faq-sidebar p { font-size: 0.87rem; color: var(--warm-gray); line-height: 1.7; }
.faq-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  transition: background 0.2s;
  border-radius: 2px;
}
.faq-whatsapp:hover { background: #1ebe5d; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(201,169,110,0.25);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.4rem 0;
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question:hover { color: var(--gold); }
.faq-toggle {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.4rem;
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }
@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── BOOKING CTA ── */
.booking-section {
  background: linear-gradient(135deg, #1a1410 0%, #2d1f12 100%);
  text-align: center;
}
.booking-section h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.booking-section h2 em { color: var(--gold-light); font-style: italic; }
.booking-section p {
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}
.booking-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #25D366;
  color: var(--white);
  padding: 1rem 2.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Outfit', system-ui, sans-serif;
  border-radius: 2px;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  padding: 1rem 2.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
  font-family: 'Outfit', system-ui, sans-serif;
}
.btn-light:hover { border-color: var(--gold); color: var(--gold); }

/* ── CONTACT (WhatsApp — form yok) ── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
  align-items: stretch;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}
.contact-info-icon {
  font-size: 1.2rem;
  margin-top: 2px;
}
.contact-info-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-info-value {
  font-size: 0.92rem;
  color: var(--charcoal);
}
.contact-info-value a { color: var(--charcoal); transition: color 0.2s; }
.contact-info-value a:hover { color: var(--gold); }
.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1rem;
  transition: color 0.2s;
}
.contact-map-link:hover { color: var(--gold-dark); }
.contact-wa-panel {
  background: var(--cream);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-left: 4px solid var(--gold);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}
.contact-wa-heading {
  margin: 0;
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.contact-wa-lead {
  margin: 0;
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.75;
  max-width: 38ch;
}
.contact-wa-steps {
  margin: 0.25rem 0 0.5rem;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.75;
  max-width: 40ch;
}
.contact-wa-steps li { margin-bottom: 0.35rem; }
.contact-wa-steps strong { color: var(--charcoal); font-weight: 600; }
.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.35rem;
  padding: 1rem 1.85rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: #25d366;
  border: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.contact-wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}
.contact-wa-num {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 0.88rem;
}
.contact-wa-num a {
  color: var(--charcoal);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.5);
  transition: color 0.2s, border-color 0.2s;
}
.contact-wa-num a:hover {
  color: var(--gold-dark);
  border-color: var(--gold);
}
.contact-wa-foot {
  margin: 0;
  font-size: 0.8rem;
  color: var(--warm-gray);
  line-height: 1.65;
  text-align: center;
  max-width: 36ch;
  align-self: center;
}
.contact-wa-shortcuts {
  width: 100%;
  margin-top: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26, 20, 16, 0.08);
}
.contact-wa-shortcuts-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.65rem;
}
.contact-wa-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.contact-wa-chips a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.35);
  text-decoration: none;
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.contact-wa-chips a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(255, 255, 255, 0.95);
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

