.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background-image: url("../../../img/home/bg.webp");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(9 17 31 / 14%) 0%, rgba(9, 17, 31, 0.3) 38%, rgba(9, 17, 31, 0.52) 100%  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1220px, 90%);
  margin: 0 auto;
  padding-top: clamp(170px, 24vh, 280px);
  padding-left: clamp(0px, 4vw, 40px);
}

.hero-tag {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 12px;
  color: var(--white-soft);
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-content h1,
.hero-title-rotating {
  margin: 0;
  font-family: "El Messiri", serif;
  font-size: clamp(44px, 5.6vw, 64px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: 0.01em;
  position: relative;
}

.hero-title-rotating {
  min-height: 3.1em;
  margin-bottom: 1rem;
}

.hero-title-text {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
}

.hero-title-text.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hero-title-text .hero-word {
  display: inline-block;
  opacity: 0;
  animation: heroWordIn 0.5s ease forwards;
}

@keyframes heroWordIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-btn {
  margin-top: 0;
  background: #fff;
  color: #111;
}

.social-strip {
  position: absolute;
  z-index: 2;
  right: clamp(16px, 5vw, 74px);
  top: 40%;
  transform: translateY(-30%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.social-strip a {
  width: 35px;
  height: 35px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.22);
}

.social-strip i,
.icon-dot i,
.social-arrow i {
  line-height: 1;
}

.social-line {
  width: 1px;
  height: 156px;
  background: var(--line);
  margin-top: 4px;
}

.social-arrow {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.86);
  margin-top: -2px;
}

.hero-bottom {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 46px;
  transform: translateX(-50%);
  width: min(1220px, 90%);
  display: flex;
  align-items: center;
  gap: 46px;
  justify-content: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(750px, 55vw);
}

.icon-dot {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 15px;
}

.info-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.83);
}

/* Glitch animasyonu */
.glitch-text {
  position: relative;
  display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-style: italic;
}

.glitch-text::before {
  color: rgba(0, 255, 255, 0.8);
  animation: glitch-1 2.5s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  transform: translate(-2px, 2px);
}

.glitch-text::after {
  color: rgba(255, 0, 128, 0.8);
  animation: glitch-2 2.5s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  transform: translate(2px, -2px);
}

@keyframes glitch-1 {
  0%, 90%, 100% { transform: translate(-2px, 2px); opacity: 0.8; }
  92% { transform: translate(2px, -1px); opacity: 1; }
  94% { transform: translate(-1px, 1px); opacity: 0.9; }
  96% { transform: translate(3px, -2px); opacity: 1; }
  98% { transform: translate(-2px, 2px); opacity: 0.8; }
}

@keyframes glitch-2 {
  0%, 90%, 100% { transform: translate(2px, -2px); opacity: 0.8; }
  92% { transform: translate(-3px, 1px); opacity: 1; }
  94% { transform: translate(1px, -1px); opacity: 0.9; }
  96% { transform: translate(-2px, 3px); opacity: 1; }
  98% { transform: translate(2px, -2px); opacity: 0.8; }
}

.glitch-text:hover::before,
.glitch-text:hover::after {
  animation-duration: 0.3s;
}

@media (max-width: 1100px) {
  .hero-bottom {
    gap: 20px;
  }

  .info-item p {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    padding-top: 115px;
  }

  .social-strip {
    display: none;
  }

  /* Bilgi satırı hero alanının en altına sabitlensin */
  .hero-bottom {
    position: static;
    transform: none;
    margin: auto auto 0;
    width: min(1220px, 90%);
    flex-direction: column;
    align-items: flex-start;
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .info-item {
    width: 100%;
  }
}

/* Telefonlar: hero başlığı çok satıra sarınca CTA / alt metinle çakışmasın */
@media (max-width: 600px) {
  .hero-content h1,
  .hero-title-rotating {
    font-size: clamp(25px, 6.4vw, 33px);
    line-height: 1.14;
  }

  .hero-title-rotating {
    min-height: 6em;
    margin-bottom: 0.5rem;
  }
}

.destinations-section {
  padding: 72px 0 24px;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: 36px;
  grid-auto-rows: 280px;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58) 8%, rgba(0, 0, 0, 0.1) 60%);
}

.card-tall {
  grid-row: span 2;
}

.card-wide {
  grid-column: 2 / span 2;
}

.card-content {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
}

