/* İletişim Sayfası Modern Tasarım */

/* Ana layout */
.contact-main {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(37, 37, 37, 1) 0%, rgba(25, 25, 25, 1) 100%);
  padding: 2rem 0;
}

/* Hero Section */
.contact-hero {
  text-align: center;
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.contact-hero__title {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 1) 0%, rgba(255, 0, 0, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.contact-hero__subtitle {
  font-size: 1.3rem;
  color: rgba(175, 175, 175, 1);
  margin: 0;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

@keyframes titleGlow {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.2); }
}

/* İletişim Bilgileri */
.contact-info {
  background: linear-gradient(145deg, rgba(45, 45, 45, 1) 0%, rgba(35, 35, 35, 1) 100%);
  border-radius: 25px;
  padding: 3rem;
  border: 2px solid rgba(65, 65, 65, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-info__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-info__title {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info__subtitle {
  color: rgba(175, 175, 175, 1);
  margin: 0;
  font-size: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex-grow: 1;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem;
  background: rgba(25, 25, 25, 0.5);
  border-radius: 12px;
  border: 2px solid rgba(65, 65, 65, 0.3);
  transition: all 0.3s ease;
}

.contact-item--highlight {
  border-color: rgba(255, 0, 0, 0.5);
  background: rgba(255, 0, 0, 0.1);
}

.contact-item:hover {
  transform: translateX(10px);
  border-color: rgba(255, 0, 0, 0.8);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

.contact-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, rgba(255, 0, 0, 1) 0%, rgba(175, 4, 4, 1) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 1);
  stroke-width: 2;
}

.contact-item:hover .contact-item__icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.contact-item__content {
  flex-grow: 1;
}

.contact-item__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(175, 175, 175, 1);
  margin: 0 0 0.2rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.3;
}

.contact-item__value:hover {
  color: rgba(255, 0, 0, 1);
}

.contact-item--highlight .contact-item__value {
  color: rgba(255, 0, 0, 1);
}

/* Tıklanabilir İletişim Kutuları */
.contact-item--clickable {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-item--clickable:hover {
  transform: translateX(15px);
  border-color: rgba(255, 0, 0, 1);
  box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

.contact-item--clickable .contact-item__value {
  color: rgba(255, 255, 255, 1);
}

.contact-item--clickable:hover .contact-item__value {
  color: rgba(255, 0, 0, 1);
}

.contact-item--clickable.contact-item--highlight .contact-item__value {
  color: rgba(255, 0, 0, 1);
}

.contact-item--clickable:hover .contact-item__icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
}

/* Çalışma Saatleri */
.contact-item--hours {
  border: 2px solid rgba(255, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.8) 0%, rgba(35, 35, 35, 0.9) 100%);
}

.contact-item__hours {
  margin-top: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(65, 65, 65, 0.3);
}

.hours-row:last-child {
  border-bottom: none;
}

.day {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(200, 200, 200, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.time {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 0, 0, 1);
  text-align: right;
}

/* İçerik Layout */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: stretch;
}

/* Modern Form */
.contact-form {
  background: linear-gradient(145deg, rgba(45, 45, 45, 1) 0%, rgba(35, 35, 35, 1) 100%);
  border-radius: 25px;
  padding: 3rem;
  border: 2px solid rgba(65, 65, 65, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-form__title {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form__subtitle {
  color: rgba(175, 175, 175, 1);
  margin: 0;
  font-size: 1rem;
}

.modern-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex-grow: 1;
}

.modern-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 0;
}

.modern-form__group {
  position: relative;
  margin-bottom: 0;
}

.modern-form__input {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid rgba(65, 65, 65, 0.5);
  border-radius: 15px;
  background: rgba(25, 25, 25, 0.8);
  color: rgba(255, 255, 255, 1);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  outline: none;
}

.modern-form__input:focus {
  border-color: rgba(255, 0, 0, 1);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  transform: translateY(-2px);
}

.modern-form__input:focus + .modern-form__label,
.modern-form__input:not(:placeholder-shown) + .modern-form__label {
  transform: translateY(-2.5rem) scale(0.85);
  color: rgba(255, 0, 0, 1);
  background: rgba(35, 35, 35, 1);
  padding: 0 0.5rem;
}

.modern-form__label {
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  color: rgba(175, 175, 175, 1);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  transform-origin: left top;
}

.modern-form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkbox Stilleri */
.modern-form__checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0;
  padding: 0.8rem;
  background: rgba(25, 25, 25, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(65, 65, 65, 0.3);
}

.modern-form__checkbox {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 0, 0, 0.6);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.modern-form__checkbox:checked {
  background: linear-gradient(45deg, rgba(255, 0, 0, 1) 0%, rgba(175, 4, 4, 1) 100%);
  border-color: rgba(255, 0, 0, 1);
}

.modern-form__checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-weight: bold;
}

.modern-form__checkbox:hover {
  border-color: rgba(255, 0, 0, 1);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.modern-form__checkbox-label {
  font-size: 0.9rem;
  color: rgba(200, 200, 200, 1);
  line-height: 1.4;
  cursor: pointer;
  flex-grow: 1;
}

.kvkk-link {
  color: rgba(255, 0, 0, 1);
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.3s ease;
}

.kvkk-link:hover {
  color: rgba(175, 4, 4, 1);
  text-decoration: none;
}

.modern-form__submit {
  width: 100%;
  background: linear-gradient(45deg, rgba(255, 0, 0, 1) 0%, rgba(175, 4, 4, 1) 100%);
  border: none;
  border-radius: 15px;
  padding: 1.3rem 2rem;
  color: rgba(255, 255, 255, 1);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.modern-form__submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.modern-form__submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
}

.modern-form__submit:hover::before {
  left: 100%;
}

.modern-form__arrow {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.modern-form__submit:hover .modern-form__arrow {
  transform: translateX(5px);
}

.modern-form__error {
  color: rgba(255, 100, 100, 1);
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

/* Harita Section */
.map-section {
  margin-top: 4rem;
}

.map-header {
  text-align: center;
  margin-bottom: 2rem;
}

.map-title {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.map-subtitle {
  color: rgba(175, 175, 175, 1);
  margin: 0;
  font-size: 1rem;
}

.map-container {
  flex-grow: 1;
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid rgba(65, 65, 65, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  min-height: 400px;
  transition: all 0.3s ease;
}

.map-container:hover {
  border-color: rgba(255, 0, 0, 0.5);
  box-shadow: 0 25px 50px rgba(255, 0, 0, 0.2);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 400px;
  display: block;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info {
    padding: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .modern-form__row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .contact-hero__title {
    font-size: 2.5rem;
  }
  
  .contact-info {
    padding: 1.5rem;
  }
  
  .contact-details {
    gap: 1rem;
  }
  
  .contact-item {
    padding: 0.8rem;
    gap: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-form__title {
    font-size: 1.8rem;
  }
  
  .map-iframe {
    min-height: 400px;
    height: 400px;
  }
  
  .map-container {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 2rem 0;
  }
  
  .contact-hero__title {
    font-size: 2rem;
  }
  
  .contact-info {
    padding: 1.2rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .contact-item--hours {
    flex-direction: column;
    text-align: left;
  }
  
  .hours-row {
    flex-direction: column;
    text-align: center;
    gap: 0.2rem;
  }
  
  .time {
    text-align: center;
  }
  
  .contact-item__icon {
    width: 35px;
    height: 35px;
  }
  
  .contact-item__icon svg {
    width: 18px;
    height: 18px;
  }
  
  .contact-form {
    padding: 1.2rem;
  }
  
  .modern-form__checkbox-group {
    padding: 0.6rem;
    gap: 0.5rem;
  }
  
  .modern-form__checkbox-label {
    font-size: 0.85rem;
  }
  
  .map-iframe {
    min-height: 350px;
    height: 350px;
    max-height: 350px;
  }
  
  .map-container {
    height: 350px;
    overflow: hidden;
    min-height: 350px;
  }
  
  .map-section {
    margin-top: 2rem;
  }
}

/* Container override */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
