/* Değer Değerleme - Banner slider caption overrides (vanilla CSS) */

/* Keep section height stable even after removing .banner-content */
.banner-area.banner-3 {
  /* Match previous hero feel across viewports */
  min-height: clamp(520px, 78vh, 780px);
}

.banner-area.banner-3 .banner-inner {
  /* Ensure the hero doesn't shrink when content is reduced */
  min-height: clamp(520px, 78vh, 780px);
  height: 100%;
}

/* Ensure slider background covers the hero area */
.banner-area.banner-3 .banner-inner-bg,
.banner-area.banner-3 .baner-active-2,
.banner-area.banner-3 .baner-active-2 .swiper-wrapper,
.banner-area.banner-3 .baner-active-2 .swiper-slide,
.banner-area.banner-3 .swiper-slide-item {
  height: 100%;
}

.banner-area.banner-3 .swiper-slide-item {
  position: relative;
}

/* Subtle zoom for professional transitions */
.banner-area.banner-3 .swiper-slide-item img {
  transform: scale(1.02);
  transition: transform 1400ms ease;
  will-change: transform;
}

.banner-area.banner-3 .swiper-slide-active .swiper-slide-item img {
  transform: scale(1.07);
}

/* Force the absolute slider background to fill the hero */
.banner-area.banner-3 .banner-inner-bg {
  inset: 0 !important;
  height: 100% !important;
}

/* Bottom gradient overlay for readability (better UX than text-shadow) */
.banner-area.banner-3 .swiper-slide-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  /* Stronger near bottom-left where caption sits */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.45) 25%,
    rgba(0, 0, 0, 0.00) 60%
  );
}

/* Per-slide caption positioned bottom-left (mobile/tablet default) */
.banner-area.banner-3 .deger-slide-caption {
  position: absolute;
  left: clamp(16px, 3vw, 48px);
  bottom: clamp(16px, 3vw, 48px);
  z-index: 2;

  text-align: left;
  max-width: min(560px, 86vw);
}

/* Animate caption on slide change (more reliable than has_fade_anim in Swiper) */
.banner-area.banner-3 .deger-slide-caption > * {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 520ms ease;
  will-change: opacity, transform;
}

.banner-area.banner-3 .swiper-slide-active .deger-slide-caption > * {
  opacity: 1;
  transform: translateY(0);
}

.banner-area.banner-3 .swiper-slide-active .deger-slide-caption .title-wrapper {
  transition-delay: 80ms;
}

/* Remove center alignment coming from .banner-content styles */
.banner-area.banner-3 .deger-slide-caption .title-wrapper,
.banner-area.banner-3 .deger-slide-caption .title {
  margin-inline-start: 0;
  margin-inline-end: auto;
  text-align: left;
}

/* Readability on images */
.banner-area.banner-3 .deger-slide-caption .title {
  color: #fff;
}

/* Mobile spacing tweaks */
@media (max-width: 767px) {
  .banner-area.banner-3 {
    min-height: clamp(440px, 72vh, 680px);
  }

  .banner-area.banner-3 .banner-inner {
    min-height: clamp(440px, 72vh, 680px);
    padding-top: 110px; /* reduce large top padding for small screens */
  }

  .banner-area.banner-3 .deger-slide-caption {
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    width: min(92vw, 520px);
    max-width: 92vw;
    padding-inline: 20px;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .banner-area.banner-3 .deger-slide-caption .title-wrapper,
  .banner-area.banner-3 .deger-slide-caption .title {
    margin-inline: auto;
    text-align: center;
    max-width: none;
  }

  /* Mobile typography: slightly smaller for better fit */
  .banner-area.banner-3 .deger-slide-caption .title {
    font-size: clamp(24px, 6.2vw, 32px);
    line-height: 1.15;
  }

  /* Mobile nav: centered, slightly above bottom */
  .banner-area.banner-3 .navigation-wrapper {
    display: flex !important; /* master-corporate hides it on mobile */
    left: 50%;
    right: auto;
    bottom: 38px;
    transform: translateX(-50%);
    justify-content: center;
    gap: 12px;
  }
}

/* Slider navigation buttons (mobile/tablet default) */
.banner-area.banner-3 .navigation-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.banner-area.banner-3 .navigation-wrapper .swiper-button-prev,
.banner-area.banner-3 .navigation-wrapper .swiper-button-next {
  position: static;
  width: 54px;
  height: 54px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.banner-area.banner-3 .navigation-wrapper .swiper-button-prev:hover,
.banner-area.banner-3 .navigation-wrapper .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.32);
}