.card-content h3 {
  margin: 0 0 4px;
  font-family: "El Messiri", serif;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.card-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.card-arrow {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
}

.bg-one {
  background-image: url("../../../img/home/bg.webp");
  background-position: 24% center;
}

.bg-two {
  background-image: url("../../../img/home/bkg.webp");
  background-position: center;
}

.bg-three {
  background-image: url("../../../img/home/bg.webp");
  background-position: 72% 34%;
}

.bg-four {
  background-image: url("../../../img/home/bkg.webp");
  background-position: 50% 70%;
}

.adventure-section {
  padding: 140px 0 90px;
  background-image: url("../../../img/home/arkaplan01.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: clamp(180px, 24vw, 420px);
}

.adventure-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 44px;
  align-items: stretch;
}

.adventure-text h2 {
  margin: 0 0 18px;
  font-family: "El Messiri", serif;
  font-size: clamp(36px, 3.2vw, 52px);
  color: #101010;
  line-height: 0.95;
}

.adventure-text > p {
    margin: 0 0 28px;
    color: #595959;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.55;
}

.about-cta-btn {
    margin-bottom: 28px;
    border: 1px solid #101010;
    color: #1b1919;
    font-weight: 500;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.feature-list li {
  display: flex;
  gap: 16px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #15110f;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 19px;
  flex: 0 0 auto;
}

.feature-list h4 {
  margin: 0 0 4px;
  font-family: "El Messiri", serif;
  font-size: 30px;
  color: #111;
  line-height: 1;
}

.feature-list p {
  margin: 0;
  color: #7b7b7b;
  font-size: 15px;
  line-height: 1.5;
}

.adventure-visual {
  padding-left: 70px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(440px, 62vh, 780px);
}

.adventure-main-image {
  flex: 1;
  width: 100%;
  min-height: 0;
  background-image: url("../../../img/home/hakkimizda-bg-y3.webp");
  background-size: contain;
  background-repeat: no-repeat;
}

.video-thumbs {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: calc(100% - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.video-thumb {
  height: 120px;
  border-radius: 14px;
  background-image: url("../../../img/home/bkg.webp");
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
}

.thumb-two {
  background-image: url("../../../img/home/bg.webp");
  background-position: 76% center;
}

.play-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  color: #0f0f0f;
  display: grid;
  place-items: center;
  z-index: 1;
  font-size: 17px;
}

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

  .card-tall {
    grid-row: span 1;
    min-height: 300px;
  }

  .card-wide {
    grid-column: auto;
  }

  .adventure-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .destination-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .card-content h3 {
    font-size: 24px;
  }

  .card-content p {
    font-size: 13px;
  }

  .adventure-text h2 {
    font-size: 32px;
  }

  .adventure-text > p,
  .feature-list p {
    font-size: 16px;
  }

  .feature-list h4 {
    font-size: 26px;
  }

  .adventure-visual {
    min-height: clamp(320px, 48vh, 560px);
    padding-left: 0;
  }

  .video-thumbs {
    width: calc(100% - 34px);
    grid-template-columns: 1fr;
  }
}

.popular-travel-section {
    margin-top: 30px;
    padding: 90px 0 90px;
    background: #e0e5cf;
}

.popular-title {
  margin: 0;
  text-align: center;
  font-family: "El Messiri", serif;
  font-size: clamp(34px, 3vw, 54px);
  color: #101010;
  line-height: 0.95;
}

.popular-subtitle {
    margin: 0px auto 0;
    max-width: 760px;
    text-align: center;
    font-family: "El Messiri", serif;
    font-size: clamp(34px, 3vw, 44px);
    line-height: 1.7;
    color: #101010;
}

.popular-stats {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.stat-card {
    border: 1px solid #6b6f634f;
    border-radius: 8px;
    background: #e0e5cf;
    min-height: 114px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #15110f;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex: 0 0 auto;
}

.stat-card h3 {
  margin: 0 0 6px;
  font-family: "El Messiri", serif;
  font-size: 30px;
  color: #111;
  line-height: 1;
}

.stat-card p {
    margin: 0;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.stat-icon i {
margin-top: 6px;
}

.popular-content {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.popular-image {
  min-height: 430px;
  background-image: url("../../../img/home/eglence-araci.webp");
  background-size: cover;
  background-position: center;
}

.popular-content p {
  margin: 0;
  text-align: center;
  color: #000000;
  line-height: 1.7;
  max-width: 540px;
  justify-self: center;
}

@media (max-width: 1100px) {
  .popular-stats {
    grid-template-columns: 1fr;
  }

  .popular-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-card h3 {
    font-size: 38px;
  }
}

.rail-slider-section {
  padding: 0;
  background: #fcfbfc;
  /* Yükseklik: sticky alan (100vh) + scroll geçişi için ekstra alan */
  min-height: 180vh;
}

.rail-slider-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 0 90px;
  box-sizing: border-box;
}

.rail-slider-sticky .content-wrap {
  width: min(1220px, 92%);
  margin: 0;
}

.rail-slider-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.rail-slider-left {
  align-self: end;
  padding-bottom: 20px;
}

.rail-copy h3 {
  margin: 0 0 12px;
  font-family: "El Messiri", serif;
  font-size: clamp(28px, 2.6vw, 46px);
  color: #111;
  line-height: 1;
}

.rail-copy p {
  max-width: 500px;
  color: #5f5f5f;
  font-size: 17px;
  line-height: 1.6;
}

.rail-indicators {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.rail-indicator {
  --progress: 0;
  position: relative;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  display: grid;
  place-items: center;
  background: conic-gradient(#8f8f8f calc(var(--progress) * 1%), #d9d9d9 0);
}

.rail-indicator::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: #f3f3f3;
  border: 1px solid #d8d8d8;
}

.rail-indicator span {
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: #7c7c7c;
}

.rail-indicator.is-active span {
  color: #111;
  font-weight: 600;
}

.rail-slider-right {
  display: grid;
  place-items: center;
}

.rail-image {
  width: min(700px, 100%);
  aspect-ratio: 1 / 1;
  background-image: url("../../../img/home/slider-1.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: opacity 0.3s ease;
}

@media (max-width: 980px) {
  .rail-slider-layout {
    grid-template-columns: 1fr;
  }

  .rail-slider-left {
    order: 2;
    align-self: auto;
  }

  .rail-slider-right {
    order: 1;
  }

  .rail-image {
    width: min(520px, 100%);
  }
}

.eco-feature-section {
  padding: 64px 0 70px;
  background: #e6eadf;
}

.eco-top {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: center;
}

.eco-intro h3 {
  margin: 0 0 12px;
  font-family: "El Messiri", serif;
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 600;
  color: #2f4e3e;
  line-height: 1;
}

.eco-intro p {
  max-width: 520px;
  color: #3f5f49;
  font-size: 15px;
  line-height: 1.5;
}

.eco-figure {
  margin: 0;
}

.eco-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.eco-benefits {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 2vw, 20px);
}

.eco-benefit-card {
  padding: clamp(26px, 3vw, 36px) clamp(18px, 2.4vw, 28px) clamp(14px, 2vw, 22px);
  text-align: center;
}

.eco-benefit-card img {
  width: clamp(64px, 6vw, 80px);
  height: clamp(64px, 6vw, 80px);
  object-fit: contain;
  margin-bottom: clamp(10px, 1.6vw, 14px);
  filter: saturate(0.7) contrast(0.95);
}

.eco-benefit-card h4 {
  margin: 0 0 8px;
  font-family: "El Messiri", serif;
  font-size: clamp(17px, 1.65vw, 21px);
  font-weight: 600;
  color: #2f4e3e;
  line-height: 1.15;
}

.eco-benefit-card p {
  margin: 0;
  color: #3f5f49;
  font-size: clamp(13px, 1.15vw, 15px);
  line-height: 1.45;
  max-width: 22em;
  margin-inline: auto;
}

@media (max-width: 1100px) {
  .eco-top {
    grid-template-columns: 1fr;
  }

  .eco-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 3vw, 24px);
  }
}

@media (max-width: 700px) {
  .eco-feature-section {
    padding: 52px 0 56px;
  }

  .eco-benefits {
    grid-template-columns: 1fr;
    margin-top: 24px;
    gap: clamp(18px, 4vw, 28px);
  }
}

.blog-showcase-section {
  padding: 120px 0 58px;
}

.blog-showcase-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
}

.blog-showcase-left h2 {
  margin: 0;
  font-family: "El Messiri", serif;
  font-size: clamp(30px, 2.9vw, 46px);
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.02;
}

.blog-showcase-left > p {
  margin: 12px 0 20px;
  max-width: 640px;
  color: #6a6a6a;
  font-size: 14px;
}

.blog-feature-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 360px;
}

.blog-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.82) contrast(0.95);
}

