﻿/* =========================================================
   Ayrancilar Cilingir — Ic Sayfa Stilleri (internal.css)
   ========================================================= */

/* ---------- Aktif navigasyon baglantisi ---------- */
.nav__link.is-active {
  color: var(--ink);
  border-bottom-color: #E78652;
}

/* ---------- Sayfa basligi ---------- */
.page-head {
  background: #FAF7F2;
  padding-block: clamp(60px, 8vw, 90px);
  border-bottom: 1px solid #E9DED6;
  position: relative;
  overflow: hidden;
}

.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FAF7F2 0%, #FBEEE5 60%, #FAF7F2 100%);
  z-index: 0;
}

.page-head__deco {
  position: absolute;
  top: -30px;
  right: -60px;
  width: 260px;
  height: 260px;
  border: 1.5px solid rgba(231,134,82,0.15);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.page-head__deco::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(231,134,82,0.08);
  border-radius: 50%;
}

.page-head__inner {
  position: relative;
  z-index: 1;
}

.page-head__eyebrow {
  font-family: var(--f-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #E78652;
  margin-bottom: 14px;
}

.page-head__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: #292522;
  margin-bottom: 16px;
}

.page-head__lede {
  font-size: clamp(16px, 1.7vw, 18px);
  color: #6B625D;
  max-width: 56ch;
  line-height: 1.6;
}

/* ---------- Genel ic bolum ---------- */
.inner-section {
  background: #FAF7F2;
  padding-block: clamp(60px, 8vw, 96px);
}

/* =========================================================
   HIZMETLER SAYFASI
   ========================================================= */

.svc-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.svc-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #FFFFFF;
  border: 1px solid #E9DED6;
  border-radius: 12px;
  padding: 22px 20px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}

.svc-item:hover {
  border-color: #E78652;
  box-shadow: 0 8px 28px rgba(231,134,82,0.10);
  transform: translateY(-2px);
}

.svc-item__ico {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF1E9;
  border: 1.5px solid #F1C4AC;
  color: #E27643;
  border-radius: 10px;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  flex-shrink: 0;
}

.svc-item__ico svg {
  width: 22px;
  height: 22px;
}

.svc-item:hover .svc-item__ico {
  background: #E78652;
  color: #FFFFFF;
  border-color: #E78652;
}

.svc-item__body { flex: 1; }

.svc-item__title {
  font-family: var(--f-display);
  font-weight: 750;
  font-size: 19px;
  color: #292522;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 6px;
}

.svc-item__desc {
  font-size: 15.5px;
  color: #6B625D;
  line-height: 1.55;
}

.svc-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
  padding: 22px 24px;
  background: #FFFFFF;
  border: 1px solid #E9DED6;
  border-radius: 12px;
}

.svc-contact-row__text { display: flex; flex-direction: column; gap: 2px; }
.svc-contact-row__label { font-size: 15px; color: #6B625D; }
.svc-contact-row__num {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 800;
  color: #292522;
  letter-spacing: .01em;
}

.svc-contact-row__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #292522;
  color: #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}

.svc-contact-row__btn svg {
  width: 18px; height: 18px;
  color: #E78652;
  transition: color .2s var(--ease);
}

.svc-contact-row__btn:hover { background: #E78652; transform: translateY(-1px); }
.svc-contact-row__btn:hover svg { color: #FFFFFF; }

/* =========================================================
   HAKKIMIZDA SAYFASI
   ========================================================= */

.about-section {
  background: #FAF7F2;
  padding-block: clamp(60px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}

.about-section__deco-lock {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 320px;
  height: 320px;
  color: rgba(231,134,82,0.04);
  pointer-events: none;
  z-index: 0;
}

.about-section__deco-lock svg { width: 100%; height: 100%; }

.about-intro {
  position: relative;
  z-index: 1;
  max-width: 68ch;
  font-size: clamp(16px, 1.7vw, 18px);
  color: #6B625D;
  line-height: 1.7;
  margin-top: 32px;
}

.about-principles {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid #E9DED6;
}

.principle { display: flex; flex-direction: column; }

.principle__num {
  font-family: var(--f-display);
  font-size: clamp(52px, 6vw, 72px);
  font-weight: 800;
  color: rgba(231,134,82,0.12);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}

.principle__line {
  width: 32px;
  height: 2px;
  background: #E78652;
  margin-bottom: 16px;
  transition: width .28s var(--ease);
}

.principle:hover .principle__line { width: 56px; }

.principle__title {
  font-family: var(--f-display);
  font-weight: 750;
  font-size: 20px;
  color: #292522;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 10px;
}

.principle__desc { font-size: 15.5px; color: #6B625D; line-height: 1.6; }

/* =========================================================
   ILETISIM SAYFASI
   ========================================================= */

.contact-section {
  background: #FAF7F2;
  padding-block: clamp(60px, 8vw, 96px);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }

.contact-block__label {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #E78652;
  margin-bottom: 8px;
}

.contact-block__tel {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: #292522;
  text-decoration: none;
  display: block;
  margin-bottom: 14px;
  transition: color .2s var(--ease);
}

.contact-block__tel:hover { color: #E78652; }

.contact-cta-tel {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  background: #292522;
  color: #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}

.contact-cta-tel svg { width: 18px; height: 18px; color: #E78652; transition: color .2s var(--ease); }
.contact-cta-tel:hover { background: #E78652; transform: translateY(-1px); }
.contact-cta-tel:hover svg { color: #FFFFFF; }

.contact-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  background-color: #25D366 !important;
  color: #FFFFFF !important;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}

.contact-cta-wa svg { width: 18px; height: 18px; color: #FFFFFF !important; }
.contact-cta-wa:hover { background-color: #1FAF55 !important; transform: translateY(-1px); }

.contact-block__wa-num {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: #292522;
  display: block;
  margin-bottom: 14px;
}

.contact-block__address { font-size: 16px; color: #6B625D; line-height: 1.7; }

.contact-block__address strong {
  display: block;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: #292522;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 6px;
}

.contact-block__hours {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  color: #E78652;
  margin-top: 6px;
}

.contact-map-box {
  background: #F7F1EC;
  border-radius: 18px;
  border: 1px solid #E9DED6;
  box-shadow: 0 18px 50px rgba(74,50,39,0.08);
  overflow: hidden;
  height: clamp(400px, 45vw, 480px);
  position: relative;
}

.contact-map-box .map-iframe-container { position: absolute; inset: 0; }
.contact-map-box .map-info-panel { opacity: 1; transform: none; }

/* =========================================================
   MOBIL DUYARLILIK
   ========================================================= */

@media (max-width: 820px) {
  .svc-list { grid-template-columns: minmax(0, 1fr); }
  .svc-contact-row { flex-direction: column; align-items: flex-start; }
  .svc-contact-row__btn { width: 100%; justify-content: center; }
  .about-principles { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .contact-layout { grid-template-columns: minmax(0, 1fr); gap: 36px; }

  .contact-map-box {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .contact-map-box .map-iframe-container {
    position: relative;
    height: 280px;
  }

  .contact-map-box .map-info-panel {
    position: static;
    width: 100%;
    border: none;
    border-top: 1px solid #E9DED6;
    border-radius: 0;
    box-shadow: none;
    background: #FFFFFF;
    transform: none;
    opacity: 1;
  }

  .contact-map-box .map-btn { width: 100%; }

  .contact-cta-tel,
  .contact-cta-wa { width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
  .svc-item { padding: 18px 16px; gap: 16px; }
  .svc-item__ico { flex: 0 0 40px; width: 40px; height: 40px; }
}
