/* Contact Section - Two Columns */
#contact {
	background:linear-gradient(135deg, #87ceeb 0%, #c9b075 100%);
	padding: 5rem 5%;
	color: white;
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
}

.contact-container h2 {
	color:#3E667D;
	margin-bottom: 3rem;
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	background: rgba(255, 255, 255, 0.95);
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info {
	padding: 2rem;
}

.contact-info h3 {
	color: #3E667D ;
	margin-bottom: 2rem;
	font-size: 1.8rem;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	color: var(--dark);
	padding: 1rem;
	border-radius: 15px;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.info-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(45, 90, 135, 0.1), transparent);
	transition: left 0.5s ease;
}

.info-item:hover {
	background: linear-gradient(135deg, rgba(45, 90, 135, 0.05) 0%, rgba(74, 124, 138, 0.05) 100%);
	transform: translateX(5px);
	box-shadow: 0 5px 20px rgba(45, 90, 135, 0.1);
}

.info-item:hover::before {
	left: 100%;
}

.info-item:hover .info-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 8px 25px rgba(45, 90, 135, 0.3);
}

.info-icon {
	width: 50px;
	height: 50px;
	background: var(--gradient-2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.info-text h4 {
	margin-bottom: 0.25rem;
	color: #3E667D;
}

.info-text p {
	color: #666;
	font-size: 0.95rem;
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}

.social-link {
	width: 40px;
	height: 40px;
	background: var(--gradient-1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.social-link:hover {
	transform: translateY(-3px);
}

.contact-form {
	padding: 2rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--dark);
	font-weight: 500;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid #ddd;
	border-radius: 10px;
	background: white;
	transition: all 0.3s ease;
	font-family: inherit;
	color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	background: white;
}

.submit-btn {
	background: var(--gradient-1);
	color: white;
	padding: 1rem 3rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* === Google Harita Alanı (Genel) === */
.map-container {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
}

/* Harita iframe'ine özel */
.map-container iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 12px;
  display: block;
}

/* === Mobil Görünüm === */
@media (max-width: 768px) {
  .map-container {
    border-radius: 0;
    box-shadow: none;
    margin: 0;
  }

  .map-container iframe {
    height: 300px !important;
    width: 100vw; /* ekranın tamamını kapla */
    border-radius: 0;
  }

  /* Altındaki boşlukları dengeler */
  .contact-section,
  .contact-info {
    padding: 1.5rem 1rem !important;
  }
}
.map-container {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 40px; /* Footer’dan ayrılmasını sağlar */
}

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

/* === MOBİL GÖRÜNÜM (max 768px) === */
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 15px;
  }

  .contact-info {
    padding: 20px;
    margin-bottom: 20px;
  }

  .contact-info h3 {
    font-size: 1.3rem;
  }

  .contact-info p {
    font-size: 0.95rem;
  }

  .map-container {
    margin: 15px 0 40px;
    border-radius: 0;
    box-shadow: none;
  }

  .map-container iframe {
    height: 300px !important;
    width: 100vw;
    border-radius: 0;
  }