.blog-feature-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.48) 14%, rgba(0, 0, 0, 0.02));
}

.blog-feature-card-link {
  display: block;
  position: absolute;
  inset: 0;
  text-decoration: none;
  color: inherit;
}

.blog-feature-overlay h3 {
  margin: 0 0 8px;
  max-width: 420px;
  color: #fff;
  font-family: "El Messiri", serif;
  font-size: clamp(22px, 1.8vw, 31px);
  line-height: 1.12;
  font-weight: 600;
}

.blog-feature-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.blog-feature-overlay a,
.blog-side-item a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.blog-showcase-right {
  display: grid;
  gap: 60px;
}

.blog-side-item {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
  align-items: center;
}

.blog-side-item img {
  width: 100%;
  min-height: 132px;
  border-radius: 12px;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.95);
}

.blog-side-item h4 {
  margin: 0 0 8px;
  font-family: "El Messiri", serif;
  font-size: 20px;
  font-weight: 600;
  color: #1f1f1f;
  line-height: 1.15;
}

.blog-side-item h4 a {
  color: inherit;
  text-decoration: none;
}

.blog-side-item h4 a:hover {
  text-decoration: underline;
}

.blog-side-item p {
  margin: 0 0 8px;
  color: #767676;
  font-size: 13px;
  line-height: 1.4;
}