.banner-area.banner-3 .navigation-wrapper .swiper-button-prev img,
.banner-area.banner-3 .navigation-wrapper .swiper-button-next img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Desktop hero layout */
@media (min-width: 992px) {
  .banner-area.banner-3 {
    overflow: hidden;
  }

  .banner-area.banner-3 .swiper-slide-item::after {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.12) 14%,
      rgba(0, 0, 0, 0.07) 30%,
      rgba(0, 0, 0, 0.09) 48%,
      rgba(0, 0, 0, 0.09) 58%,
      rgba(0, 0, 0, 0.16) 82%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .banner-area.banner-3 .deger-slide-caption {
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -62%);
    text-align: center;
    max-width: min(920px, 76vw);
    padding-inline: clamp(72px, 8vw, 110px);
  }

  .banner-area.banner-3 .deger-slide-caption .title-wrapper,
  .banner-area.banner-3 .deger-slide-caption .title {
    margin-inline: auto;
    text-align: center;
    max-width: none;
  }

  .banner-area.banner-3 .deger-slide-caption .title {
    font-size: clamp(42px, 4.1vw, 60px);
    line-height: 1.08;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
  }

  .banner-area.banner-3 .navigation-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    display: block;
    pointer-events: none;
    z-index: 4;
  }

  .banner-area.banner-3 .navigation-wrapper .swiper-button-prev,
  .banner-area.banner-3 .navigation-wrapper .swiper-button-next {
    position: absolute;
    top: 50% !important;
    margin-top: 0;
    transform: translateY(-50%);
    pointer-events: auto;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
  }

  .banner-area.banner-3 .navigation-wrapper .swiper-button-prev {
    left: clamp(18px, 2.2vw, 32px) !important;
    right: auto !important;
  }

  .banner-area.banner-3 .navigation-wrapper .swiper-button-next {
    right: clamp(18px, 2.2vw, 32px) !important;
    left: auto !important;
  }

  .banner-area.banner-3 .navigation-wrapper .swiper-button-prev:hover,
  .banner-area.banner-3 .navigation-wrapper .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.42);
    transform: translateY(-50%) scale(1.04);
  }

  .banner-area.banner-3 .navigation-wrapper .swiper-button-prev img,
  .banner-area.banner-3 .navigation-wrapper .swiper-button-next img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
  }

  .banner-area.banner-3 .dd-core-services {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    border-block: none;
    background: linear-gradient(
      180deg,
      rgba(6, 8, 14, 0) 0%,
      rgba(6, 8, 14, 0.08) 42%,
      rgba(6, 8, 14, 0.16) 100%
    );
    backdrop-filter: blur(26px) saturate(1.22);
    -webkit-backdrop-filter: blur(26px) saturate(1.22);
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.1);
  }

  .banner-area.banner-3 .dd-core-services__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    background: transparent;
    gap: 0;
    max-width: 1520px;
    margin-inline: auto;
  }

  .banner-area.banner-3 .dd-core-services__item {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(16px, 1.4vw, 20px);
    padding: clamp(28px, 2.8vw, 36px) clamp(18px, 1.6vw, 26px);
    min-height: 108px;
    background: transparent;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition:
      background-color 340ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 340ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .banner-area.banner-3 .dd-core-services__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 2px;
    border-radius: 0 0 2px 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--primary, #ca123b) 50%,
      transparent 100%
    );
    opacity: 0;
    transform: scaleX(0.35);
    transition:
      opacity 340ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .banner-area.banner-3 .dd-core-services__item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(
      ellipse 80% 120% at 20% 50%,
      rgba(255, 255, 255, 0.11) 0%,
      transparent 68%
    );
    opacity: 0;
    transition: opacity 340ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .banner-area.banner-3 .dd-core-services__item:last-child {
    border-right: none;
  }

  .banner-area.banner-3 .dd-core-services__item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  }

  .banner-area.banner-3 .dd-core-services__item:hover::before {
    opacity: 1;
    transform: scaleX(1);
  }

  .banner-area.banner-3 .dd-core-services__item:hover::after {
    opacity: 1;
  }

  .banner-area.banner-3 .dd-core-services__icon {
    flex-shrink: 0;
    width: 62px;
    height: 62px;
    padding: 0;
    border-radius: 0;
    color: #fff;
    background: transparent;
    border: none;
    box-sizing: border-box;
    box-shadow: none;
    transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .banner-area.banner-3 .dd-core-services__item:hover .dd-core-services__icon {
    transform: scale(1.08) translateY(-2px);
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .banner-area.banner-3 .dd-core-services__divider {
    display: none;
  }

  .banner-area.banner-3 .dd-core-services__title {
    margin: 0;
    display: block;
    max-width: none;
    text-align: left;
    font-size: clamp(14px, 0.95vw, 16px);
    font-weight: 500;
    line-height: 1.42;
    letter-spacing: 0.015em;
    color: rgba(255, 255, 255, 0.96);
  }

  .banner-area.banner-3 .dd-core-services__title span {
    display: block;
    transition: color 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .banner-area.banner-3 .dd-core-services__title span:first-child {
    color: #fff;
    font-weight: 650;
    font-size: 1.02em;
  }

  .banner-area.banner-3 .dd-core-services__title span:last-child {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 0.94em;
    margin-top: 3px;
  }

  .banner-area.banner-3 .dd-core-services__item:hover .dd-core-services__title span:first-child {
    color: #fff;
  }

  .banner-area.banner-3 .dd-core-services__item:hover .dd-core-services__title span:last-child {
    color: rgba(255, 255, 255, 0.94);
  }
}

/* ===========================
   Main Hakkımızda section (scoped with .main-hakkimizda)
   =========================== */

.main-hakkimizda .strategy-area {
  padding-top: 111px;
  padding-bottom: 123px;
}

@media only screen and (max-width: 1919px) {
  .main-hakkimizda .strategy-area {
    padding-top: 81px;
    padding-bottom: 93px;
  }
}

@media only screen and (max-width: 991px) {
  .main-hakkimizda .strategy-area {
    padding-top: 61px;
    padding-bottom: 73px;
  }
}

@media only screen and (max-width: 767px) {
  .main-hakkimizda .strategy-area {
    padding-top: 41px;
    padding-bottom: 53px;
  }
}

@media only screen and (max-width: 767px) {
  .main-hakkimizda .strategy-area-inner {
    max-width: 550px;
    margin: 0 auto;
  }
}

.main-hakkimizda .strategy-area .section-heading {
  margin-bottom: 59px;
  display: flex;
  gap: 483px;
  align-items: flex-start;
}

@media only screen and (max-width: 1199px) {
  .main-hakkimizda .strategy-area .section-heading {
    gap: 183px;
  }
}

@media only screen and (max-width: 991px) {
  .main-hakkimizda .strategy-area .section-heading {
    margin-bottom: 39px;
  }
}

@media only screen and (max-width: 767px) {
  .main-hakkimizda .strategy-area .section-heading {
    margin-bottom: 29px;
    flex-direction: column;
    gap: 30px;
  }
}

.main-hakkimizda .strategy-area .strategy-number {
  font-size: 18px;
  line-height: 1.33;
  color: var(--primary);
  font-family: var(--font_recoleta);
  text-decoration: underline;
  text-underline-offset: 5px;
  white-space: nowrap;
}

.main-hakkimizda .strategy-area .section-title {
  max-width: 690px;
}

.main-hakkimizda .strategy-content-wrapper {
  display: flex;
  gap: 80px;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .main-hakkimizda .strategy-content-wrapper {
    gap: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .main-hakkimizda .strategy-content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

.main-hakkimizda .strategy-content-wrapper .content {
  max-width: 555px;
}

@media only screen and (max-width: 1199px) {
  .main-hakkimizda .strategy-content-wrapper .content {
    max-width: 515px;
  }
}

@media only screen and (max-width: 991px) {
  .main-hakkimizda .strategy-content-wrapper .content {
    max-width: 305px;
  }
}

@media only screen and (max-width: 767px) {
  .main-hakkimizda .strategy-content-wrapper .content {
    max-width: 515px;
  }
}

.main-hakkimizda .strategy-content-wrapper .content .text {
  font-size: 28px;
  line-height: 1.26;
}

@media only screen and (max-width: 1199px) {
  .main-hakkimizda .strategy-content-wrapper .content .text {
    font-size: 22px;
  }
}

@media only screen and (max-width: 991px) {
  .main-hakkimizda .strategy-content-wrapper .content .text {
    font-size: 18px;
  }
}

.main-hakkimizda .strategy-content-wrapper .content .text span {
  font-weight: 600;
  color: var(--primary);
}

.main-hakkimizda .strategy-content-wrapper .content .text-wrapper {
  margin-bottom: 0px;
}

@media only screen and (max-width: 1199px) {
  .main-hakkimizda .strategy-content-wrapper .content .text-wrapper {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .main-hakkimizda .strategy-content-wrapper .content .text-wrapper {
    margin-bottom: 30px;
  }
}

.main-hakkimizda .strategy-content-wrapper .content .list-wrapper {
  max-width: 248px;
}

.main-hakkimizda .strategy-content-wrapper .content .list-wrapper .heading {
  font-size: 18px;
  line-height: 1.66;
  font-weight: 600;
  margin-bottom: 9px;
}

.main-hakkimizda .strategy-content-wrapper .content .list-wrapper ul li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.62;
  color: var(--secondary);
}

.main-hakkimizda .strategy-content-wrapper .content .list-wrapper ul li:not(:last-child) {
  margin-bottom: 5px;
}

.main-hakkimizda .strategy-content-wrapper .thumb {
  max-width: 660px;
}

@media only screen and (max-width: 767px) {
  .main-hakkimizda .strategy-content-wrapper .thumb {
    max-width: 550px;
  }
}

/* ===========================
   Main Hakkımızda section end
   =========================== */

/* ===========================
   Service section (scoped with .main-services)
   =========================== */

.main-services .dd-services__subtitle-wrap {
  padding-bottom: 28px;
}

.main-services .dd-services__subtitle {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #001F3F;
  font-size: 12px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.main-services .dd-services__title {
  font-size: 50px;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .main-services .dd-services__title {
    font-size: 35px;
  }
}

.main-services .dd-services__area {
  background-color: #D7DDCB;
  border-radius: 40px;
  margin: 0 20px;
  padding: 20px;
}

@media only screen and (max-width: 767px) {
  .main-services .dd-services__area {
    margin: 0;
    border-radius: 0;
    padding: 0;
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .main-services .dd-services__area .btn-wrapper {
    margin-left: 12px;
  }
}

@media only screen and (max-width: 1199px) {
  .main-services .dd-services__title {
    font-size: 40px;
  }
}

.main-services .dd-services__inner {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
  .main-services .dd-services__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .main-services .dd-services__inner {
    grid-template-columns: 1fr;
  }
}

.main-services .dd-services__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 110px;
  padding-bottom: 110px;
}

@media only screen and (max-width: 1199px) {
  .main-services .dd-services__content {
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .main-services .dd-services__content {
    gap: 0;
  }
}

.main-services .dd-services__thumb {
  margin-right: -150px;
}

@media only screen and (max-width: 1919px) {
  .main-services .dd-services__thumb {
    margin-right: 0;
    text-align: end;
  }
}

@media only screen and (max-width: 1199px) {
  .main-services .dd-services__thumb {
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .main-services .dd-services__thumb {
    text-align: start;
  }
}

.main-services .dd-services__thumb img {
  border-radius: 40px;
}

@media only screen and (max-width: 1919px) {
  .main-services .dd-services__thumb img {
    width: 70%;
    text-align: end;
  }
}

@media only screen and (max-width: 767px) {
  .main-services .dd-services__thumb img {
    border-radius: 0;
  }
}

.main-services .dd-services__title-wrap {
  padding-bottom: 25px;
}

.main-services .dd-services__text-wrap {
  padding-bottom: 40px;
  max-width: 304px;
}

.main-services .dd-services__text {
  color: #001F3F;
}

.dd-services.main-services {
  display: flex;
  flex-wrap: nowrap;
  width: 300%;
  overflow: hidden;
}

.main-services .dd-services__item {
  width: 100%;
  flex: 0 0 100%;
}

.main-services .dd-services__count {
  font-size: 30px;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 40px;
}

.main-services .dd-services__count::before {
  width: 28px;
  height: 3px;
  background-color: #FE5B2C;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
}

.main-services .dd-services__count span {
  font-size: 16px;
  position: absolute;
  top: 0;
  font-weight: 300;
}

/* ===========================
   Service section end
   =========================== */

/* ===========================
   Horizontal strategy slider (scoped with .dd-hscroll-strategy)
   =========================== */

.dd-hscroll-strategy.section-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  overflow: hidden;
}

.dd-hscroll-strategy.section-wrapper > .section-item {
  width: 100%;
  flex: 0 0 100%;
  min-width: 100%;
}

@media only screen and (max-width: 767px) {
  .dd-hscroll-strategy.section-wrapper {
    flex-wrap: nowrap; /* override master-corporate mobile wrap */
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .dd-hscroll-strategy .strategy-area.style-3 .strategy-inner-bg {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .dd-hscroll-strategy .strategy-area.style-3 .strategy-inner {
    flex-direction: column;
    gap: 24px;
  }

  .dd-hscroll-strategy .strategy-area.style-3 .strategy-content {
    flex: 1 0 auto;
    max-width: 100%;
  }

  .dd-hscroll-strategy .strategy-area.style-3 .subtitle-wrapper {
    margin-bottom: 18px; /* tighter than template */
  }

  .dd-hscroll-strategy .strategy-area.style-3 .title-wrapper {
    margin-bottom: 16px;
  }

  .dd-hscroll-strategy .strategy-area.style-3 .section-title {
    font-size: clamp(22px, 6.2vw, 30px);
    line-height: 1.18;
    letter-spacing: -0.01em;
  }

  .dd-hscroll-strategy .strategy-area.style-3 .desc-text {
    max-width: 100%;
    margin-inline-start: 0; /* prevent horizontal overflow */
  }

  .dd-hscroll-strategy .strategy-area.style-3 .desc-text .text {
    font-size: 15px;
    line-height: 1.55;
  }

  .dd-hscroll-strategy .strategy-area.style-3 .tags {
    flex-wrap: wrap;
    margin-inline-start: 0; /* prevent horizontal overflow */
    margin-top: 24px;
  }

  .dd-hscroll-strategy .strategy-area.style-3 .shape-1 {
    display: none; /* decorative; causes overlap on small screens */
  }

  .dd-hscroll-strategy .strategy-area.style-3 .strategy-thumb-wrapper {
    flex: 1 0 auto;
    width: 100%;
  }

  .dd-hscroll-strategy .strategy-area.style-3 .strategy-thumb {
    display: flex;
    justify-content: center;
  }

  .dd-hscroll-strategy .strategy-area.style-3 .strategy-thumb .mask-image {
    width: min(227px, 88vw);
    max-width: none; /* override template 250px cap */
  }

  .dd-hscroll-strategy .strategy-area.style-3 .strategy-thumb .mask-image .shape {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  /* Tablet: make each panel feel full-screen */
  .dd-hscroll-strategy.section-wrapper > .section-item {
    min-height: 100vh;
    display: flex;
  }

  .dd-hscroll-strategy .strategy-area.style-3 .strategy-inner-bg,
  .dd-hscroll-strategy .strategy-area.style-3 .strategy-inner-bg-2 {
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: clamp(72px, 8vh, 120px);
    padding-bottom: clamp(72px, 8vh, 120px);
  }

  .dd-hscroll-strategy .strategy-area.style-3 .strategy-inner {
    gap: clamp(36px, 6vw, 70px);
    align-items: center;
  }

  .dd-hscroll-strategy .strategy-area.style-3 .subtitle-wrapper {
    margin-bottom: clamp(26px, 4vh, 48px);
  }

  .dd-hscroll-strategy .strategy-area.style-3 .title-wrapper {
    margin-bottom: clamp(18px, 3vh, 32px);
  }

  .dd-hscroll-strategy .strategy-area.style-3 .section-title {
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.15;
  }

  .dd-hscroll-strategy .strategy-area.style-3 .desc-text {
    max-width: 520px;
    margin-inline-start: 0; /* avoid awkward offset on mid widths */
  }

  .dd-hscroll-strategy .strategy-area.style-3 .tags {
    margin-inline-start: 0;
    margin-top: clamp(32px, 6vh, 64px);
  }

  .dd-hscroll-strategy .strategy-area.style-3 .strategy-thumb .mask-image {
    max-width: 340px; /* less cramped than template 250px */
  }
}

/* ===========================
   Horizontal strategy slider end
   =========================== */

/* ===========================
   Pinned services (service-style-1) (scoped with .main-services)
   =========================== */

.main-services.services-area {
  background-color: #F1F6F6;
}

.main-services.services-area .services-area-inner {
  display: flex;
  gap: 80px;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .main-services.services-area .services-area-inner {
    gap: 50px;
    flex-direction: column;
  }
}

.main-services.services-area .thumb {
  position: relative;
  margin-bottom: 93px;
}

@media only screen and (max-width: 991px) {
  .main-services.services-area .thumb {
    margin-bottom: 43px;
  }
}

.main-services.services-area .section-heading {
  max-width: 775px;
}

@media only screen and (max-width: 1199px) {
  .main-services.services-area .section-heading {
    max-width: 375px;
  }
}

@media only screen and (max-width: 991px) {
  .main-services.services-area .section-heading {
    max-width: 295px;
  }
}

@media only screen and (max-width: 767px) {
  .main-services.services-area .section-heading {
    max-width: 100%;
  }
}

.main-services.services-area .section-heading .main-services__content {
  display: flex;
  gap: 50px;
  justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
  .main-services.services-area .section-heading .main-services__content {
    flex-direction: column;
  }
}

@media only screen and (max-width: 767px) {
  .main-services.services-area .section-heading .main-services__content {
    gap: 30px;
  }
}

.main-services.services-area .section-heading .main-services__content .section-title {
  max-width: 312px;
}

@media only screen and (max-width: 767px) {
  .main-services.services-area .section-heading .main-services__content .section-title {
    max-width: 100%;
  }
}

.main-services.services-area .section-heading .main-services__content .text-wrapper {
  margin-bottom: 43px;
}

@media only screen and (max-width: 767px) {
  .main-services.services-area .section-heading .main-services__content .text-wrapper {
    margin-bottom: 23px;
  }
}

.main-services.services-area .section-heading .main-services__content .text {
  max-width: 100%;
  font-size: 18px;
  line-height: 1.44;
  color: var(--black);
}

@media only screen and (max-width: 991px) {
  .main-services.services-area .section-heading .main-services__content .text {
    max-width: 100%;
  }
}

.main-services.services-area .services-wrapper {
  border-inline-start: 1px solid rgba(18, 18, 18, 0.1);
  max-width: 635px;
  flex-grow: 1;
}

/* Tablet & Mobile layout fixes for long list */
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  /* Keep 2-column layout on tablet because the left column is pinned */
  .main-services.services-area .services-area-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .main-services.services-area .section-heading {
    /* Give the pinned heading more room on tablet */
    max-width: none;
    flex: 0 0 clamp(380px, 46vw, 560px);
  }

  .main-services.services-area .section-heading .main-services__content {
    flex-direction: column;
    gap: 18px;
    justify-content: flex-start;
  }

  .main-services.services-area .section-heading .main-services__content .section-title {
    max-width: 100%;
  }

  .main-services.services-area .section-heading .main-services__content .text-wrapper {
    margin-bottom: 22px;
  }

  .main-services.services-area .thumb {
    margin-bottom: 28px;
  }

  .main-services.services-area .services-wrapper {
    max-width: none;
    flex: 1 1 auto;
    border-top: 0;
    border-inline-start: 1px solid rgba(18, 18, 18, 0.1);
  }

  .main-services.services-area .service-item {
    padding-inline-start: 28px; /* restore inner left padding for list */
    padding-inline-end: 0;
  }

  .main-services.services-area .service-item .content-wrapper {
    gap: 28px;
  }

  .main-services.services-area .service-item .title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .main-services.services-area .service-item .text {
    font-size: 16px;
    line-height: 1.55;
  }
}

@media only screen and (max-width: 767px) {
  /* Mobile: stacked layout (pin is disabled on mobile) */
  .main-services.services-area .services-area-inner {
    flex-direction: column;
    gap: 36px;
  }

  .main-services.services-area .section-heading {
    max-width: 100%;
  }

  .main-services.services-area .services-wrapper {
    max-width: 100%;
    border-inline-start: 0;
    border-top: 1px solid rgba(18, 18, 18, 0.1);
  }

  .main-services.services-area .service-item {
    padding-inline-start: 0;
    padding-inline-end: 0;
  }
}

@media only screen and (max-width: 767px) {
  .main-services.services-area {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .main-services.services-area .thumb {
    margin-bottom: 18px;
  }

  .main-services.services-area .service-item {
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 20px;
  }

  .main-services.services-area .service-item .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  /* Mobile UX: hide the small arrow "btn-wrapper" */
  .main-services.services-area .service-item .btn-wrapper {
    display: none;
  }

  .main-services.services-area .service-item .title {
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.22;
  }

  .main-services.services-area .service-item .text {
    font-size: 15px;
    line-height: 1.55;
  }
}

/* Touch devices: disable hover-flip to avoid stuck states */
@media (hover: none) {
  .main-services.services-area .service-item:hover .title {
    transform: none;
  }
  .main-services.services-area .service-item .title:before {
    display: none;
  }
}

.main-services.services-area .services-wrapper > a {
  opacity: 0.7;
  transition: all 0.5s;
}

.main-services.services-area .services-wrapper > a:hover {
  opacity: 1;
}

.main-services.services-area .services-wrapper > a:first-child .service-item {
  padding-top: 0;
  border-top: 0;
}

.main-services.services-area .services-wrapper > a:last-child .service-item {
  padding-bottom: 20px;
}

.main-services.services-area .service-item {
  display: flex;
  gap: 72px;
  justify-content: space-between;
  padding-top: 36px;
  padding-bottom: 33px;
  padding-inline-start: 41px;
  border-top: 1px solid rgba(18, 18, 18, 0.1);
}

@media only screen and (max-width: 1199px) {
  .main-services.services-area .service-item {
    gap: 42px;
    padding-inline-start: 31px;
  }
}

@media (max-width: 575px) {
  .main-services.services-area .service-item {
    gap: 22px;
    padding-inline-start: 21px;
    flex-direction: column;
    padding-bottom: 18px;
  }
}

/* Title flip animation (fixed for multi-line titles) */
.main-services.services-area .service-item:hover .title {
  transform: rotateX(90deg) translateY(calc(-1 * var(--dd-flip-offset, 0.55em)));
}

.main-services.services-area .service-item .number {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.main-services.services-area .service-item .title {
  font-size: 30px;
  text-decoration: underline;
  text-decoration-thickness: 1.4px;
  text-underline-offset: 3px;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  margin-bottom: 25px;
  perspective: 1000px;
  position: relative;
  display: inline-block;
  padding: 0;
  transition: transform 0.5s;
  transform-origin: 50% 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

@media (max-width: 575px) {
  .main-services.services-area .service-item .title {
    font-size: 24px;
  }
}

.main-services.services-area .service-item .title:before {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: attr(data-text);
  transition: color 0.5s;
  transform: translateY(100%) rotateX(-90deg);
  transform-origin: 50% 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  text-align: start;
  pointer-events: none;
}


.main-services.services-area .service-item .text {
  font-size: 18px;
  line-height: 1.44;
  color: var(--black);
}

.main-services.services-area .service-item .content-wrapper {
  display: flex;
  gap: 109px;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .main-services.services-area .service-item .content-wrapper {
    gap: 39px;
  }
}

@media only screen and (max-width: 767px) {
  .main-services.services-area .service-item .content-wrapper {
    gap: 69px;
  }
}

.main-services.services-area .service-item .main-services__item-content {
  max-width: 390px;
}

.main-services.services-area .service-item .wc-btn-normal img {
  width: 7px;
  min-width: 7px;
}

/* ===========================
   Pinned services (service-style-1) end
   =========================== */

/* ===========================
   Blog area (agency style-1) (scoped with .main-blog)
   =========================== */

.main-blog .has-left-line {
  position: relative;
  padding-inline-start: 35px;
  display: inline-block;
}

.main-blog .has-left-line:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background-color: currentColor;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
}

.main-blog .blog.style-1 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media only screen and (max-width: 991px) {
  .main-blog .blog.style-1 {
    gap: 20px;
  }
}

.main-blog .blog.style-1:hover .thumb img {
  transform: scale(1.02);
}

.main-blog .blog.style-1 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.main-blog .blog.style-1 .tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  background-color: #F0F0F0;
  padding: 4px 6px;
  display: inline-block;
}

.main-blog .blog.style-1 .meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.main-blog .blog.style-1 .date {
  font-size: 12px;
  line-height: 1;
}

.main-blog .blog.style-1 .has-left-line {
  padding-inline-start: 25px;
}

.main-blog .blog.style-1 .has-left-line:before {
  width: 15px;
  color: var(--black);
}

.main-blog .blog.style-1 .title {
  font-size: 30px;
  line-height: 1.16;
  margin-bottom: 18px;
}

@media only screen and (max-width: 1399px) {
  .main-blog .blog.style-1 .title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 991px) {
  .main-blog .blog.style-1 .title {
    font-size: 22px;
  }
}

.main-blog .blog.style-1 .title span {
  font-weight: 600;
}

.main-blog .blog.style-1 .title a:hover {
  color: inherit;
}

.main-blog .blog.style-1 .text {
  font-size: 16px;
  line-height: 1.5;
}

.main-blog.blog-area.style-1 .blog-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  margin: 0 -35px;
}

@media only screen and (max-width: 1199px) {
  .main-blog.blog-area.style-1 .blog-wrapper {
    margin: 0 -25px;
  }
}

@media only screen and (max-width: 991px) {
  .main-blog.blog-area.style-1 .blog-wrapper {
    margin: 0;
    gap: 30px;
  }
}

.main-blog.blog-area.style-1 .blog {
  border-left: 1px solid #E2E2E2;
  padding: 0 35px;
}

@media only screen and (max-width: 1199px) {
  .main-blog.blog-area.style-1 .blog {
    padding: 0 25px;
  }
}

@media only screen and (max-width: 991px) {
  .main-blog.blog-area.style-1 .blog {
    padding: 0;
    margin: 0;
    border: none;
  }
}

.main-blog.blog-area.style-1 .blog .title {
  font-weight: 600;
}

.main-blog.blog-area.style-1 .section-heading {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 62px;
}

@media only screen and (max-width: 1199px) {
  .main-blog.blog-area.style-1 .section-heading {
    margin-bottom: 52px;
  }
}

@media only screen and (max-width: 991px) {
  .main-blog.blog-area.style-1 .section-heading {
    margin-bottom: 42px;
  }
}

.main-blog.blog-area.style-1 .section-title {
  max-width: 607px;
}

@media only screen and (max-width: 991px) {
  .main-blog.blog-area.style-1 .section-title {
    max-width: 477px;
  }
}

/* Avoid header.css `.content` collision */
.main-blog .main-blog__content {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  height: auto;
}

/* ===========================
   Blog area (agency style-1) end
   =========================== */

/* ===========================
   Core services strip (index)
   =========================== */

.dd-core-services {
  border-block: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.dd-core-services__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(0, 0, 0, 0.07);
}

.dd-core-services__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 100%;
  padding: clamp(26px, 2.4vw, 36px) clamp(16px, 1.5vw, 24px);
  text-align: center;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: background-color 180ms ease;
}

.dd-core-services__item:hover {
  background: #fafafa;
}

.dd-core-services__icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  flex-shrink: 0;
}

.dd-core-services__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.dd-core-services__divider {
  display: block;
  width: 22px;
  height: 1px;
  background: #111;
  opacity: 0.22;
}

.dd-core-services__title {
  margin: 0;
  display: grid;
  gap: 2px;
  max-width: 16ch;
  font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #1a1a1a;
}

.dd-core-services__title span {
  display: block;
}

/* Tablet + mobile: compact horizontal scroll strip */
@media (max-width: 991px) {
  .banner-area.banner-3 .dd-core-services {
    position: static;
    border-block: none;
    background: linear-gradient(180deg, #f4f4f6 0%, #fff 100%);
    padding: 14px 0 16px;
  }

  .dd-core-services__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    padding: 2px 16px 6px;
    background: transparent;
    scrollbar-width: none;
  }

  .dd-core-services__grid::-webkit-scrollbar {
    display: none;
  }

  .dd-core-services__item {
    flex: 0 0 clamp(196px, 66vw, 236px);
    scroll-snap-align: start;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 13px 14px;
    min-height: auto;
    text-align: left;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .dd-core-services__item:hover,
  .dd-core-services__item:active {
    background: #fafafa;
  }

  .dd-core-services__divider {
    display: none;
  }

  .dd-core-services__icon {
    width: 36px;
    height: 36px;
    padding: 7px;
    border-radius: 10px;
    background: #f2f2f4;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    color: #111;
  }

  .dd-core-services__title {
    display: block;
    flex: 1;
    max-width: none;
    font-size: 12px;
    line-height: 1.38;
    letter-spacing: 0;
  }

  .dd-core-services__title span:first-child {
    font-weight: 600;
    color: #141414;
  }

  .dd-core-services__title span:last-child {
    font-weight: 400;
    color: #5a5a5a;
    font-size: 0.94em;
  }
}

@media (max-width: 767px) {
  .dd-core-services__item {
    flex-basis: clamp(188px, 72vw, 220px);
    padding: 12px 13px;
    gap: 10px;
  }

  .dd-core-services__icon {
    width: 34px;
    height: 34px;
    padding: 6px;
  }

  .dd-core-services__title {
    font-size: 11.5px;
    line-height: 1.36;
  }
}

/* ===========================
   Brand logos slider (style-3) normalization
   =========================== */

.brand-area.style-3 .brand-logos .swiper-wrapper {
  align-items: center;
}

.brand-area.style-3 .brand-logos .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-area.style-3 .brand-logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 6px; /* consistent inner breathing room */
  height: clamp(44px, 6vw, 64px); /* consistent perceived size */
}

.brand-area.style-3 .brand-logo img {
  width: auto;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* ===========================
   Brand logos slider end
   =========================== */

/* ===========================
   About intro symbol: use logo instead of letter
   =========================== */

.body-wrapper.about .about-intro-area .section-symbol {
  /* Keep the positioning from master-about-2.css */
  font-size: 0; /* hide any fallback text */
  line-height: 0;
  opacity: 0.08; /* watermark-like */
}

.body-wrapper.about .about-intro-area .section-symbol img {
  display: block;
  width: clamp(180px, 24vw, 360px);
  height: auto;
  max-width: none; /* allow watermark sizing independent of layout */
  pointer-events: none;
  user-select: none;
}

@media only screen and (max-width: 1199px) {
  .body-wrapper.about .about-intro-area .section-symbol img {
    width: clamp(160px, 28vw, 280px);
  }
}

@media only screen and (max-width: 767px) {
  .body-wrapper.about .about-intro-area .section-symbol img {
    width: clamp(140px, 40vw, 220px);
  }
}

/* ===========================
   About intro symbol end
   =========================== */

/* ===========================
   Index > Careers / LinkedIn area
   =========================== */

.dd-careers-area {
  background: #fff;
}

.dd-careers-area__split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.dd-careers-area__visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.dd-careers-area__visual img {
  width: 100%;
  max-width: min(100%, 547px);
  height: auto;
  display: block;
}

.dd-careers-area__content {
  max-width: 620px;
}

.dd-careers-area .subtitle-wrapper {
  margin-bottom: 0;
}

.dd-careers-area__linkedin-logo {
  display: block;
  width: auto;
  height: clamp(30px, 2.8vw, 38px);
  margin-bottom: 14px;
}

.dd-careers-area .section-title {
  margin: 0 0 20px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #111;
}

.dd-careers-area .text-wrapper .text {
  margin-bottom: 14px;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.82);
}

.dd-careers-area .text-wrapper .text:last-child {
  margin-bottom: 0;
}

.dd-careers-area__actions {
  margin-top: 28px;
}

@media only screen and (max-width: 1199px) {
  .dd-careers-area__split {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(24px, 3vw, 40px);
  }

  .dd-careers-area__content {
    max-width: 100%;
  }

  .dd-careers-area .section-title {
    font-size: 34px;
  }

  .dd-careers-area__linkedin-logo {
    height: clamp(28px, 2.6vw, 36px);
    margin-bottom: 12px;
  }
}

@media (max-width: 991px) {
  .dd-careers-area__split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .dd-careers-area__visual {
    order: 1;
    justify-content: center;
  }

  .dd-careers-area__visual img {
    max-width: min(100%, 420px);
  }

  .dd-careers-area__content {
    order: 2;
  }

  .dd-careers-area .section-title {
    font-size: 32px;
  }

  .dd-careers-area__linkedin-logo {
    height: clamp(26px, 6.2vw, 32px);
    margin-bottom: 12px;
  }

  .dd-careers-area__actions {
    margin-top: 22px;
  }
}

@media (max-width: 575px) {
  .dd-careers-area__split {
    gap: 22px;
  }

  .dd-careers-area__visual img {
    max-width: min(100%, 280px);
  }

  .dd-careers-area .section-title {
    font-size: clamp(28px, 8vw, 36px);
  }

  .dd-careers-area__linkedin-logo {
    height: clamp(24px, 7vw, 30px);
    margin-bottom: 10px;
  }

  .dd-careers-area .text-wrapper .text {
    font-size: 16px;
  }
}

/* ===========================
   Hakkımızda > About area (#triggeredSection)
   Mobile/tablet layout: text then images, no overlap
   =========================== */

/* ===========================
   Bilgi Toplumu Hizmetleri > About split (banka image left, content right)
   =========================== */

body.page-bilgi-toplumu #triggeredSection.about-area.dd-bth-split {
  position: relative;
  overflow: visible;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

body.page-bilgi-toplumu .dd-bth-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 4.5vw, 72px);
  align-items: center;
}

body.page-bilgi-toplumu .dd-bth-split__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(8px, 1.5vw, 20px);
}

body.page-bilgi-toplumu .dd-bth-split__visual img {
  width: 100%;
  max-width: min(100%, 440px);
  height: auto;
  display: block;
  object-fit: contain;
}

body.page-bilgi-toplumu .dd-bth-split .section-content {
  max-width: none;
  margin-inline: 0;
}

body.page-bilgi-toplumu .dd-bth-split .section-content .title-wrapper {
  margin-bottom: clamp(24px, 2.6vw, 38px);
}

body.page-bilgi-toplumu .dd-bth-split .section-content .section-title {
  line-height: 1.18;
  letter-spacing: -0.03em;
}

@media only screen and (max-width: 1199px) {
  body.page-bilgi-toplumu .dd-bth-split__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 3.5vw, 48px);
  }

  body.page-bilgi-toplumu .dd-bth-split__visual img {
    max-width: min(100%, 380px);
  }
}

@media only screen and (max-width: 991px) {
  body.page-bilgi-toplumu .dd-bth-split__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body.page-bilgi-toplumu .dd-bth-split__visual {
    order: 2;
    padding: 0;
  }

  body.page-bilgi-toplumu .dd-bth-split__visual img {
    max-width: min(100%, 340px);
    margin-inline: auto;
  }

  body.page-bilgi-toplumu .dd-bth-split .section-content {
    order: 1;
  }
}

@media only screen and (max-width: 575px) {
  body.page-bilgi-toplumu .dd-bth-split__grid {
    gap: 24px;
  }

  body.page-bilgi-toplumu .dd-bth-split__visual img {
    max-width: min(100%, 280px);
  }
}

/* ===========================
   Hakkımızda > About split (text left, banka image right)
   =========================== */

body.page-hakkimizda .dd-about-split {
  position: relative;
  overflow: visible;
}

body.page-hakkimizda .dd-about-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  gap: clamp(32px, 4.5vw, 72px);
  align-items: center;
}

