.hero-bg {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
}
/* ====== Contact Section ====== */
.contact-section {
  position: relative;
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
  padding: 60px 0;
  overflow: hidden;
}

/* ====== Waves Animation ====== */
.waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.waves svg {
  width: 100%;
  height: 100%;
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-50px);
  }

  100% {
    transform: translateX(0);
  }
}

#wavePath {
  animation: waveMove 8s ease-in-out infinite;
}

/* ====== Left Panel ====== */
.contact-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.text-primary-gradient {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-desc {
  font-size: 18px;
  color: #001a48;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s forwards;
  animation-delay: 0.2s;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-items .item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #e4edff;
  border-radius: 12px;
  padding: 10px 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-items .item:hover {
  background: #eef5ff;
  border-color: #d3e0ff;
  transform: translateX(4px);
}

/* ---------- İKONLAR ---------- */
.contact-items .item i {
  font-size: 22px;
  color: #2563eb;
  background: rgb(0 80 255 / 18%);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-items .item:hover i {
  background: #2563eb;
  color: #fff;
  transform: scale(1.05) rotate(8deg);
}

/* ---------- METİN ---------- */
.contact-items .item span {
  font-size: 16px;
  color: #334155;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.contact-items .item:hover span {
  color: #1e293b;
}

/* ---------- HAFİF ANİMASYON ---------- */
.contact-items .item {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 0.6s forwards;
}

.contact-items .item:nth-child(1) {
  animation-delay: 0.1s;
}

.contact-items .item:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-items .item:nth-child(3) {
  animation-delay: 0.3s;
}

.contact-items .item:nth-child(4) {
  animation-delay: 0.4s;
}

.contact-badges {
  animation: fadeIn 0.6s forwards;
  transform: translateY(10px);
  animation-delay: 0.6s;
  opacity: 0;
}

.contact-card {
  animation: fadeIn 0.6s forwards;
  transform: translateY(10px);
  animation-delay: 0.8s;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-social {
  display: flex;
  gap: 40px;
  margin-top: 24px;
  justify-content: center;
}

/* --- Ana Buton Stili --- */
.contact-social .social-btn {
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

/* --- Işık Halkası Efekti --- */
.contact-social .social-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* --- Hover Durumu --- */
.contact-social .social-btn:hover {
  transform: translateY(-4px) scale(1.15);
  box-shadow: 0 0 20px rgba(37, 117, 252, 0.3);
}

.contact-social .social-btn:hover::after {
  opacity: 1;
}

/* --- Platform Renkleri (gradient ile) --- */
.contact-social .facebook {
  background: linear-gradient(135deg, #1877f2, #3b82f6);
}

.contact-social .instagram {
  background: linear-gradient(135deg, #fd1d1d, #833ab4, #fcb045);
}

.contact-social .linkedin,
.contact-social .linkedin-box {
  background: linear-gradient(135deg, #0a66c2, #2563eb);
}

.contact-social .twitter {
  background: linear-gradient(135deg, #1da1f2, #60a5fa);
}
.contact-social .youtube {
  background: linear-gradient(135deg, #ff0000, #ff4500);
}
.contact-social .tiktok {
  background: linear-gradient(135deg, #69c9d0, #ee1d52);
}
.contact-social .twitter-x {
  background: linear-gradient(135deg, #000000, #333333);
}
/* --- İkon --- */
.contact-social .social-btn i {
  z-index: 2;
  transition: transform 0.3s ease;
}

.contact-social .social-btn:hover i {
  transform: scale(1.15) rotate(8deg);
}

/* --- Hover’da Hafif Parlama Efekti --- */
.contact-social .social-btn:hover {
  animation: pulseGlow 1.2s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
  }

  100% {
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.5);
  }
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-badges .badge {
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  color: #001a48;
  transition: transform 0.3s ease;
}

.contact-badges .badge:hover {
  transform: translateY(-3px) scale(1.05);
}

.contact-card {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 73px;
}

.form-control:focus {
  box-shadow: none !important;
}

.contact-card p {
  font-size: 25px;
  font-weight: 600;
}

.contact-card a {
  display: block;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  background-color: #2575fc;
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
  margin-top: 13px;
}

.contact-items .item {
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-items .item i {
  font-size: 24px;
  color: #001a48;
  margin-right: 5px;
}

.contact-card .contact-img {
  position: absolute;
  bottom: 0;
  width: 260px;
}

/* ====== Right Panel ====== */
.contact-form-card {
  background: #001a48;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1s forwards;
  animation-delay: 0.5s;
}

.contact-form-card .form-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.contact-form-card .form-desc {
  color: #cbd5e1;
  font-size: 15px;
  margin-bottom: 25px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: start;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
}

.input-wrapper i {
  padding: 10px 12px;
  color: #2575fc;
  font-size: 20px;
  transition: all 0.3s ease;
}

.input-wrapper input,
.input-wrapper textarea {
  border: none;
  outline: none;
  padding: 12px 10px;
  width: 100%;
  background: transparent;
  font-size: 16px;
  color: #001a48;
}

.input-wrapper.textarea textarea {
  resize: none;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  box-shadow: 0 0 0 3px rgba(37, 117, 252, 0.3);
}

.input-wrapper input:focus + i,
.input-wrapper textarea:focus + i {
  color: #6a11cb;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.mini-faq {
  display: flex;
  margin-top: 30px;
  width: 100%;
  justify-content: center;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.mini-faq p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #a5b4fc;
  margin-bottom: 6px;
}

.mini-faq i {
  color: #60a5fa;
  font-size: 16px;
}

/* ====== Animations ====== */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1199px) {
  .mini-faq {
    flex-wrap: wrap;
    gap: 0 60px;
  }

  .contact-card .contact-img {
    width: 220px;
  }

  .contact-card p {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .mini-faq {
    gap: 0 20px;
  }

  .contact-info {
    margin-top: 20px;
  }

  .contact-section {
    padding: 20px 5px;
  }

  .contact-items .item :nth-child(1) {
    flex: 0.15;
  }

  .contact-items .item :nth-child(2) {
    flex: 1;
  }

  .contact-items .item i {
    width: 36px;
    height: 36px;
  }

  .contact-section .row.g-5 {
    --bs-gutter-y: 0;
    --bs-gutter-x: 0;
  }

  .contact-form-card {
    padding: 15px;
  }

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

  .contact-desc {
    font-size: 16px;
  }

  .contact-social {
    justify-content: center;
    gap: 15px;
  }

  .contact-social .social-btn {
    width: 42px;
    height: 42px;
  }

  .map-section iframe {
    height: 300px;
  }
}
