/* Contact Hero Section */
.contact-hero {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("img/hakkimizda.png") center center no-repeat;
  background-size: cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(58, 40, 21, 0.85),
    rgba(212, 175, 55, 0.3)
  );
  z-index: 1;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* İletişim Bilgileri Section */
.contact-info-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.95);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.info-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f4e5b0);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37, #f4e5b0);
  border-radius: 50%;
  color: #3a2815;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.info-icon svg {
  width: 32px;
  height: 32px;
}

.info-card h3 {
  font-size: 20px;
  color: #3a2815;
  margin-bottom: 15px;
  font-weight: 600;
}

.info-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

.info-card a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: #d4af37;
}

/* İletişim Formu Section */
.contact-form-section {
  padding: 80px 0;
  background: rgba(248, 248, 248, 0.95);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.form-container h2,
.map-container h2 {
  font-size: 32px;
  color: #3a2815;
  margin-bottom: 15px;
  font-weight: 600;
}

.form-description {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #3a2815;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(135deg, #d4af37, #f4e5b0);
  color: #3a2815;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.submit-button svg {
  width: 20px;
  height: 20px;
}

.submit-button:hover {
  background: linear-gradient(135deg, #f4e5b0, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.submit-button:active {
  transform: translateY(0);
}

/* Harita Container */
.map-container {
  position: sticky;
  top: 90px;
}

.map-wrapper {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.map-wrapper iframe {
  display: block;
}

.map-info {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-info p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

.map-info p strong {
  color: #3a2815;
  font-weight: 600;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #d4af37, #f4e5b0);
  color: #3a2815;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.directions-btn svg {
  width: 18px;
  height: 18px;
}

.directions-btn:hover {
  background: linear-gradient(135deg, #f4e5b0, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Sosyal Medya Section */
.social-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(58, 40, 21, 0.9),
    rgba(212, 175, 55, 0.8)
  );
  position: relative;
  overflow: hidden;
}

.social-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/background.png") center center;
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.social-section .container {
  position: relative;
  z-index: 1;
}

.social-content {
  text-align: center;
  color: white;
}

.social-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 600;
}

.social-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links .social-link {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  position: relative;
}

.social-links .social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f4e5b0);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.social-links .social-link:hover::before {
  opacity: 1;
}

.social-links .social-link:hover {
  color: #3a2815;
  transform: translateY(-5px) scale(1.1);
}

.social-links .social-link svg {
  width: 28px;
  height: 28px;
}

/* Success Message */
.success-message {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 12px;
  animation: slideDown 0.3s ease;
}

.success-message.show {
  display: flex;
}

.success-message svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .contact-hero {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-container {
    position: static;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    height: 250px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .contact-info-section,
  .contact-form-section,
  .social-section {
    padding: 60px 0;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .social-content h2 {
    font-size: 28px;
  }

  .social-content p {
    font-size: 16px;
  }

  .social-links {
    gap: 15px;
  }

  .social-links .social-link {
    width: 50px;
    height: 50px;
  }

  .social-links .social-link svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .info-card {
    padding: 30px 20px;
  }

  .form-container h2,
  .map-container h2 {
    font-size: 24px;
  }

  .map-wrapper {
    height: 300px;
  }

  .social-content h2 {
    font-size: 24px;
  }
}
