* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  overflow-y: auto;
}

.container {
  background: linear-gradient(135deg, #2c4a3d 0%, #1a2f21 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px;
  width: 100%;
  max-width: 100%;
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  z-index: 2;
  position: relative;
}

/* Sol Taraf - İçerik */
.left-content {
  padding: 40px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
}

.sub-title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
}

.orange-text {
  color: #e67e22;
  line-height: 1.3;
}

.white-text {
  color: #ffffff;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 10px 10px;
  margin: 10px 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.highlight-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.subtitle {
  color: #e67e22;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 25px;
}

.description {
  color: white;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
}

.buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-primary {
  background: #e67e22;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #d35400;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: white;
  color: #2c4a3d;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  align-items: flex-start;
  gap: 12px;
  color: white;
  font-size: 1rem;
}

.checkmark {
  color: #e67e22;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 2px;
}

/* Sağ Taraf - Form */
.right-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.form-title {
  color: #2c4a3d;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.form-subtitle {
  color: #e67e22;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

.form-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: center;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  background-color: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
  min-height: 54px;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: #e67e22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
  transform: translateY(-1px);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #999;
  font-weight: 400;
}

.lead-form textarea {
  resize: vertical;
  grid-column: 1 / -1;
  min-height: 120px;
  font-family: "Inter", sans-serif;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
}

.checkbox-container input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

.checkbox-container label {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.privacy-text {
  color: #e67e22;
  text-decoration: underline;
}

.submit-btn {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: white;
  border: none;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  min-height: 54px;
  width: 100%;
  font-family: "Inter", sans-serif;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #d35400 0%, #c0392b 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Dekoratif Elementler */
.decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.decoration-1 {
  width: 300px;
  height: 300px;
  background: #e67e22;
  top: -150px;
  right: -100px;
  z-index: 1;
}

.decoration-2 {
  width: 200px;
  height: 200px;
  background: #e67e22;
  bottom: -100px;
  left: -50px;
  z-index: 1;
}

.decoration-3 {
  width: 150px;
  height: 150px;
  background: white;
  top: 50%;
  right: 20%;
  z-index: 1;
}

/* Başarı Mesajı */
.success-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.success-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  margin: 20px;
}

.success-content h3 {
  color: #27ae60;
  font-size: 2rem;
  margin-bottom: 15px;
}

.success-content p {
  color: #666;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.btn-close {
  background: #e67e22;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-close:hover {
  background: #d35400;
}

/* Mobil Sabit Buton */
.mobile-fixed-button {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: none;
}

.mobile-btn {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 200px;
  justify-content: center;
}

.mobile-btn:hover {
  background: linear-gradient(135deg, #d35400 0%, #c0392b 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(230, 126, 34, 0.5);
}

.mobile-btn:active {
  transform: translateY(0);
}

/* Yönetim Ekibi Bölümü */
.management-team {
  background: #f8f9fa;
  padding: 80px 20px;
  margin-top: 0;
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
}

.team-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #2c4a3d;
  margin-bottom: 60px;
  position: relative;
}

.team-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  margin: 20px auto 0;
  border-radius: 2px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
}

.team-member {
  background: white;
  border-radius: 20px;
  padding: 40px 30px 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-width: 350px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.team-member::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.member-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
}

.team-member:hover .member-photo {
  border-color: #e67e22;
  transform: scale(1.05);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.team-member:hover .member-photo img {
  transform: scale(1.1);
}

.member-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c4a3d;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.team-member:hover .member-name {
  color: #e67e22;
}

.member-title {
  color: #666;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .content-wrapper {
    gap: 40px;
  }

  .main-title {
    font-size: 3rem;
  }

  .sub-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .left-content {
    padding: 20px;
    order: 1;
  }

  .right-content {
    order: 2;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .sub-title {
    font-size: 1.6rem;
  }

  .buttons {
    justify-content: center;
  }

  /* Yönetim Ekibi Tablet */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    overflow-y: auto !important;
  }

  .container {
    padding: 10px;
    min-height: auto;
    align-items: flex-start;
  }

  .content-wrapper {
    gap: 30px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .left-content {
    padding: 15px;
    max-width: calc(100vw - 30px);
    width: 100%;
    box-sizing: border-box;
  }

  .form-container {
    padding: 20px 15px;
    max-width: calc(100vw - 30px);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .lead-form input,
  .lead-form textarea {
    padding: 14px 16px;
    font-size: 16px;
    min-height: 50px;
  }

  .lead-form textarea {
    min-height: 100px;
  }

  .submit-btn {
    padding: 14px 16px;
    min-height: 50px;
    font-size: 1rem;
  }

  /* Mobil Sabit Buton Göster */
  .mobile-fixed-button {
    display: block;
  }

  .mobile-btn {
    padding: 14px 28px;
    font-size: 1rem;
    min-width: 180px;
  }

  .main-title {
    font-size: 2rem;
  }

  .sub-title {
    font-size: 1.4rem;
  }

  .highlight-box {
    padding: 16px 20px;
    font-size: 1rem;
    margin: 15px 0;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary,
  .btn-whatsapp {
    width: 100%;
    max-width: 300px;
  }

  /* Yönetim Ekibi Mobil */
  .management-team {
    padding: 40px 10px;
    width: 100%;
    max-width: 100%;
  }

  .team-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  .team-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-member {
    max-width: 100%;
    padding: 30px 20px 25px;
  }

  .member-photo {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
  }

  .member-name {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  body {
    overflow-x: hidden;
    overflow-y: auto !important;
  }

  .container {
    min-height: auto;
    align-items: flex-start;
  }

  .form-container {
    padding: 20px 15px;
    max-width: calc(100vw - 30px);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .form-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .main-title {
    font-size: 2.9rem;
  }

  .sub-title {
    font-size: 1.6rem;
  }

  .highlight-box {
    padding: 14px 18px;
    font-size: 1.2rem;
    margin: 12px 0;
  }

  .left-content {
    padding: 15px;
    max-width: calc(100vw - 30px);
    width: 100%;
    box-sizing: border-box;
  }
}

/* iPhone özel düzenlemeler */
@media only screen and (device-width: 393px) and (device-height: 852px) and (-webkit-device-pixel-ratio: 3) {
  body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }
}
