/*
  2025-gecis.css
  İlgili şablon: wp-content/themes/neve/template-parts/content-gecis.php
  Not: Bu sayfaya özgü tüm stiller burada toplanacaktır.
*/

/* Global Section Spacing - 120px between sections */
/* Top-level sections */
.tanisma-section,
.pixa-support-section {
  margin-top: 120px;
  margin-bottom: 120px;
}

.faq-section {
  margin-top: 120px;
  margin-bottom: 0;
}

.gorusme-section {
  margin-top: 164px;
  margin-bottom: 120px;
}

/* Feature sections that contain other sections */
.feature-bg-white {
  
}

/* Nested sections within feature-bg-white */
.brands-section,
.alt-section,
.centered-text-section,
.cards-container {
  margin-top: 120px;
  margin-bottom: 120px;
}

/* Remove top margin from first nested section */
.feature-bg-white>.container>.brands-section:first-child,
.feature-bg-white>.container>.alt-section:first-child,
.feature-bg-white>.container>.centered-text-section:first-child,
.feature-bg-white>.container>.cards-container:first-child {
  margin-top: 0;
}

/* Geçiş sayfası stilleri (blok seçimi sonrası içerik taşınacaktır) */

/* Cards Section */
.cards-section {
  position: relative;
  padding: 80px 0;
  background: #ffffff;
  min-height: 600px;
  overflow: hidden;
}

.feature-bg-white {
  background: #ffffff;
}

.cards-section::after {
  content: '';
  position: absolute;
  top: 19%;
  left: 0;
  right: 0;
  width: 100%;
  height: 450px;
  background: transparent;
  z-index: 1;
}

.cards-circle,
.cards-circle-2 {
  position: absolute;
  border-radius: 9999px;
  filter: blur(60px);
  opacity: .25;
  pointer-events: none;
}

.cards-circle {
  width: 320px;
  height: 320px;
  background: transparent;
  top: 300px;
  right: -450px;
}

.cards-circle-2 {
  width: 260px;
  height: 260px;
  background: transparent;
  top: 300px;
  right: 30px;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-title {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
  color: #293056;
}

.cta-button a {
  display: inline-block;
  background: #00D293;
  color: #0b0b0b;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

.cards-container {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 20px;
}

.desktop-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-direction: row;
  position: relative;
  z-index: 2;
}

.cards-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cards-content .cards-title {
  width: 585px;
  color: #293056;
  font-size: 48px;
  font-family: 'DM Sans', system-ui, -apple-system;
  font-weight: 400;
  line-height: 52px;
  letter-spacing: 1.26px;
}

.cards-description {
  color: #293056;
  font-size: 18px;
  font-family: 'Inter', system-ui, -apple-system;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  max-width: 500px;
}

.cards-button a {
  text-decoration: none;
}

.cards-button {
  width: 181px;
  height: 49px;
  padding: 24px 30px;
  background: #001446;
  border-radius: 9px;
  outline: 1.5px rgba(255, 255, 255, 0.5) solid;
  outline-offset: -1.5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.cards-button-text {
  color: #fff;
  font-size: 16px;
  font-family: 'Inter', system-ui, -apple-system;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cards-button-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
}

.cards-grid-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 0fr);
  gap: 12px;
}

.card-item {
  position: relative;
}

.card-item:nth-child(2) {
  top: 80px;
}

.card-item:nth-child(3) {
  top: 30px;
}

.card-item:nth-child(4) {
  top: 10px;
}

.card-item:nth-child(5) {
  top: 90px;
}

.card-item:nth-child(6) {
  top: 40px;
}

.card-inner {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 192px;
  height: 300px;
  overflow: hidden;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all .8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* Mobile 2x3 default, 3x2 when .grid-3x2 on .mobile-layout */
.mobile-layout {
  display: none;
  margin-top: 100px;
  margin-bottom: 100px;
}

.mobile-cards-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}

.mobile-cards-grid .card-item:nth-child(even) {
  margin-top: -30px;
}