body.page-hakkimizda .dd-about-split .section-content {
  max-width: none;
  margin-inline: 0;
}

body.page-hakkimizda .dd-about-split .section-content .title-wrapper {
  margin-bottom: clamp(28px, 3vw, 44px);
}

body.page-hakkimizda .dd-about-split .section-content .section-title {
  line-height: 1.18;
  letter-spacing: -0.03em;
}

body.page-hakkimizda .dd-about-split .section-content .text-wrapper .text {
  margin-bottom: clamp(16px, 1.6vw, 22px);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.72;
  color: rgba(17, 17, 17, 0.82);
}

body.page-hakkimizda .dd-about-split .section-content .text-wrapper .text:last-child {
  margin-bottom: 0;
}

body.page-hakkimizda .dd-about-split__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(8px, 1.5vw, 20px);
}

body.page-hakkimizda .dd-about-split__visual img {
  width: 100%;
  max-width: min(100%, 440px);
  height: auto;
  display: block;
  object-fit: contain;
}

@media only screen and (max-width: 1199px) {
  body.page-hakkimizda .dd-about-split__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(28px, 3.5vw, 48px);
  }

  body.page-hakkimizda .dd-about-split__visual img {
    max-width: min(100%, 380px);
  }
}

@media only screen and (max-width: 991px) {
  body.page-hakkimizda .dd-about-split__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body.page-hakkimizda .dd-about-split__visual {
    order: 2;
    padding: 0;
  }

  body.page-hakkimizda .dd-about-split__visual img {
    max-width: min(100%, 340px);
    margin-inline: auto;
  }

  body.page-hakkimizda .dd-about-split .section-content .text-wrapper .text {
    font-size: 16px;
    line-height: 1.68;
  }
}

