/* ==========================================================================
   İLETİŞİM SAYFASI CSS
   ========================================================================== */

body {
  background-color: #000;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.iletisim-hero {
  position: relative;
  width: 100%;
  background-color: #000;
  padding-top: 250px;
}

/* Sağdan sola doğru kesilme (solda aşağıda, sağda yukarıda) */
.iletisim-hero .hero-img-wrapper {
  position: relative;
  width: 100%;
  height: 700px;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  /* Hem üstten hem alttan eğimli kesik */
}

.iletisim-hero .iletisim-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  display: block;
}

.iletisim-hero .hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.9) 80%,
    #000000 100%
  );
  z-index: 1;
  pointer-events: none;
}

.iletisim-hero-title {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #ffffff;
  font-family: "Joyride 2.0", sans-serif;
  font-size: 100px;
  font-weight: 400;
  line-height: 97px;
  text-align: center;
  margin: 0;
  width: 100%;
  white-space: nowrap;
  letter-spacing: 0;
}

.hero-crown {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

/* Tüm çözünürlüklerde başlık görselin içine girmesin */
@media (max-width: 1200px) {
  .iletisim-hero-title {
    font-size: 60px;
    top: -28px;
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .iletisim-hero-title {
    font-size: 50px;
    top: -32px;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .iletisim-hero {
    padding-top: 280px;
  }

  .iletisim-hero-title {
    font-size: 40px;
    top: -48px;
    transform: translateX(-50%);
  }

  .iletisim-hero .hero-img-wrapper {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  }
}

@media (max-width: 576px) {
  .iletisim-hero {
    padding-top: 260px;
  }

  .iletisim-hero-title {
    font-size: 32px;
    top: -40px;
    transform: translateX(-50%);
  }

  .iletisim-hero .iletisim-hero-img {
    min-height: 350px;
  }
}

/* ==========================================================================
   2. İLETİŞİM FORM SECTION
   ========================================================================== */
.iletisim-form-section {
  margin-top: 150px;
  background-color: #000;
}

.custom-form-container {
  max-width: 1288px;
}

.contact-form .form-label {
  font-family: "Joyride 2.0", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.contact-input {
  background-color: #1a1a1a !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 15px 20px !important;
  color: #fff !important;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.contact-input:focus {
  background-color: #222 !important;
  box-shadow: none !important;
  outline: 1px solid #ffce00 !important;
}

textarea.contact-input {
  min-height: 300px;
}

.btn-gonder {
  background-color: #ffce00 !important;
  border: none !important;
  border-radius: 0 !important;
  color: #000 !important;
  font-family: "Joyride 2.0", sans-serif;
  font-weight: 400;
  font-size: 20px;
  padding: 20px !important;
  transition: all 0.3s ease !important;
  margin-top: 20px;
}

.btn-gonder:hover {
  background-color: #e6b800 !important;
  transform: translateY(-2px);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
  .contact-form .form-label {
    font-size: 16px;
  }

  .btn-gonder {
    font-size: 18px;
    padding: 15px !important;
  }
}

/* ==========================================================================
   3. İLETİŞİM BİLGİ KARTLARI SECTION
   ========================================================================== */
.iletisim-info-section {
  background-color: #000;
  padding-bottom: 100px;
  margin-bottom: 100px;
  margin-top: 100px;
}

.info-cards-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
}

.info-card {
  position: relative;
  height: 229px;
  background: #1e1e1e;
  text-align: center;
  border-radius: 0;
  flex-shrink: 0;
}

.info-icon {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.info-title {
  position: absolute;
  top: 104px;
  width: 100%;
  left: 0;
  font-family: "Joyride 2.0", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  color: #ffce00;
  margin: 0;
}

.info-text {
  position: absolute;
  top: 148px;
  width: 297px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Joyride 2.0", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #888888;
  margin: 0;
}

/* Responsive Düzenlemeler */
@media (max-width: 1250px) {
  .info-cards-wrapper {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .info-card {
    width: 100%;
  }
}

.sm-content-wrapper {
  position: relative;
  width: 100%;
  max-width: 1550px;
  height: 100%;
}

.sm-center-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  background-color: transparent;
  width: 251px;
  height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.sm-text {
  font-family: "Joyride 2.0", sans-serif;
  font-weight: 400;
  font-size: 38px;
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.sm-icon {
  margin: 15px 0;
}

.sm-img {
  position: absolute;
  width: clamp(240px, 18vw, 320px);
  height: 350px;
  object-fit: contain;

  transition: transform 0.3s ease;
  z-index: 5;
  border-radius: 4px;
}

.sm-img:hover {
  transform: scale(1.05) !important;
  z-index: 15;
}

.sm-img-1 {
  top: 100px;
  left: 200px;
  transform: rotate(-12deg);
}

.sm-img-2 {
  top: 100px;
  right: 200px;
  transform: rotate(10deg);
}

.sm-img-3 {
  bottom: 100px;
  left: 250px;
  transform: rotate(5deg);
}

.sm-img-4 {
  bottom: 100px;
  right: 250px;
  transform: rotate(-12deg);
}

@media (max-width: 1200px) {
  .sm-img {
    width: 260px;
  }

  .sm-img-1 {
    left: 5%;
  }

  .sm-img-2 {
    right: 5%;
  }

  .sm-img-3 {
    left: 5%;
  }

  .sm-img-4 {
    right: 5%;
  }
}

@media (max-width: 991px) {
  .sosyal-medya-section {
    height: auto;
    padding: 80px 0;
  }

  .sm-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .sm-center-box {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 40px 0;
    order: 1;
  }

  .sm-img {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 60%;
    margin-bottom: 30px;
  }

  .sm-img-1 {
    order: 2;
  }

  .sm-img-2 {
    order: 3;
  }

  .sm-img-3 {
    order: 4;
  }

  .sm-img-4 {
    order: 5;
  }
}

@media (max-width: 576px) {
  .sm-img {
    width: 90%;
  }
}