.mobile-layout.grid-3x2 .mobile-cards-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 100px;
}

.mobile-cards-content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.mobile-cards-title {
  color: #293056;
  font-size: 32px;
  font-family: 'DM Sans', system-ui, -apple-system;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1px;
  text-align: center;
}

.mobile-cards-description {
  color: #293056;
  font-size: 16px;
  font-family: 'Inter', system-ui, -apple-system;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  text-align: center;
}

.mobile-cards-button {
  width: 160px;
  height: 40px;
  padding: 20px 24px;
  background: #001446;
  border-radius: 9px;
  outline: 1.5px rgba(255, 255, 255, 0.5) solid;
  outline-offset: -1.5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.mobile-cards-button-text a {
  text-decoration: none;
  font-weight: 400;
  color: #fff;
}

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

@media (max-width: 1500px) {
  .desktop-layout {
    display: none;
  }

  .mobile-layout {
    display: block;
  }
}


/* Tablet ve küçük ekranlarda mobil düzeni etkinleştir (demo ile uyumlu) */
@media (max-width: 1500px) {
  .cards-section .desktop-layout {
    display: none !important;
  }

  .cards-section .mobile-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 150px !important;
    align-items: center !important;
  }

  .cards-section {
    padding: 0 !important;
  }

  .cards-section::after {
    display: none !important;
  }

  .mobile-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    max-width: 400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    justify-content: center;
  }

  .mobile-cards-grid .card-item {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
  }
}

@media (max-width: 480px) {
  .cards-container {
    padding: 0 10px !important;
  }

  .mobile-cards-grid .card-inner {
    width: 100% !important;
    max-width: 170px;
    height: 210px !important;
    margin: 0 auto;
  }

  .mobile-cards-grid {
    max-width: 100% !important;
    gap: 10px !important;
  }
}


/* ===== 2x2 GRID (content-wms-neden → content-gecis) ===== */
.on-highlight {
  color: #23F2A1;
}

/* ===== Alternating Media/Text Section ===== */
.alt-section {
  padding: 40px 0 20px;
}

.alt-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.alt-row {
  display: grid;
  grid-template-columns: 500px 1fr;
  align-items: center;
}

.alt-row.reverse {
  grid-template-columns: 1fr 500px;
}

.alt-row.reverse .alt-media {
  order: 2;
}

.alt-row.reverse .alt-content {
  order: 1;
}

.alt-media {
  display: flex;
  justify-content: start;
  align-items: center;
}

.alt-row.reverse .alt-media {
  justify-content: end;
}

.alt-media img {
  width: 350px;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
}

.alt-rect {
  width: 500px;
  height: 650px;
  border-radius: 12px;
  background: #ffffff;
}

.alt-content {
  color: #293056;
}

.alt-title {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  margin: 0 0 12px;
}

.alt-desc {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #293056;
  opacity: .9;
}

@media (max-width: 1200px) {
  .alt-row {
    grid-template-columns: 420px 1fr;
  }

  .alt-row.reverse {
    grid-template-columns: 1fr 420px;
  }

  .alt-rect {
    width: 420px;
    height: 546px;
  }
}

@media (max-width: 900px) {
  .alt-container {
    gap: 60px;
  }

  .alt-row,
  .alt-row.reverse {
    grid-template-columns: 1fr;
  }

  .alt-row.reverse .alt-media,
  .alt-row.reverse .alt-content {
    order: initial;
  }

  .alt-media {
    justify-content: center;
    margin-bottom: 24px;
  }

  .alt-row.reverse .alt-media {
    justify-content: center;
  }

  .alt-media img {
    width: 280px;
  }

  .alt-content {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
  }

  .alt-rect {
    width: 100%;
    max-width: 500px;
    height: 480px;
  }

  .gorusme-section {
    margin-top: 90px;
  }
}

@media (max-width: 480px) {
  .alt-container {
    gap: 40px;
  }

  .alt-title {
    font-size: 18px;
  }

  .alt-desc {
    font-size: 13px;
  }

  .alt-media img {
    width: 220px;
  }

  .alt-rect {
    height: 380px;
  }
}

.grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 80px auto 0 auto;
  max-width: 700px;
  padding: 150px 20px;
}

.grid-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.grid-item:nth-child(odd) {
  align-self: start;
}

.grid-item:nth-child(even) {
  align-self: end;
  margin-top: 45px;
}

/* Flip-card temel stiller */
.flip-card-demo {
  height: 400px;
  width: 300px;
  border-radius: 10px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card-demo:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front-demo,
.flip-card-back-demo {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.flip-card-front-demo {
  color: #333;
  font-size: 24px;
  font-weight: bold;
}

.flip-card-back-demo {
  color: #fff;
  transform: rotateY(180deg);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  top: 0 !important;
  overflow: hidden;
}

/* Grid içi özel düzenlemeler */
.grid-2x2 .flip-card-demo {
  width: 100%;
  height: 100%;
  min-height: 350px;
}

.grid-2x2 .flip-card-front-demo {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.grid-2x2 .flip-card-back-demo {
  color: white;
  padding: 20px;
  text-align: center;
  top: 0 !important;
  overflow: hidden;
}

.grid-2x2 .flip-card-back-demo img {
  display: block !important;
  backface-visibility: visible !important;
  -webkit-backface-visibility: visible !important;
  pointer-events: none !important;
}

/* Arka yüzdeki metin bloğu tıklamayı engellemesin */
.grid-2x2 .flip-card-back-demo>div {
  position: relative;
  z-index: 2;
  padding: 20px;
  border-radius: 10px;
  margin: 20px;
  pointer-events: none;
}

/* Döndükten sonra arka yüz etkileşimli olsun, ön yüz olmasın */
.flip-card-back-demo {
  pointer-events: none;
}

.flip-card-demo:hover .flip-card-back-demo {
  pointer-events: auto;
  z-index: 5;
}

.flip-card-demo:hover .flip-card-front-demo {
  pointer-events: none;
  z-index: 4;
}

/* Hover'da ön yüzdeki overlayleri gizle (tıklanmayı engellemesin) */
.grid-item:hover .on-overlay,
.grid-item:hover .on-overlay-sağ {
  opacity: 0;
}

/* Kart ön yüz overlay yazıları */
.on-overlay,
.on-overlay-sağ {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #293056;
  z-index: 10;
  max-height: 40%;
  overflow: hidden;
  box-sizing: border-box;
}

.on-overlay-sağ {
  transition: all 0.4s ease-in-out;
  transform: translateY(0);
}

.on-overlay-sağ:hover {
  transform: translateY(-5px);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 8px;
}

.on-overlay-sağ .on-title {
  transition: color 0.3s ease-in-out;
}

.on-overlay-sağ:hover .on-title {
  color: #23F2A1;
}

.on-overlay-sağ .on-text {
  transition: opacity 0.3s ease-in-out;
}

.on-overlay-sağ:hover .on-text {
  opacity: 0.9;
}

.on-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
  word-wrap: break-word;
}

.on-text {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
  word-wrap: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Arka yüz buton */
.flip-card-back-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: transparent !important;
  color: transparent !important;
  border: 0 !important;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  min-height: 44px;
  min-width: 140px;
  box-sizing: border-box;
  box-shadow: none !important;
  opacity: 0.01;
  -webkit-tap-highlight-color: transparent;
}

/* Buton mutlaka tıklanabilir kalsın ve 3D stacking'te üste taşınsın */
.flip-card-back-button {
  pointer-events: auto;
  z-index: 100;
  -webkit-transform: translateZ(1px);
  transform: translateZ(1px);
}

/* Touch cihazlar için sınıf bazlı flip desteği */
.flip-card-demo.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-demo.is-flipped .flip-card-back-demo {
  pointer-events: auto;
}

.flip-card-demo.is-flipped .flip-card-front-demo {
  pointer-events: none;
}

.flip-card-back-button:hover {
  background: transparent !important;
  transform: none !important;
  box-shadow: none !important;
  opacity: 0;
}

.flip-card-back-button:active {
  transform: none;
}

.flip-card-back-button:focus {
  outline: none;
}

@media (max-width: 768px) {
  .grid-2x2 {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 60px auto 0 auto;
  }

  .grid-item:nth-child(even) {
    margin-top: 0;
  }

  .on-overlay,
  .on-overlay-sağ {
    padding: 15px;
  }

  .on-title {
    font-size: 16px;
  }

  .on-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .grid-item {
    min-height: 300px !important;
  }

  .flip-card-back-button {
    bottom: 10px;
    right: 10px;
    padding: 10px 14px;
    font-size: 11px;
    min-height: 44px;
    min-width: 120px;
  }
}

/* FAQ Section Styles */
.faq-section {
  padding: 0 20px;
  padding-top: 200px;
  padding-bottom: 0px;
  background: #ffffff;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 150vh;
}

.faq-container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
  justify-content: center;
  flex: 1;
}

.faq-left {
  flex: 0 0 auto;
  min-width: 350px;
  padding-top: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

@media (min-width: 1025px) and (max-width: 1300px) {

  .faq-question::before,
  .faq-question::after {
    right: 10px !important;
    font-size: 36px !important;
  }
}

.faq-main-title {
  color: #293056;
  font-size: 96px;
  font-family: 'Inter', system-ui, -apple-system;
  font-weight: 300;
  line-height: 96px;
  word-wrap: break-word;
}

.faq-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: auto;

}

.faq-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e2e8f0;
  padding: 50px 0;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  margin-bottom: 10px;
  border-radius: 8px;
}