@media only screen and (max-width: 575px) {
  body.page-hakkimizda .dd-about-split__grid {
    gap: 24px;
  }

  body.page-hakkimizda .dd-about-split__visual img {
    max-width: min(100%, 280px);
  }
}

/* ===========================
   Hakkımızda > About area (#triggeredSection) — other pages
   Mobile/tablet layout: text then images, no overlap
   =========================== */

/* Desktop safety: keep absolute visuals from causing horizontal spill */
#triggeredSection.about-area {
  position: relative; /* ensure abs children are scoped */
  overflow-x: hidden;
}

#triggeredSection.about-area .dd-about-media {
  pointer-events: none;
}

#triggeredSection.about-area .dd-about-media .area-thumb img,
#triggeredSection.about-area .dd-about-media > img.area-shape-1 {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Desktop: keep template-like absolute composition */
#triggeredSection.about-area .dd-about-media {
  position: absolute;
  inset: 0;
}

#triggeredSection.about-area .dd-about-media > img.area-shape-1 {
  position: absolute;
  bottom: 21%;
  inset-inline-start: 0;
  width: 395px;
  opacity: 1;
}

#triggeredSection.about-area .dd-about-media .area-thumb {
  position: absolute;
  inset-inline-start: 11%;
  bottom: 0;
  max-width: 415px;
  overflow: hidden;
}

