/* Ares — anasayfa (eksim.json / webAltyapi yapısına uyumlu) */

:root {
  --color-bg: #ffffff;
  --color-text: #1e293b;
  --color-muted: #64748b;
  /* Sıcak altın/kahve vurgu (tıklanabilir / hover) — eski lacivertten uzak */
  --color-accent: #8a7355;
  --color-orange: #ff7a3d;
  /* webAltyapi App.css — .container ile aynı grid */
  --container-max: 1140px;
  --container-pad: 16px;
  --font: var(--theme-font-family, "Inter", system-ui, sans-serif);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --theme-accent-color: #8a7355;
  --theme-secondary-color: #3f372f;
  /* Gönder butonu ile aynı birincil buton paleti */
  --btn-surface: rgba(241, 233, 220, 0.92);
  --btn-surface-hover: rgba(248, 242, 232, 0.98);
  --btn-ink: #3f372f;
  --btn-ink-hover: #322920;
  --btn-border-light: rgba(63, 55, 47, 0.16);
  --btn-border-light-hover: rgba(63, 55, 47, 0.28);
  --btn-border-on-dark: rgba(255, 255, 255, 0.22);
  --btn-border-on-dark-hover: rgba(255, 255, 255, 0.32);
  --btn-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --btn-shadow-hover: 0 3px 14px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(138, 115, 85, 0.18);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:any-link,
a:visited {
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  box-sizing: border-box;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    max-width: 90%;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

/* Üst bar — tam tanım css/header-design5.css (webAltyapi HeaderLayout5 / header-design-5) */

/* Main spacing */
.page-main {
  margin-top: var(--header-h);
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 8vw, 6rem);
}

.page-main--flush {
  margin-top: 0;
}

.page-main.anasayfa {
  gap: 8rem;
}

.page-main.anasayfa.transparant-header {
  margin-top: 0;
}

@media (max-width: 768px) {
  .page-main.anasayfa {
    gap: 4rem;
  }
}

.section {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-accent);
}