.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  color: #293056;
  font-size: 24px;
  font-family: 'DM Sans', system-ui, -apple-system;
  font-weight: 600;
  line-height: 32px;
  word-wrap: break-word;
  position: relative;
  padding-right: 40px;
  margin-bottom: 20px;
  cursor: pointer;
}

.faq-question::before {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: #00B4D8;
  font-size: 42px;
  font-weight: 300;
  line-height: 32px;
  opacity: 1;
  pointer-events: none;
}

.faq-question::after {
  content: '-';
  position: absolute;
  right: 0;
  top: 0;
  color: #00B4D8;
  font-size: 32px;
  font-weight: 300;
  line-height: 32px;
  opacity: 0;
  pointer-events: none;
}

.faq-item.active .faq-question::before {
  opacity: 0;
}

.faq-item.active .faq-question::after {
  opacity: 1;
}

.faq-answer {
  color: #293056;
  font-size: 18px;
  font-family: 'DM Sans', system-ui, -apple-system;
  font-weight: 400;
  line-height: 28px;
  word-wrap: break-word;
  max-width: 600px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  padding-bottom: 0;
  transition: all 0.3s ease;
  transform: translateY(-10px);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  margin-top: 20px;
  padding-bottom: 20px;
}

/* FAQ Answer Links */
.faq-answer a {

  text-decoration: underline !important;

  cursor: pointer !important;

}

.faq-answer a:hover {

  text-decoration: underline !important;
}

.faq-divider {
  display: none;
}