/* Tablet + mobile: stack content and place images AFTER text */
@media (max-width: 991px) {
  #triggeredSection.about-area {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: visible; /* no need to clip on stacked layout */
    padding-bottom: 0 !important;
  }

  /* Let text span full width on smaller screens */
  #triggeredSection.about-area .section-content {
    max-width: 100% !important;
    margin-inline-start: 0 !important;
    margin-inline-end: 0 !important;
  }

  /* Order: text container first, then media (overlapped images) */
  #triggeredSection.about-area > .container {
    order: 1;
  }

  #triggeredSection.about-area > .dd-about-media {
    order: 2;
  }

  /* Mobile/tablet media block: centered, equal side padding, overlapped images */
  #triggeredSection.about-area .dd-about-media {
    position: relative !important;
    inset: auto !important;
    display: grid;
    place-items: center;
    width: 100%;
    padding-inline: 16px;
    padding-top: 2px;
    padding-bottom: 0;
    overflow: hidden; /* prevent accidental horizontal scroll */
  }

  /* Foreground image (main) */
  #triggeredSection.about-area .dd-about-media .area-thumb {
    position: relative !important;
    inset: auto !important;
    bottom: auto !important;
    display: block !important;
    width: clamp(95px, 27vw, 175px); /* base (overridden for tablet/mobile below) */
    max-width: 100%;
    z-index: 2;
    overflow: visible; /* don't crop on small screens */
  }

  /* Background banner image, slightly left and behind */
  #triggeredSection.about-area .dd-about-media > img.area-shape-1 {
    position: absolute !important;
    inset: auto !important;
    bottom: 6%;
    left: 50%;
    transform: translateX(-58%); /* a bit left of centered */
    width: clamp(110px, 31vw, 200px); /* base (overridden for tablet/mobile below) */
    max-width: 100%;
    z-index: 1;
    opacity: 0.95;
  }
}