.section-head__desc {
  margin: 0;
  color: var(--color-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero */
#hero-root {
  width: 100%;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.hero-layout--split {
  flex-direction: row;
  gap: 1rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .hero-layout--split {
    flex-direction: column;
  }
}

.hero-layout__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-layout__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 280px;
  flex-shrink: 0;
}

.hero-kat-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-kat-card__img img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.hero-kat-card h3 {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.hero-slides {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  min-height: calc(100vh - var(--header-h));
  max-height: min(92vh, 900px);
}

@media (max-width: 768px) {
  .hero-slides {
    min-height: min(70vh, 560px);
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide-img-desktop {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-img-mobile {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .slide-img-desktop {
    display: none;
  }
  .slide-img-mobile {
    display: block;
  }
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.hero-slide__content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}

.bannerText {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 720px;
}

.bannerText__title-wrap h1,
.bannerText__title-wrap h2 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(1.35rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.bannerText__logo {
  max-height: 56px;
  width: auto;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.bannerText__sub {
  margin: 0;
  color: #e2e8f0;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 300;
  white-space: pre-line;
}

.bannerText__button {
  display: inline-block;
  align-self: flex-start;
  padding: 12px 20px;
  background: var(--btn-surface);
  color: var(--btn-ink) !important;
  font-weight: 600;
  border-radius: 12px;
  font-size: 0.9rem;
  border: 1px solid var(--btn-border-light);
  box-shadow: var(--btn-shadow);
  transition: transform 0.15s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease,
    color 0.22s ease;
}

.bannerText__button:hover {
  transform: translateY(-2px);
  background: var(--btn-surface-hover);
  border-color: var(--btn-border-light-hover);
  box-shadow: var(--btn-shadow-hover);
  color: var(--btn-ink-hover) !important;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.hero-nav--prev {
  left: 12px;
}

.hero-nav--next {
  right: 12px;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}

.hero-dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

/* Logo marquee */
.logo-marquee {
  overflow: hidden;
  width: 100%;
  background: #fff;
  padding: 1rem 0;
}

.logo-marquee__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 110s linear infinite;
}

.marquee-slide {
  flex: 0 0 auto;
  width: 120px;
  height: 100px;
}

.marquee-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Category section */
.category-section__wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-section__track {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  flex: 1;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.category-section__inner {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem 0 1rem;
}

.category-card {
  flex: 0 0 min(280px, 85vw);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card h3 {
  margin: 0.85rem 1rem 0.25rem;
  font-size: 1.05rem;
}

.category-card p {
  margin: 0 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.category-section__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 600px) {
  .category-section__arrow {
    display: none;
  }
}

/* Ana ürün / Hero product */
.hero-product {
  padding: 0 16px;
}

.hero-product__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-product__grid {
    grid-template-columns: 1fr;
  }
}

.hero-product__visual {
  order: 1;
}

.hero-product__text {
  order: 2;
}

@media (max-width: 1024px) {
  .hero-product__visual {
    order: 1;
  }
  .hero-product__text {
    order: 2;
  }
}

.course-card {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  box-shadow: var(--shadow);
  background: #fff;
}

.course-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.floating {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  font-size: 0.85rem;
}

.floating--progress {
  top: 120px;
  left: -8px;
}

.floating--progress .floating__bar {
  height: 6px;
  background: #eee;
  border-radius: 10px;
  margin-top: 6px;
  overflow: hidden;
}

.floating--progress .floating__bar span {
  display: block;
  height: 100%;
  width: 70%;
  background: var(--color-orange);
  border-radius: 10px;
}

.floating--badge {
  top: 24px;
  right: -12px;
  display: flex;
  flex-direction: column;
  font-weight: 600;
}

.floating__sub {
  font-size: 0.75rem;
  color: var(--color-muted);
  font-weight: 400;
  margin-top: 4px;
}

.course-card__info {
  padding: 1rem;
}

.course-card__info h3 {
  margin: 0;
  font-size: 1rem;
}

.hero-product__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e6f6f2;
  color: #0d8b6f;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.hero-product__dot {
  width: 8px;
  height: 8px;
  background: #1ec997;
  border-radius: 50%;
}

.hero-product__title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  background: linear-gradient(120deg, #2a2622 0%, #6b5d4c 45%, #8a7355 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-product__desc {
  color: #6c6c6c;
  font-size: 0.95rem;
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn--primary {
  background: var(--btn-surface);
  color: var(--btn-ink) !important;
  border: 1px solid var(--btn-border-light);
  box-shadow: var(--btn-shadow);
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease,
    color 0.22s ease, transform 0.15s ease;
}

.btn--primary:hover {
  background: var(--btn-surface-hover);
  border-color: var(--btn-border-light-hover);
  box-shadow: var(--btn-shadow-hover);
  color: var(--btn-ink-hover) !important;
}

.btn--dark {
  background: #0f172a;
  color: #fff !important;
}

/* Why our story */
.why-story__viewport {
  padding: 2rem 0 3rem;
}

.why-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .why-story__grid {
    grid-template-columns: 1fr;
  }
}

.why-story__intro h2 {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
  color: #2d2a26;
}

.why-story__intro p {
  color: #6b6560;
  margin: 0 0 1rem;
}

.why-story__pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(26, 26, 46, 0.08);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--color-accent);
  margin-bottom: 0.5rem;
  max-width: 100%;
}

.why-story__film {
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 12px;
}

.why-story__strip-wrap {
  overflow: hidden;
  width: 100%;
}

.why-story__strip {
  display: flex;
  transition: transform 0.12s ease-out;
  will-change: transform;
}

.why-frame {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 6px;
  box-sizing: border-box;
}

.why-frame__media {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.why-frame__media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.why-frame__body {
  padding: 0 4px 8px;
}

.why-frame__count {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-accent);
}

.why-frame__nic {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 0.35rem;
}

.why-frame h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.why-frame p {
  margin: 0;
  font-size: 0.88rem;
  color: #475569;
}

.why-story__progress {
  margin-top: 12px;
  height: 4px;
  background: #cbd5e1;
  border-radius: 4px;
  overflow: hidden;
}

.why-story__progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-accent), #c4a574);
  border-radius: 4px;
}

/* Roadmap */
.roadmap__section {
  padding: 2rem 16px 4rem;
}

.roadmap__timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 28px;
}

.roadmap__line {
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(26, 26, 46, 0.12);
  border-radius: 3px;
}

.roadmap__line-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--color-accent), #5c4d3f);
  border-radius: 3px;
  transition: height 0.12s ease-out;
}

.roadmap__steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.roadmap__step {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 1.25rem;
  opacity: 0.55;
  transform: translateY(8px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.roadmap__step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.roadmap__marker {
  position: absolute;
  left: -22px;
  top: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.roadmap__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(26, 26, 46, 0.2);
}

.roadmap__num {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-muted);
}

.roadmap__year {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.roadmap__content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.roadmap__content p {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
}

.roadmap__cta {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--color-accent);
  color: #fff !important;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Expert team / two category */
.expert-team {
  padding: 0 16px;
}

.expert-team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .expert-team__grid {
    grid-template-columns: 1fr;
  }
}

.expert-card {
  background: #fff;
  padding: 28px 20px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.25s ease;
  display: block;
}

.expert-card:hover {
  box-shadow: var(--shadow);
}

.expert-card__avatar {
  text-align: center;
  margin-bottom: 1rem;
}

.expert-card__avatar img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.expert-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.expert-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  text-align: center;
  color: #475569;
  min-height: 2.5rem;
}