.blog-side-item a {
  color: #1f1f1f;
}

.blog-side-item div > a {
  font-size: 14px;
}

@media (max-width: 1100px) {
  .blog-showcase-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .blog-side-item {
    grid-template-columns: 1fr;
  }

  .blog-feature-card {
    min-height: 320px;
  }
}

/* ============================================
   Galeri Modülü
   ============================================ */

.gallery-section {
  padding: 64px 0 56px;
}

.gallery-title {
  margin: 0 0 32px;
  text-align: center;
  font-family: var(--heading-font);
  font-size: clamp(26px, 2.1vw, 34px);
  font-weight: 600;
  color: #202020;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
}

.gallery-link {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-actions {
  text-align: center;
  margin-top: 36px;
}

.gallery-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #1a1a1a;
  transition: background 0.25s ease;
}

.gallery-more-btn:hover {
  background: #333;
}

.gallery-loading,
.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: #888;
  font-size: 15px;
}

.gallery-empty a {
  color: #1a1a1a;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-section {
    padding: 48px 0 44px;
  }
}

.refs-section {
  padding: 62px 0 72px;
}

.refs-title {
  margin: 0 0 18px;
  text-align: center;
  font-family: "El Messiri", serif;
  font-size: clamp(26px, 2.1vw, 34px);
  font-weight: 600;
  color: #202020;
}

.refs-carousel {
  --visible-count: 4;
  overflow: hidden;
  width: 100%;
}

.refs-carousel-shell {
  position: relative;
}

.refs-track {
  display: flex;
  gap: 16px;
  will-change: transform;
  transition: transform 0.5s ease;
}

.refs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #dbdbdb;
  background: #ffffff;
  color: #252525;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: all 0.2s ease;
}

.refs-arrow:hover {
  background: #f1f1f1;
}

.refs-arrow-left {
  left: -22px;
}

.refs-arrow-right {
  right: -22px;
}

.ref-card {
  flex: 0 0 calc((100% - (var(--visible-count) - 1) * 16px) / var(--visible-count));
  min-height: 98px;
  border: 1px solid #ededed;
  border-radius: 8px;
  background: #ffffff;
  display: grid;
  place-items: center;
  padding: 12px;
}

.ref-card img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(0.8) contrast(0.95);
}

@media (max-width: 980px) {
  .refs-carousel {
    --visible-count: 2;
  }

  .refs-arrow-left {
    left: -12px;
  }

  .refs-arrow-right {
    right: -12px;
  }
}

@media (max-width: 560px) {
  .refs-carousel {
    --visible-count: 1;
  }

  .refs-arrow {
    width: 36px;
    height: 36px;
  }

  .refs-arrow-left {
    left: -6px;
  }

  .refs-arrow-right {
    right: -6px;
  }
}

/* ============================================
   SEO Metin Alanı
   ============================================ */

.seo-text-section {
  padding: 48px 0 56px;
}

.seo-text-scroll {
  max-height: 220px;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
}

.seo-text-scroll::-webkit-scrollbar {
  width: 6px;
}

.seo-text-scroll::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 3px;
}

.seo-text-scroll::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border-radius: 3px;
}

.seo-text-scroll::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}

.seo-text-title {
  margin: 0 0 0.75rem;
  font-family: var(--heading-font);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 600;
  color: #202020;
}

.seo-text-subtitle {
  margin: 1.25rem 0 0.5rem;
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 600;
  color: #2a2a2a;
}

.seo-text-scroll p {
  margin: 0 0 1rem;
  font-size: 15px;
  line-height: 1.65;
  color: #444;
}

.seo-text-scroll p:last-child {
  margin-bottom: 0;
}