/* Tablet (576px–991px): 1.5x bigger than base */
@media (min-width: 576px) and (max-width: 991px) {
  #triggeredSection.about-area .dd-about-media .area-thumb {
    width: clamp(145px, 41vw, 265px);
  }

  #triggeredSection.about-area .dd-about-media > img.area-shape-1 {
    width: clamp(165px, 47vw, 300px);
  }
}

/* Smaller phones: tighten spacing a bit */
@media (max-width: 575px) {
  #triggeredSection.about-area {
    gap: 10px;
    padding-bottom: 0 !important;
  }

  #triggeredSection.about-area .dd-about-media {
    padding-inline: 12px;
  }

  /* Extra downscale on small phones */
  #triggeredSection.about-area .dd-about-media .area-thumb {
    width: clamp(95px, 42vw, 180px);
  }

  #triggeredSection.about-area .dd-about-media > img.area-shape-1 {
    width: clamp(110px, 48vw, 210px);
  }
}

/* ===========================
   List result summary (blog / hizmetlerimiz / duyurular)
   =========================== */

.dd-list-result {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.72);
}

/* ===========================
   List pagination (blog / hizmetlerimiz)
   =========================== */

body.main-hakkimizda .projects-area .pagination.style-1 {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

body.main-hakkimizda .projects-area .pagination.style-1 li:last-child {
  padding-inline-start: 0; /* remove template offset */
}

body.main-hakkimizda .projects-area .pagination.style-1 li a {
  font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 14px;
  line-height: 1;
  color: #dc3545;

  height: 40px;
  min-width: 40px;
  padding: 0 14px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.20);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

body.main-hakkimizda .projects-area .pagination.style-1 li a:hover {
  background: rgba(220, 53, 69, 0.12);
  border-color: rgba(220, 53, 69, 0.32);
  transform: translateY(-1px);
}

body.main-hakkimizda .projects-area .pagination.style-1 li a:focus-visible {
  outline: 2px solid rgba(220, 53, 69, 0.55);
  outline-offset: 3px;
}

body.main-hakkimizda .projects-area .pagination.style-1 li a.current {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

/* "Next" pill */
body.main-hakkimizda .projects-area .pagination.style-1 li:last-child a {
  padding-inline: 16px;
}

body.main-hakkimizda .projects-area .pagination.style-1 li a img,
body.main-hakkimizda .projects-area .pagination.style-1 li a i {
  width: 14px;
  height: 14px;
  font-size: 12px;
  object-fit: contain;
  opacity: 0.9;
}

body.main-hakkimizda .projects-area .pagination.style-1 .pagination-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  color: rgba(15, 23, 42, 0.55);
  font-weight: 700;
  letter-spacing: 2px;
}

/* ===========================
   Belgelerimiz cards grid
   =========================== */

body.main-hakkimizda .dd-docs-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 1199px) {
  body.main-hakkimizda .dd-docs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 991px) {
  body.main-hakkimizda .dd-docs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  body.main-hakkimizda .dd-docs-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

body.main-hakkimizda .dd-doc-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  box-shadow: 0 10px 30px rgba(18, 18, 18, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

body.main-hakkimizda .dd-doc-card:hover {
  border-color: rgba(220, 53, 69, 0.22);
  box-shadow: 0 18px 46px rgba(18, 18, 18, 0.12);
}

body.main-hakkimizda .dd-doc-media {
  display: grid;
  place-items: center;
  padding: 18px 18px 6px;
  background: linear-gradient(180deg, rgba(220, 53, 69, 0.06), rgba(255, 255, 255, 0));
}

body.main-hakkimizda .dd-doc-media img {
  width: min(320px, 92%);
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: none;
}

body.main-hakkimizda .dd-doc-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-align: center;
  flex: 1 1 auto; /* allow actions to align across cards */
}

body.main-hakkimizda .dd-doc-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #121212;
  line-height: 1.22;
  /* Reserve space for up to 2 lines so buttons align */
  min-height: calc(1.22em * 2);
}

body.main-hakkimizda .dd-doc-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: auto; /* pin actions to bottom */
}

body.main-hakkimizda .dd-doc-view {
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #dc3545;
  background: transparent;
  border: 1px solid #dc3545;
  box-shadow: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  white-space: nowrap;
}

@media (max-width: 575px) {
  body.main-hakkimizda .dd-doc-title {
    font-size: 19px;
  }

  body.main-hakkimizda .dd-doc-view {
    font-size: 14px;
  }
}

body.main-hakkimizda .dd-doc-view .dd-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: block;
  color: currentColor;
}

body.main-hakkimizda .dd-doc-view:hover {
  background: rgba(220, 53, 69, 0.08);
  border-color: #dc3545;
}

body.main-hakkimizda .dd-doc-view:focus-visible {
  outline: 2px solid rgba(220, 53, 69, 0.55);
  outline-offset: 3px;
}

/* Document viewer popup */
.dd-doc-viewer {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: clamp(16px, 2.5vw, 32px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.dd-doc-viewer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dd-doc-viewer__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  cursor: pointer;
}

.dd-doc-viewer__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 32px));
  height: min(86vh, 820px);
  max-height: calc(100dvh - 32px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  transform: scale(0.97);
  transition: transform 260ms ease;
}

.dd-doc-viewer.is-open .dd-doc-viewer__dialog {
  transform: scale(1);
}

.dd-doc-viewer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  flex-shrink: 0;
}

.dd-doc-viewer__title {
  margin: 0;
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 700;
  line-height: 1.35;
  color: #111;
  flex: 1;
  min-width: 0;
}

.dd-doc-viewer__tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.dd-doc-viewer__zoom {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: #f4f4f4;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.dd-doc-viewer__zoom-btn {
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.dd-doc-viewer__zoom-btn:hover {
  background: #fff;
}

.dd-doc-viewer__zoom-reset {
  font-size: 12px;
  font-weight: 600;
  padding: 0 12px;
}

.dd-doc-viewer__zoom-value {
  min-width: 44px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.72);
  user-select: none;
}

.dd-doc-viewer__close {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 0;
  border-radius: 50%;
  background: #f3f3f3;
  cursor: pointer;
  position: relative;
  transition: background 180ms ease;
}

.dd-doc-viewer__close:hover {
  background: #111;
}

.dd-doc-viewer__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 1.5px;
  background: #111;
  transition: background 180ms ease;
}

.dd-doc-viewer__close:hover span {
  background: #fff;
}

.dd-doc-viewer__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.dd-doc-viewer__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.dd-doc-viewer__body {
  flex: 1;
  min-height: 0;
  background: #ececec;
  overflow: hidden;
}

.dd-doc-viewer__scroll {
  height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.dd-doc-viewer__canvas {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.dd-doc-viewer__frame {
  width: 100%;
  max-width: 860px;
  height: calc(86vh - 120px);
  min-height: 420px;
  margin: 0 auto;
  border: 0;
  background: #fff;
  display: block;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.dd-doc-viewer__image {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

body.dd-doc-viewer-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .dd-doc-viewer {
    padding: 12px;
  }

  .dd-doc-viewer__dialog {
    width: 100%;
    height: min(90dvh, 820px);
    max-height: calc(100dvh - 24px);
    border-radius: 14px;
  }

  .dd-doc-viewer__header {
    flex-wrap: wrap;
    padding: 12px 14px;
  }

  .dd-doc-viewer__tools {
    width: 100%;
    justify-content: space-between;
  }

  .dd-doc-viewer__zoom-reset {
    display: none;
  }

  .dd-doc-viewer__canvas {
    padding: 12px;
  }

  .dd-doc-viewer__frame {
    width: 100%;
    height: calc(90dvh - 150px);
    min-height: 320px;
  }
}


.details-content-area .details-feature-content .title{
  letter-spacing: normal !important;
}

/* ===========================
   Fatura & Hesap Bilgilerimiz (billing card)
   Scoped to this page via #surdurulebilirlik + body.main-hakkimizda
   =========================== */

   #surdurulebilirlik .text {
    font-size: 22px !important;
   }

   @media screen and (max-width: 767px) {
    #surdurulebilirlik .text {
      font-size: 18px !important;
     }
   }



body.main-hakkimizda .dd-billing {
  max-width: 980px;
  margin-inline: auto;
}

body.main-hakkimizda .dd-billing-lead {
  max-width: 70ch;
  font-size: 18px;
  line-height: 1.55;
  opacity: 0.92;
}

@media (max-width: 767px) {
  body.main-hakkimizda  .dd-billing-lead {
    font-size: 16px;
  }
}

body.main-hakkimizda  .dd-billing-card {
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
  border: 1px solid rgba(16, 24, 40, 0.10);
  box-shadow:
    0 18px 40px rgba(16, 24, 40, 0.08),
    0 2px 10px rgba(16, 24, 40, 0.05);
}

/* Billing page: About-area split layout (left visual + right table) */
body.page-billing #triggeredSection.about-area .dd-billing-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: stretch;
}

body.page-billing #triggeredSection.about-area .dd-billing-visual {
  pointer-events: none;
}

