.contact-page-hero {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background:
    url("../../images/yeniekledigimfotolar/sayfasliders/iletisim-sayfasi.webp") center/cover no-repeat;
}

.contact-page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 20px;
}

.contact-page-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 16px;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.9px;
  margin-bottom: 10px;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(6, 16, 31, 0.12);
}

.contact-page-badge::before {
  content: "";
  position: absolute;
  inset: -35% auto -35% -42%;
  width: 38%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.12) 30%,
    rgba(255, 255, 255, 0.72) 50%,
    rgba(255, 255, 255, 0.14) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-24deg);
  animation: fides-btn-sheen 2.8s ease-in-out infinite;
  pointer-events: none;
}

.contact-page-hero h1 {
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}

.contact-page-hero p {
  margin: 0 auto;
  max-width: 720px;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.94);
}

.contact-page-section {
  padding: 24px 0 0;
  margin-bottom: 0;
  background: #ffffff;
}

.contact-page-section .container {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.contact-page-shell {
  margin: 0 auto;
  width: 100%;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.contact-page-intro {
  max-width: none;
  margin: 0;
  padding: 22px 56px 14px;
  text-align: center;
  border-bottom: 1px solid rgba(19, 98, 171, 0.08);
}

.contact-page-intro h2 {
  margin: 0 0 10px;
  font-size: 34px;
  color: #243040;
}

.contact-page-intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: #5f6b7a;
}

.contact-page-board .contact-modern-wrap {
  margin: 0 !important;
  padding: 22px 123px 2px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.contact-page-feedback {
  margin: 0 56px 8px;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  border: 1px solid transparent;
}

.contact-page-feedback.is-success {
  color: #135f2b;
  background: #edf9f0;
  border-color: #bfe5c8;
}

.contact-page-feedback.is-error {
  color: #8a2130;
  background: #fff1f3;
  border-color: #f2c2ca;
}

.contact-page-board .contact-info-area {
  border-left: 1px solid #e6edf6;
  padding-left: 10px;
}

.contact-social-list a {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 0 0 0 rgba(18, 35, 58, 0);
  animation: contactSocialHighlight 5.6s ease-in-out infinite;
}

.contact-social-list a::before {
  content: "";
  position: absolute;
  inset: -35% auto -35% -42%;
  width: 38%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.12) 30%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.14) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-24deg);
  opacity: 0;
  animation: contactSocialSheen 5.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.contact-social-list a i {
  position: relative;
  z-index: 1;
}

.contact-social-list a::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(18, 35, 58, 0.28);
  opacity: 0;
  transform: scale(0.82);
  animation: contactSocialRing 5.6s ease-in-out infinite;
  pointer-events: none;
}

.contact-social-list a:nth-child(2),
.contact-social-list a:nth-child(2)::before,
.contact-social-list a:nth-child(2)::after {
  animation-delay: 1.4s;
}

.contact-social-list a:nth-child(3),
.contact-social-list a:nth-child(3)::before,
.contact-social-list a:nth-child(3)::after {
  animation-delay: 2.8s;
}

.contact-social-list a:nth-child(4),
.contact-social-list a:nth-child(4)::before,
.contact-social-list a:nth-child(4)::after {
  animation-delay: 4.2s;
}

.contact-social-list:hover a,
.contact-social-list:hover a::before,
.contact-social-list:hover a::after {
  animation-play-state: paused;
}

@keyframes contactSocialHighlight {
  0%,
  16%,
  100% {
    background: #f7f7f7;
    color: #12233a;
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(18, 35, 58, 0);
  }

  5%,
  11% {
    background: linear-gradient(135deg, #12233a 0%, #1a3150 55%, #24446f 100%);
    color: #fff;
    transform: translateY(-4px) scale(1.08);
    box-shadow:
      0 14px 28px rgba(18, 35, 58, 0.3),
      0 0 26px rgba(96, 162, 240, 0.22);
  }
}

@keyframes contactSocialSheen {
  0%,
  4%,
  12%,
  16%,
  100% {
    left: -42%;
    opacity: 0;
  }

  6% {
    opacity: 0.95;
  }

  11% {
    left: 118%;
    opacity: 0;
  }
}

@keyframes contactSocialRing {
  0%,
  16%,
  100% {
    opacity: 0;
    transform: scale(0.82);
  }

  5%,
  11% {
    opacity: 1;
    transform: scale(1.14);
  }
}

.project-field input,
.project-field textarea {
  border: 2px solid rgba(31, 93, 153, 0.22);
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.project-field input:hover,
.project-field textarea:hover {
  border-color: rgba(31, 93, 153, 0.34);
}

.project-field input:focus,
.project-field textarea:focus {
  border-color: #2f6dac;
  box-shadow:
    0 0 0 4px rgba(47, 109, 172, 0.10),
    inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.project-request-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  margin: 12px 0 0;
  padding: 0 28px;
  border: 1px solid rgba(96, 162, 240, 0.34);
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #12233a 0%, #1a3150 55%, #24446f 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(18, 35, 58, 0.22);
  transition: all 0.3s ease;
}

.project-request-btn::before {
  content: "";
  position: absolute;
  inset: -35% auto -35% -42%;
  width: 38%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.12) 30%,
    rgba(255, 255, 255, 0.70) 50%,
    rgba(255, 255, 255, 0.14) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-24deg);
  animation: fides-btn-sheen 2.8s ease-in-out infinite;
  pointer-events: none;
}

.project-request-btn:hover {
  background: linear-gradient(135deg, #163154 0%, #2b4f85 60%, #3d6da8 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(19, 98, 171, 0.28);
}

.project-request-btn i,
.project-request-btn span {
  position: relative;
  z-index: 1;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-page-map {
  margin: 4px 0 0;
  line-height: 0;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.contact-page-section + #footer,
.contact-page-section + footer {
  margin-top: 0 !important;
}

.contact-page-map iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}

[data-contact-reveal] {
  opacity: 0;
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--contact-reveal-delay, 0s);
  will-change: opacity, transform;
}

[data-contact-reveal="up"] {
  transform: translate3d(0, 44px, 0);
}

[data-contact-reveal="left"] {
  transform: translate3d(-54px, 0, 0);
}

[data-contact-reveal="right"] {
  transform: translate3d(54px, 0, 0);
}

[data-contact-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 991.98px) {
  .contact-page-hero {
    min-height: 220px;
  }

  .contact-page-hero h1 {
    font-size: 31px;
  }

  .contact-page-board .contact-modern-wrap {
    padding: 14px 34px 2px;
  }

  .contact-page-intro {
    padding: 18px 34px 12px;
  }

  .contact-page-feedback {
    margin: 0 34px 8px;
  }

  .contact-page-board .contact-info-area {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 767.98px) {
  .contact-page-hero {
    min-height: 190px;
  }

  .contact-page-hero h1 {
    font-size: 22px;
    line-height: 1.22;
  }

  .contact-page-hero p {
    font-size: 13px;
    line-height: 1.65;
  }

  .contact-page-section {
    padding: 16px 0 0;
  }

  .contact-page-intro {
    padding: 16px 26px 10px;
  }

  .contact-page-intro h2 {
    font-size: 27px;
  }

  .contact-page-intro p {
    font-size: 14px;
    line-height: 1.8;
  }

  .contact-page-board .contact-modern-wrap {
    padding: 10px 26px 2px;
    border-radius: 0;
  }

  .contact-page-feedback {
    margin: 0 26px 10px;
  }

  .contact-page-map {
    border-radius: 0;
  }

  .contact-page-map iframe {
    height: 220px;
  }
}