.expert-card__btn {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
}

/* FAQ */
.faq {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 3rem;
}

.faq__split {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

@media (max-width: 900px) {
  .faq__split {
    display: none;
  }
}

.faq__questions {
  background: #fff;
  padding: 0.5rem 0;
  border-right: 1px solid #e2e8f0;
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: #64748b;
  border-left: 3px solid transparent;
}

.faq__q:hover {
  background: #f8fafc;
  color: #1e293b;
}

.faq__q.is-active {
  background: #f1f5f9;
  color: #1e293b;
}

.faq__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #94a3b8;
}

.faq__q.is-active .faq__num {
  color: #64748b;
}

.faq__qtext {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
}

.faq__panel {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 2rem 2rem 2.5rem;
}

.faq__panel-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
}

.faq__panel h3 {
  margin: 0.5rem 0 1rem;
  font-size: 1.2rem;
}

.faq__panel-body p {
  margin: 0;
  color: #475569;
  line-height: 1.65;
}

.faq__mobile {
  display: none;
}

@media (max-width: 900px) {
  .faq__mobile {
    display: block;
    margin-top: 1.5rem;
  }

  .faq-m-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: #fff;
  }

  .faq-m-card__trigger {
    width: 100%;
    text-align: left;
    padding: 1rem;
    border: none;
    background: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
  }

  .faq-m-card__body {
    padding: 0 1rem 1rem;
    border-top: 1px solid #f1f5f9;
  }

  .faq-m-card__body p {
    margin: 0;
    color: #475569;
    font-size: 0.92rem;
  }
}

/* İletişim şeridi (site ayarları) */
.contact-chips-section {
  padding: 0 16px 2rem;
}

.contact-chips__title {
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
  text-align: center;
  color: var(--color-accent);
}

.contact-chips__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background: #f1f5f9;
  color: var(--color-text) !important;
  border: 1px solid #e2e8f0;
  transition: background 0.2s ease;
}

.contact-chip:hover {
  background: #e2e8f0;
}

.contact-chip--wa {
  background: #25d366;
  color: #fff !important;
  border-color: #1ea952;
}

.contact-chips__addr {
  margin: 0.35rem auto;
  max-width: 720px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.contact-chips__maps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.btn--outline {
  background: transparent;
  color: var(--color-accent) !important;
  border: 1px solid #cbd5e1;
}

.btn--outline:hover {
  background: #f8fafc;
}

/* Pre-footer CTA (footerTop metadata) */
.pre-footer {
  background: linear-gradient(135deg, #2a2622 0%, #3f372f 48%, #5c4d3f 100%);
  color: #e2e8f0;
  padding: 3rem 16px;
}

.pre-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pre-footer__grid {
    grid-template-columns: 1fr;
  }
}

.pre-footer__col h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  color: #fff;
}

.pre-footer__col p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.92;
}

.pre-footer__col--right {
  text-align: right;
}

@media (max-width: 768px) {
  .pre-footer__col--right {
    text-align: left;
  }
}

.btn--ghost {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Ana footer (webAltyapi Footer.jsx yapısı) */
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  padding: 4rem 16px 2rem;
  color: #0f172a;
}

.footer__items {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  width: 100%;
  max-width: 1200px;
}

@media (max-width: 900px) {
  .footer__items {
    grid-template-columns: 1fr 1fr;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer__items {
    grid-template-columns: 1fr;
  }
}

.footer__col h3 {
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #b0b0b0;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer__logo {
  height: 45px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.footer__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #334155;
}

.footer__quick {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__quick-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__arrow {
  color: var(--theme-accent-color, #8a7355);
  font-weight: 600;
}

.footer__quick-item a {
  color: inherit;
}

.footer__quick-item a:hover {
  text-decoration: underline;
}

.footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__contact-list a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: inherit;
}

.footer__contact-list a:hover {
  color: var(--color-accent);
}

.footer__ci {
  opacity: 0.85;
  font-size: 1rem;
}

.footer__hr {
  width: 100%;
  max-width: 1200px;
  margin: 0;
  border: none;
  border-top: 1px solid #dee0ea;
}

.footer__bottom {
  width: 100%;
  max-width: 1200px;
}

.footer__bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
}

.footer__builder {
  color: inherit;
  text-decoration: underline;
}

.footer__builder:hover {
  color: var(--color-accent);
}