body.page-billing #triggeredSection.about-area .dd-billing-visual .dd-about-media {
  position: relative;
  inset: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end; /* visual sits flush to bottom */
  width: 100%;
  min-height: clamp(300px, 30vw, 420px);
  overflow: visible;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

body.page-billing #triggeredSection.about-area .dd-billing-visual .dd-about-media > img.area-shape-1 {
  position: absolute;
  left: 33%;
  top: clamp(12px, 1.2vw, 20px);
  bottom: auto;
  transform: translateX(-50%);
  width: clamp(240px, 28vw, 380px);
  max-width: 92%;
  height: auto;
  opacity: 0.95;
  z-index: 1;
}

body.page-billing #triggeredSection.about-area .dd-billing-visual .dd-about-media .area-thumb {
  position: relative;
  z-index: 2;
  width: min(92%, 420px);
  margin-bottom: 0;
}

body.page-billing #triggeredSection.about-area .dd-billing-visual .dd-about-media .area-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* When used in split layout, remove duplicate top margin */
body.page-billing #triggeredSection.about-area .dd-billing-card {
  margin-top: 0;
}

/* Section spacing for this page */
body.page-billing #triggeredSection.about-area {
  padding-bottom: 0 !important; /* desktop: no bottom gap */
  margin-bottom: 0 !important;
}

body.page-billing #triggeredSection.about-area .about-area-inner {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

body.page-billing #triggeredSection.about-area .dd-billing-visual {
  align-self: end;
  margin-bottom: 0 !important;
}

/* ===========================
   Duyurular (Announcements list)
   =========================== */

body.page-duyurular .details-content-area-inner.dd-announcements-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 28px;
  align-items: start;
}

body.page-duyurular .dd-announcements__head .section-title {
  margin-bottom: 10px;
}

body.page-duyurular .dd-announcements__head .text {
  max-width: 72ch;
  opacity: 0.92;
  margin-bottom: 18px;
}

body.page-duyurular .dd-announcements__list {
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
}

body.page-duyurular .dd-announcement {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
}

body.page-duyurular .dd-announcement:last-child {
  border-bottom: none;
}

body.page-duyurular .dd-announcement__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

body.page-duyurular .dd-announcement__date {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  color: #0f172a;
  background: rgba(220, 53, 69, 0.10);
  border: 1px solid rgba(220, 53, 69, 0.18);
}

body.page-duyurular .dd-announcement__title {
  margin: 0 0 8px 0;
  font-size: clamp(18px, 1.1vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.2px;
  color: #0f172a;
}

body.page-duyurular .dd-announcement__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.86);
}

body.page-duyurular .dd-announcement__text strong {
  font-weight: 700;
  color: rgba(15, 23, 42, 0.92);
}

body.page-duyurular .dd-announcement__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #dc3545;
  text-decoration: none;
}

body.page-duyurular .dd-announcement__link:hover {
  text-decoration: underline;
}

body.page-duyurular .dd-mini-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

body.page-duyurular .dd-mini-pagination__btn,
body.page-duyurular .dd-mini-pagination__page {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: rgba(15, 23, 42, 0.9);
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.14);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

body.page-duyurular .dd-mini-pagination__btn:hover,
body.page-duyurular .dd-mini-pagination__page:hover {
  background: rgba(220, 53, 69, 0.08);
  border-color: rgba(220, 53, 69, 0.35);
  color: #dc3545;
  transform: translateY(-1px);
}

body.page-duyurular .dd-mini-pagination__page.is-active {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

body.page-duyurular .dd-mini-pagination__dots {
  color: rgba(15, 23, 42, 0.6);
  font-weight: 700;
  letter-spacing: 2px;
  padding-inline: 2px;
}

body.page-duyurular .dd-announcements__visual {
  position: sticky;
  top: 120px;
}

body.page-duyurular .dd-announcements__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

@media (max-width: 1024px) {
  body.page-duyurular .details-content-area-inner.dd-announcements-split {
    grid-template-columns: minmax(0, 1fr);
  }

  body.page-duyurular .dd-announcements__visual {
    display: none;
  }
}

@media (max-width: 767px) {
  body.page-duyurular .dd-announcement {
    padding: 16px 16px;
  }

  body.page-duyurular .dd-mini-pagination {
    gap: 8px;
    margin-top: 14px;
  }

  body.page-duyurular .dd-mini-pagination__btn,
  body.page-duyurular .dd-mini-pagination__page {
    min-width: 34px;
    height: 34px;
    font-size: 13px;
  }

  body.page-duyurular .dd-announcement__title {
    font-size: 18px;
  }

  body.page-duyurular .dd-announcement__text {
    font-size: 15px;
  }
}

/* ===========================
   Partnerlerimiz (group headings inside projects grid)
   =========================== */

body.page-partners .projects-area .dd-partner-heading {
  grid-column: 1 / -1;
  padding: 0 45px;
  margin-top: 24px;
  margin-bottom: -10px; /* pull headings closer to cards */
}

body.page-partners .projects-area .dd-partner-heading:first-child {
  margin-top: 0;
}

body.page-partners .projects-area .dd-partner-heading__title {
  margin: 0;
  font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 1.45vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: #0f172a;
  position: relative;
  padding-left: 16px;
}

body.page-partners .projects-area .dd-partner-heading__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #dc3545;
  transform: translateY(-50%);
}

@media only screen and (max-width: 1399px) {
  body.page-partners .projects-area .dd-partner-heading {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 767px) {
  body.page-partners .projects-area .dd-partner-heading {
    padding: 0 20px;
    margin-top: 18px;
    margin-bottom: -6px;
  }

  body.page-partners .projects-area .dd-partner-heading__title {
    font-size: 20px;
    line-height: 1.2;
  }

  body.page-partners .projects-area .dd-partner-heading__title::before {
    width: 8px;
    height: 8px;
  }
}

/* ===========================
   Ana Sözleşme: reuse Belgelerimiz doc-card styles
   =========================== */

body.page-ana-sozlesme .dd-docs-grid {
  grid-template-columns: minmax(0, 360px);
  justify-content: start;
}

body.page-ana-sozlesme .dd-doc-actions {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

body.page-ana-sozlesme .dd-doc-download {
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  background: #dc3545;
  border: 1px solid #dc3545;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease;
}

body.page-ana-sozlesme .dd-doc-download:hover {
  background: #c82333;
  border-color: #c82333;
  color: #fff;
}

body.page-ana-sozlesme .dd-doc-download .dd-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: block;
  color: currentColor;
}

@media (max-width: 575px) {
  body.page-ana-sozlesme .dd-doc-download {
    font-size: 14px;
  }
}

/* ===========================
   Bilgi Toplumu Hizmetleri (Mekasist block + PDF row)
   =========================== */

body.page-bilgi-toplumu #triggeredSection.about-area .dd-mekasist {
  margin-top: 6px;
  display: grid;
  gap: 6px;
}

body.page-bilgi-toplumu #triggeredSection.about-area .dd-mekasist__brand {
  font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.02;
  color: #0f172a;
}

body.page-bilgi-toplumu #triggeredSection.about-area .dd-mekasist__sub {
  font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
  font-weight: 650;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.25;
  color: rgba(15, 23, 42, 0.78);
}

body.page-bilgi-toplumu #triggeredSection.about-area .dd-mekasist__link {
  width: fit-content;
  font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  color: #ca123b; /* classic link blue like screenshot */
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.page-bilgi-toplumu #triggeredSection.about-area .dd-mekasist__link:hover {
  text-decoration-thickness: 2px;
}

body.page-bilgi-toplumu #triggeredSection.about-area .dd-file-row {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

body.page-bilgi-toplumu #triggeredSection.about-area .dd-file-row__title {
  font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
  font-weight: 850;
  font-size: 20px;
  line-height: 1.2;
  color: #0f172a;
}

@media (max-width: 575px) {
  body.page-bilgi-toplumu #triggeredSection.about-area .dd-file-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===========================
   Blog cards (match index.html blog area)
   Copied from master-blog.css, scoped to blog page
   =========================== */

body.page-blog .blog.style-1 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media only screen and (max-width: 991px) {
  body.page-blog .blog.style-1 {
    gap: 20px;
  }
}

body.page-blog .blog.style-1:hover .thumb img {
  transform: scale(1.02);
}

body.page-blog .blog.style-1 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

body.page-blog .blog.style-1 .meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

body.page-blog .blog.style-1 .date {
  font-size: 12px;
  line-height: 1;
}

body.page-blog .blog.style-1 .has-left-line {
  padding-inline-start: 25px;
}

body.page-blog .blog.style-1 .title {
  font-size: 30px;
  line-height: 1.16;
  margin-bottom: 18px;
}

@media only screen and (max-width: 1399px) {
  body.page-blog .blog.style-1 .title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 991px) {
  body.page-blog .blog.style-1 .title {
    font-size: 22px;
  }
}

body.page-blog .blog.style-1 .title span {
  font-weight: 600;
}

body.page-blog .blog.style-1 .title a:hover {
  color: inherit;
}

body.page-blog .blog.style-1 .text {
  font-size: 16px;
  line-height: 1.5;
}

body.page-blog .blog-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 -45px;
  gap: 60px 0; /* match hizmetlerimiz spacing style */
}