/* Tablet FAQ Section */
@media (min-width: 768px) and (max-width: 1024px) {
  .faq-section {
    padding: 80px 30px;
    min-height: auto;
  }

  .faq-container {
    flex-direction: column;
    gap: 60px;
    padding: 0;
    flex: 1;
    max-width: 900px;
    width: 100%;
  }

  .faq-left {
    min-width: auto;
    width: 100%;
    text-align: center;
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .faq-right {
    margin: auto !important;
    width: 100%;
  }

  .faq-main-title {
    font-size: 64px !important;
    line-height: 70px !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .faq-question {
    font-size: 22px !important;
    line-height: 30px !important;
    padding-right: 50px !important;
    font-weight: 600 !important;
  }

  .faq-question::before,
  .faq-question::after {
    font-size: 32px !important;
    right: 10px !important;
  }

  .faq-answer {
    font-size: 18px !important;
    line-height: 26px !important;
    max-width: 100% !important;
    transition: all 0.3s ease !important;
  }

  .faq-item.active .faq-answer {
    max-height: 400px !important;
    opacity: 1 !important;
    margin-top: 25px !important;
    padding-bottom: 10px !important;
  }

  .faq-item {
    padding: 30px 25px !important;
    margin-bottom: 15px !important;
    border-radius: 12px !important;
  }

  .faq-item:hover {
    background-color: rgba(0, 180, 216, 0.15) !important;
  }
}

/* Mobile FAQ Section */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 15px;
    min-height: auto;
  }

  .faq-container {
    flex-direction: column;
    gap: 40px;
    padding: 0;
    flex: 1;
  }

  .faq-left {
    min-width: auto;
    width: 100%;
    text-align: center;
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .faq-main-title {
    font-size: 48px !important;
    line-height: 52px !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .faq-question {
    font-size: 20px !important;
    line-height: 26px !important;
    padding-right: 30px !important;
  }

  .faq-question::before,
  .faq-question::after {
    font-size: 34px !important;
  }

  .faq-answer {
    font-size: 16px !important;
    line-height: 24px !important;
    max-width: 100% !important;
  }

  .faq-item.active .faq-answer {
    max-height: 350px !important;
    opacity: 1 !important;
    margin-top: 15px !important;
    padding-bottom: 10px !important;
  }

  .faq-item {
    padding: 25px 0 !important;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 40px 15px;
  }

  .faq-main-title {
    font-size: 36px !important;
    line-height: 40px !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .faq-question {
    font-size: 18px !important;
    line-height: 24px !important;
  }

  .faq-question::before,
  .faq-question::after {
    font-size: 30px !important;
  }

  .faq-answer {
    font-size: 14px !important;
    line-height: 20px !important;
    max-height: 0 !important;
    opacity: 0 !important;
    margin-top: 0 !important;
  }

  .faq-item.active .faq-answer {
    max-height: 250px !important;
    opacity: 1 !important;
    margin-top: 10px !important;
  }

  .faq-item {
    padding: 20px 0 !important;
  }
}

/* Footer Links Section */
.footer-links-section {
  padding: 40px 20px !important;
  background: transparent !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  position: relative !important;
  z-index: 10 !important;
  margin-top: 60px !important;
  margin-bottom: 40px !important;
  flex-shrink: 0 !important;
}

.footer-links-container {
  max-width: 1500px;
  width: 90%;
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-divider {
  width: 100vw;
  height: 1px;
  background: #e2e8f0;
  margin: 0 0 30px 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.footer-links {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 30px !important;
  width: 100% !important;
  max-width: 1500px !important;
  margin: 0 auto !important;
}

.footer-link {
  color: #293056 !important;
  font-size: 12px !important;
  font-family: 'Inter', system-ui, -apple-system !important;
  font-weight: 500 !important;
  line-height: 32px !important;
  word-wrap: break-word !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: color 0.3s ease !important;
  display: block !important;
}

.footer-link:hover {
  color: #00B4D8;
}

/* Footer Links Responsive */

/* Tablet Footer Links */
@media (min-width: 768px) and (max-width: 1024px) {
  .footer-links-section {
    padding: 50px 30px;
    margin-top: 50px !important;
  }

  .footer-links-container {
    padding: 0 30px;
  }

  .footer-divider {
    width: 100vw !important;
  }

  .footer-links {
    justify-content: flex-end;
    gap: 40px;
  }

  .footer-link {
    font-size: 14px !important;
  }
}

/* Mobile Footer Links */
@media (max-width: 768px) {
  .footer-links-section {
    padding: 30px 15px;
    margin-top: 40px !important;
  }

  .footer-links-container {
    padding: 0 15px;
  }

  .footer-divider {
    width: 100vw !important;
  }

  .footer-links {
    justify-content: flex-end;
    gap: 20px;
  }

  .footer-link {
    font-size: 11px !important;
  }
}

@media (max-width: 480px) {
  .footer-links-section {
    padding: 20px 15px;
    margin-top: 30px !important;
  }

  .footer-links-container {
    padding: 0 15px;
  }

  .footer-divider {
    width: 100vw !important;
  }

  .footer-links {
    justify-content: flex-end;
    gap: 15px;
  }

  .footer-link {
    font-size: 11px !important;
  }
}

/* ===== Tanışma Toplantısı Section ===== */
.tanisma-section {
  width: 100%;
  padding: 0;
  margin: 80px 0;
  position: relative;
  min-height: 300px;
}

.tanisma-container {
  margin: 0 auto;
  position: relative;
  min-height: 200px;
  padding: 60px 20px;
}

.tanisma-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.tanisma-person {
  position: absolute;
  left: 40px;
  top: 46%;
  transform: translateY(-50%);
  z-index: 10;
}

.tanisma-person img {
  width: 240px;
  height: auto;
  display: block;
}

.tanisma-person-mobile {
  display: none;
}

.tanisma-content {
  position: relative;
  margin: auto;
  bottom: 10px;
  z-index: 10;
  text-align: center;
  max-width: 500px;
}

.tanisma-title {
  color: #293056;
  font-size: 42px;
  font-family: 'DM Sans', system-ui, -apple-system;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.tanisma-description {
  color: #293056;
  font-size: 18px;
  font-family: 'Inter', system-ui, -apple-system;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 30px 0;
  opacity: 0.85;
}

.tanisma-button {
  display: inline-block;
  background: #293056;
  color: #ffffff;
  padding: 14px 42px;
  border-radius: 9px;
  font-size: 16px;
  font-family: 'Inter', system-ui, -apple-system;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(41, 48, 86, 0.2);
}



/* Responsive Design */
@media (max-width: 1024px) {
  .tanisma-section {
    min-height: 540px;
  }

  .tanisma-container {
    min-height: 350px;
    padding: 40px 20px;
  }

  .tanisma-person {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 100%;
  }

  .tanisma-person img {
    width: 180px;
  }

  .tanisma-content {
    position: relative;
    margin: auto;
    bottom: 10px;
    text-align: center;
    max-width: 450px;
  }

  .tanisma-title {
    font-size: 32px;
  }

  .tanisma-description {
    font-size: 16px;
  }

  .tanisma-button {
    padding: 12px 36px;
    font-size: 15px;
  }

  /* Hide desktop person, show mobile person */
  .tanisma-person {
    display: none;
  }

  .tanisma-person-mobile {
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 75%;
    z-index: 10;
  }

  .tanisma-person-mobile img {
    width: 180px;
    height: auto;
    display: block;
  }
}

/* ===== Pixa Support Section ===== */
.pixa-support-section {
  padding: 120px 0;
  background: #ffffff;
}

.pixa-support-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 20px;
}

.pixa-support-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pixa-support-logo {
  margin-bottom: 30px;
}

.pixa-support-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.pixa-support-title {
  color: #293056;
  font-size: 32px;
  font-family: 'DM Sans', system-ui, -apple-system;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.pixa-support-description {
  color: #293056;
  font-size: 16px;
  font-family: 'Inter', system-ui, -apple-system;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  opacity: 0.85;
}

.pixa-support-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pixa-support-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
}

/* Responsive Design for Pixa Support Section */
@media (max-width: 1024px) {
  .pixa-support-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pixa-support-logo img {
    height: 35px;
  }

  .pixa-support-title {
    font-size: 28px;
  }

  .pixa-support-description {
    font-size: 15px;
  }
}

/* Centered Text Section */
.centered-text-section {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 100px auto;
  padding: 0 20px;
}

.centered-title {
  color: #293056;
  text-align: center;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 50px 0;
}

.centered-description {
  color: #293056;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .centered-title {
    font-size: 32px;
  }

  .centered-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .centered-title {
    font-size: 26px;
  }

  .centered-description {
    font-size: 13px;
  }
}