@media only screen and (max-width: 1199px) {
  body.page-blog .blog-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 -30px;
    gap: 40px 0;
  }
}

@media only screen and (max-width: 991px) {
  body.page-blog .blog-wrapper {
    margin: 0;
    gap: 30px;
  }
}

@media only screen and (max-width: 767px) {
  body.page-blog .blog-wrapper {
    grid-template-columns: 1fr;
  }
}

body.page-blog .blog-wrapper .blog {
  border-left: 1px solid #E2E2E2;
  padding: 0 45px;
}

@media only screen and (max-width: 1199px) {
  body.page-blog .blog-wrapper .blog {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 991px) {
  body.page-blog .blog-wrapper .blog {
    padding: 0;
    margin: 0;
    border: none;
  }
}

/* Remove left divider on first column (like column separators) */
body.page-blog .blog-wrapper .blog:nth-child(3n + 1) {
  border-left: none;
}

@media only screen and (max-width: 1199px) {
  body.page-blog .blog-wrapper .blog:nth-child(3n + 1) {
    border-left: 1px solid #E2E2E2; /* reset */
  }

  body.page-blog .blog-wrapper .blog:nth-child(2n + 1) {
    border-left: none;
  }
}

@media only screen and (max-width: 991px) {
  body.page-blog .blog-wrapper .blog:nth-child(2n + 1) {
    border-left: none;
  }
}

/* Modernize the billing card (page-specific) */
body.page-billing #triggeredSection.about-area .dd-billing-card {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.08),
    0 2px 10px rgba(15, 23, 42, 0.05);
}

body.page-billing #triggeredSection.about-area .dd-billing-card__header {
  padding: 18px 20px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  position: relative;
}

/* Modern accent (instead of gradient) */
body.page-billing #triggeredSection.about-area .dd-billing-card__header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #dc3545;
}

body.page-billing #triggeredSection.about-area .dd-billing-card__header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(900px 120px at 18% 0%, rgba(220, 53, 69, 0.07) 0%, rgba(220, 53, 69, 0.00) 60%);
}

body.page-billing #triggeredSection.about-area .dd-billing-card__title {
  position: relative;
  z-index: 1;
  font-weight: 850;
  letter-spacing: 0;
}

body.page-billing #triggeredSection.about-area .dd-billing-card__meta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.18);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(15, 23, 42, 0.70);
}

body.page-billing #triggeredSection.about-area .dd-billing-table tr {
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

body.page-billing #triggeredSection.about-area .dd-billing-table th {
  width: 34%;
  font-weight: 750;
  font-size: 13px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(15, 23, 42, 0.62);
}

body.page-billing #triggeredSection.about-area .dd-billing-table td {
  font-weight: 650;
  font-size: 16px;
  color: #0f172a;
}

@media (max-width: 575px) {
  body.page-billing #triggeredSection.about-area .dd-billing-card__header {
    padding: 16px 16px 14px;
  }

  body.page-billing #triggeredSection.about-area .dd-billing-table th,
  body.page-billing #triggeredSection.about-area .dd-billing-table td {
    padding: 14px 16px;
  }
}

@media (max-width: 991px) {
  /* This page uses an in-container split; avoid template flex overrides */
  body.page-billing #triggeredSection.about-area {
    display: block;
    overflow: visible;
    padding-bottom: clamp(28px, 6vw, 56px) !important;
  }

  body.page-billing #triggeredSection.about-area .dd-billing-split {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  /* Tablet/mobile: hide the visual block entirely */
  body.page-billing #triggeredSection.about-area .dd-billing-visual {
    display: none !important;
  }
}

body.main-hakkimizda  .dd-billing-card__header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
  background:
    radial-gradient(1200px 180px at 12% 0%, rgba(220, 53, 69, 0.09) 0%, rgba(220, 53, 69, 0.00) 70%),
    linear-gradient(180deg, rgba(16, 24, 40, 0.02) 0%, rgba(16, 24, 40, 0.00) 100%);
}

body.main-hakkimizda  .dd-billing-card__title {
  font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.25;
  color: #0f172a;
}

body.main-hakkimizda  .dd-billing-card__meta {
  margin-top: 6px;
  font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.62);
}

body.main-hakkimizda  .dd-billing-table {
  width: 100%;
  border-collapse: collapse;
}

body.main-hakkimizda  .dd-billing-table tr {
  border-bottom: 1px solid rgba(16, 24, 40, 0.07);
}

body.main-hakkimizda  .dd-billing-table tr:last-child {
  border-bottom: none;
}

body.main-hakkimizda .dd-billing-table th,
body.main-hakkimizda .dd-billing-table td {
  padding: 16px 20px;
  vertical-align: top;
}

body.main-hakkimizda .dd-billing-table th {
  width: 32%;
  font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(15, 23, 42, 0.58);
  text-transform: uppercase;
}

body.main-hakkimizda .dd-billing-table td {
  font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
  font-weight: 650;
  font-size: 15px;
  line-height: 1.55;
  color: #0f172a;
}

@media (hover: hover) and (pointer: fine) {
  body.main-hakkimizda .dd-billing-table tr:hover {
    background: rgba(220, 53, 69, 0.04);
  }
}

/* Mobile: stack label/value, preserve spacing */
@media (max-width: 575px) {
  body.main-hakkimizda .dd-billing-card__header {
    padding: 16px 16px 12px;
  }

  body.main-hakkimizda .dd-billing-table th,
  body.main-hakkimizda .dd-billing-table td {
    padding: 14px 16px;
    display: block;
    width: 100%;
  }

  body.main-hakkimizda .dd-billing-table th {
    padding-bottom: 6px;
  }

  body.main-hakkimizda .dd-billing-table td {
    padding-top: 0;
  }
}

/* Floating actions: WhatsApp + scroll to top */
.dd-floating-actions {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 99;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 12px;
}

.dd-floating-actions .progress-wrap {
  position: static;
  right: auto;
  bottom: auto;
  margin: 0;
}

.dd-whatsapp-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: transform 200ms linear, box-shadow 200ms linear, background-color 200ms linear;
  flex-shrink: 0;
}

.dd-whatsapp-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

.dd-whatsapp-btn:hover,
.dd-whatsapp-btn:focus-visible {
  background-color: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.dd-whatsapp-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .dd-floating-actions {
    right: 25px;
    bottom: 80px;
    gap: 10px;
  }

  .dd-floating-actions .progress-wrap,
  .dd-whatsapp-btn {
    width: 42px;
    height: 42px;
  }

  .dd-floating-actions .progress-wrap::after {
    line-height: 42px;
    height: 42px;
    width: 42px;
    font-size: 18px;
  }

  .dd-whatsapp-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* Öne Çıkan Hizmetler ikonları: panelden yüklenen SVG <img> ile geliyor,
   CSS fill/color ile boyanamaz — bu yüzden filter ile beyaza çeviriyoruz. */
.dd-core-services__icon img {
  filter: brightness(0) invert(1);
}
/* ===========================
   �leti�im formu (INI alanlar� + marka renkleri)
   =========================== */

body.page-iletisim .contact-area form.dd-contact-form > *:nth-child(3),
body.page-iletisim .contact-area form.dd-contact-form > *:nth-child(4) {
  grid-column: auto;
}

body.page-iletisim .contact-area form.dd-contact-form > .dd-contact-form__full,
body.page-iletisim .contact-area form.dd-contact-form > .contact-form-kvkk-actions {
  grid-column: 1 / -1;
}

body.page-iletisim .contact-area form.dd-contact-form input,
body.page-iletisim .contact-area form.dd-contact-form textarea {
  background: #ffffff;
  border: 1px solid rgba(202, 18, 59, 0.18);
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.page-iletisim .contact-area form.dd-contact-form input:focus,
body.page-iletisim .contact-area form.dd-contact-form textarea:focus {
  border-color: #ca123b;
  box-shadow: 0 0 0 3px rgba(202, 18, 59, 0.12);
  outline: 0;
}

body.page-iletisim .contact-area form.dd-contact-form .wc-form-label {
  color: #0f172a;
}

body.page-iletisim .contact-area .line-vertical {
  background: #ca123b;
}

body.page-iletisim .bk-career-form-gdpr-link {
  color: #ca123b;
}

body.page-insan-kaynaklari .bk-career-form-wrapper {
  background: linear-gradient(180deg, #ffffff 0%, #fff7f9 100%);
  padding-block: 48px 72px;
}

/* Form validasyon / durum mesajları */
.dd-field-error {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.35;
  color: #ca123b;
}

.is-invalid > .dd-field-error,
.dd-field-error:not(:empty) {
  display: block;
}

.is-invalid input,
.is-invalid textarea,
.is-invalid select {
  border-color: #ca123b !important;
}

.dd-form-status {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.4;
  min-height: 1.2em;
}

body.page-iletisim .contact-area form.dd-contact-form > .dd-form-status {
  grid-column: 1 / -1;
}

.dd-form-status.is-success {
  color: #0f766e;
}

.dd-form-status.is-error {
  color: #ca123b;
}

.dd-form-status.is-pending {
  color: #475569;
}

button.is-loading {
  opacity: 0.7;
  pointer-events: none;
}
