/*---------------------------------------
  İLETİŞİM - BAŞLANGIÇ              
-----------------------------------------*/

/* Addresses List in Contact Info */
.addresses-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.address-item {
  padding: 10px 0;
  border-left: 3px solid var(--primary-color);
  padding-left: 15px;
  background: rgba(25, 178, 192, 0.05);
  border-radius: 5px;
  padding: 12px 15px;
}

.address-item strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Addresses Section */
.addresses-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.addresses-header-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(25, 178, 192, 0.3);
}

.addresses-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.addresses-header p {
  font-size: 1.1rem;
  color: var(--p-color);
  margin: 0;
}

/* Location Cards */
.location-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.location-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.location-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 8px 25px rgba(25, 178, 192, 0.3);
}

.education-icon {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  box-shadow: 0 8px 25px rgba(25, 178, 192, 0.3);
}

.location-header h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.location-badge {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.education-badge {
  background: linear-gradient(45deg, #667eea, #764ba2);
}

.location-address {
  margin-bottom: 20px;
  text-align: center;
}

.location-address p {
  color: var(--p-color);
  margin: 0;
  line-height: 1.6;
}

.location-address i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.location-map {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.location-map iframe {
  border-radius: 15px;
}

.location-actions {
  text-align: center;
  margin-top: auto;
}

.location-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(25, 178, 192, 0.3);
}

.location-directions-btn:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(25, 178, 192, 0.4);
}

/* Responsive Design for Addresses */
@media (max-width: 768px) {
  .addresses-section {
    padding: 30px 20px;
  }
  
  .addresses-header h2 {
    font-size: 2rem;
  }
  
  .addresses-header-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .location-card {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .location-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .location-header h4 {
    font-size: 1.2rem;
  }
  
  .location-map {
    height: 200px;
  }
  
  .location-map iframe {
    height: 200px;
  }
  
  .addresses-list {
    gap: 12px;
  }
  
  .address-item {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

/*---------------------------------------
  NAVBAR ACTIVE STATE - BAŞLANGIÇ              
-----------------------------------------*/
.dropdown-item.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white-color) !important;
}
/*---------------------------------------
  NAVBAR ACTIVE STATE - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  MOBILE NAVBAR STYLES - BAŞLANGIÇ              
-----------------------------------------*/
@media (max-width: 991.98px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }
}
/*---------------------------------------
  MOBILE NAVBAR STYLES - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  SECTION HEADER - BAŞLANGIÇ              
-----------------------------------------*/
.section-header {
  position: relative;
}

.section-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.2;
  margin-bottom: 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/*---------------------------------------
  SECTION HEADER - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  CONTACT INFO CARDS - BAŞLANGIÇ              
-----------------------------------------*/
.contact-info-card,
.company-info-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
  border: 1px solid rgba(25, 178, 192, 0.1);
  transition: all 0.3s ease;
}

.contact-info-card:hover,
.company-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 2rem 3rem rgba(25, 178, 192, 0.2);
}
/*---------------------------------------
  CONTACT INFO CARDS - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  CARD HEADERS - BAŞLANGIÇ              
-----------------------------------------*/
.contact-header,
.company-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(25, 178, 192, 0.1);
}

.contact-header-icon,
.company-header-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 15px auto;
}

.contact-header h2,
.company-header h2 {
  color: var(--primary-color);
  margin-bottom: 0;
  font-size: 1.5rem;
}
/*---------------------------------------
  CARD HEADERS - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  CONTACT ITEMS - BAŞLANGIÇ              
-----------------------------------------*/
.contact-item {
  display: flex;
  align-items: start;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(25, 178, 192, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(25, 178, 192, 0.1);
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(25, 178, 192, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.contact-details h5 {
  color: var(--dark-color);
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-details p {
  margin-bottom: 0;
  color: var(--p-color);
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  color: var(--secondary-color);
}
/*---------------------------------------
  CONTACT ITEMS - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  SOCIAL MEDIA SECTION - BAŞLANGIÇ              
-----------------------------------------*/
.social-media-section {
  background: rgba(25, 178, 192, 0.05);
  border-radius: 15px;
  padding: 20px;
  border-left: 4px solid var(--primary-color);
}

.social-media-section h5 {
  color: var(--primary-color);
  font-weight: 600;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: var(--white-color);
  border-radius: 25px;
  text-decoration: none;
  color: var(--dark-color);
  box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.1);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.social-link i {
  margin-right: 8px;
  font-size: 1.1rem;
}
/*---------------------------------------
  SOCIAL MEDIA SECTION - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  COMPANY DETAILS - BAŞLANGIÇ              
-----------------------------------------*/
.company-detail {
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(25, 178, 192, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.company-detail:hover {
  background: rgba(25, 178, 192, 0.1);
  transform: translateX(5px);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 15px;
}

.detail-label {
  font-weight: 600;
  color: var(--dark-color);
  flex: 0 0 45%;
  font-size: 0.95rem;
}

.detail-value {
  color: var(--p-color);
  flex: 1;
  text-align: right;
  font-size: 0.95rem;
  word-break: break-word;
  font-weight: 500;
}
/*---------------------------------------
  COMPANY DETAILS - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  MAP SECTION - BAŞLANGIÇ              
-----------------------------------------*/
.map-section {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
  border: 1px solid rgba(25, 178, 192, 0.1);
  transition: all 0.3s ease;
}

.map-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 2rem 3rem rgba(25, 178, 192, 0.2);
}

.map-header {
  margin-bottom: 30px;
}

.map-header-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 15px auto;
}

.map-header h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
}

.map-header p {
  color: var(--p-color);
  margin-bottom: 0;
  font-size: 1.1rem;
}

.map-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}

.map-container iframe {
  border-radius: 15px;
  transition: all 0.3s ease;
}

.map-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,.1);
  border: 1px solid rgba(25, 178, 192, 0.2);
  max-width: 250px;
}

.map-info h5 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.map-info p {
  color: var(--p-color);
  margin-bottom: 15px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  padding: 10px 15px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.map-directions-btn:hover {
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(25, 178, 192, 0.3);
}
/*---------------------------------------
  MAP SECTION - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  SOCIAL MEDIA SECTION - BAŞLANGIÇ              
-----------------------------------------*/
.social-media-section {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.1);
  border: 1px solid rgba(25, 178, 192, 0.1);
}

.social-media-header h2 {
  color: var(--dark-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.social-media-header p {
  color: var(--p-color);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.social-links-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 30px 20px;
  border-radius: 15px;
  background: rgba(25, 178, 192, 0.05);
  border: 1px solid rgba(25, 178, 192, 0.1);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 120px;
  max-width: 200px;
}

.social-link-card:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(25, 178, 192, 0.3);
}

.social-icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.social-link-card:hover .social-icon-wrapper {
  background: var(--white-color);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.social-icon-wrapper i,
.social-icon-wrapper b {
  font-size: 24px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.social-link-card:hover .social-icon-wrapper i,
.social-link-card:hover .social-icon-wrapper b {
  color: var(--primary-color);
}

.social-label {
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.social-link-card:hover .social-label {
  color: var(--white-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .social-links-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .social-link-card {
    width: 100%;
    max-width: none;
    flex-direction: row;
    text-align: left;
    padding: 20px;
  }
  
  .social-icon-wrapper {
    margin-bottom: 0;
    margin-right: 15px;
    width: 50px;
    height: 50px;
  }
  
  .social-icon-wrapper i,
  .social-icon-wrapper b {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .social-media-section {
    padding: 30px 20px;
  }
  
  .social-media-header h2 {
    font-size: 1.5rem;
  }
  
  .social-link-card {
    padding: 15px;
  }
  
  .social-icon-wrapper {
    width: 45px;
    height: 45px;
    margin-right: 12px;
  }
  
  .social-icon-wrapper i,
  .social-icon-wrapper b {
    font-size: 18px;
  }
  
  .social-label {
    font-size: 13px;
  }
}
/*---------------------------------------
  SOCIAL MEDIA SECTION - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  CONTACT FORM - BAŞLANGIÇ              
-----------------------------------------*/
.contact-form-wrapper {
  background: var(--white-color);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.1);
}

.contact-form-header {
  background: linear-gradient(135deg, rgba(25, 178, 192, 0.95) 0%, rgba(72, 192, 179, 0.95) 50%, rgba(25, 178, 192, 0.95) 100%);
  color: var(--white-color);
  padding: 60px 40px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #ffd700;
  box-shadow:
    0 15px 50px rgba(25, 178, 192, 0.3),
    inset 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: float 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.contact-form-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.1) 50%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.contact-form-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px auto;
}

.contact-form-header h2 {
  color: var(--white-color);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-shadow:
    0 3px 15px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(255, 215, 0, 0.2);
  text-transform: uppercase;
}

.contact-form-header h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, transparent);
  margin: 15px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.contact-form-header .lead {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.contact-form {
  padding: 40px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

/* Tally Form Embed Specific Styles */
.contact-form iframe[data-tally-src] {
  border-radius: 0 0 20px 20px;
  transition: all 0.3s ease;
  background: transparent;
}

.contact-form iframe[data-tally-src]:hover {
  box-shadow: 0 0.5rem 1rem rgba(25, 178, 192, 0.1);
}

.contact-form .form-control {
  border: 2px solid rgba(25, 178, 192, 0.2);
  border-radius: 10px;
  padding: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(25, 178, 192, 0.25);
}

.contact-form select.form-control {
  cursor: pointer;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--p-color);
}

.form-check-label a {
  color: var(--primary-color);
  text-decoration: none;
}

.form-check-label a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}
/*---------------------------------------
  CONTACT FORM - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  FORM VALIDATION - BAŞLANGIÇ              
-----------------------------------------*/
.form-control.is-valid {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(25, 178, 192, 0.25);
}

.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-form button[disabled]:hover {
  transform: none;
}

/* Alternative Contact Buttons */
.alternative-contact-buttons {
  margin-top: 20px;
  padding: 20px;
  background: rgba(25, 178, 192, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(25, 178, 192, 0.1);
}

.alternative-contact-buttons h6 {
  color: var(--dark-color);
  font-weight: 600;
}

.alternative-contact-buttons .btn {
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.alternative-contact-buttons .btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.alternative-contact-buttons .btn-outline-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(25, 178, 192, 0.3);
}

.alternative-contact-buttons .btn-outline-secondary {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.alternative-contact-buttons .btn-outline-secondary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(25, 178, 192, 0.3);
}
/*---------------------------------------
  FORM VALIDATION - BİTİŞ              
-----------------------------------------*/


/*---------------------------------------
  CTA SECTION - BAŞLANGIÇ              
-----------------------------------------*/
/* .call-to-action {
  background-image: url("../images/highlight/img-33.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.call-to-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.call-to-action .text-info {
  color: #17a2b8 !important;
}

.call-to-action p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
} */

/*---------------------------------------
  CTA SECTION - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  RESPONSIVE DESIGN - BAŞLANGIÇ              
-----------------------------------------*/
@media (max-width: 768px) {

  .contact-info-card,
  .company-info-card {
    padding: 30px;
    margin-bottom: 30px;
  }

  .contact-header-icon,
  .company-header-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .contact-header h2,
  .company-header h2 {
    font-size: 1.3rem;
  }

  .contact-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .detail-row {
    flex-direction: column;
    gap: 5px;
  }

  .detail-label {
    flex: none;
  }

  .detail-value {
    text-align: left;
  }

  .social-links {
    justify-content: center;
  }

  .contact-form-header {
    padding: 50px 30px;
  }

  .contact-form-header h2 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .contact-form-header h2::after {
    width: 60px;
    height: 3px;
  }

  .contact-form-header .lead {
    font-size: 1.1rem;
  }

  .contact-form {
    padding: 30px;
  }

  .contact-form-wrapper {
    margin-top: 20px;
  }

  .map-section {
    padding: 30px;
  }

  .map-header-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .map-header h2 {
    font-size: 1.5rem;
  }

  .map-container {
    height: 300px;
  }

  .map-container iframe {
    height: 300px;
  }

  .map-overlay {
    position: static;
    margin-top: 15px;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .contact-info-card,
  .company-info-card {
    padding: 25px;
  }

  .contact-header-icon,
  .company-header-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .contact-header h2,
  .company-header h2 {
    font-size: 1.2rem;
  }

  .contact-item {
    padding: 12px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
  }

  .contact-icon i {
    font-size: 1.1rem;
  }

  .social-link {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .contact-form-header {
    padding: 45px 25px;
  }

  .contact-form-header h2 {
    font-size: 1.75rem;
    letter-spacing: 1px;
  }

  .contact-form-header h2::after {
    width: 50px;
    height: 3px;
    margin-top: 12px;
  }

  .contact-form-header .lead {
    font-size: 1rem;
  }

  .contact-form-header::before {
    animation: float 20s ease-in-out infinite;
  }

  .contact-form {
    padding: 25px;
  }

  .contact-form .form-control {
    padding: 12px;
  }

  .map-section {
    padding: 25px;
  }

  .map-header-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .map-header h2 {
    font-size: 1.3rem;
  }

  .map-container {
    height: 250px;
  }

  .map-container iframe {
    height: 250px;
  }

  .map-overlay {
    padding: 15px;
  }

  .map-info h5 {
    font-size: 1rem;
  }

  .map-info p {
    font-size: 0.85rem;
  }

  .map-directions-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .alternative-contact-buttons {
    padding: 15px;
  }

  .alternative-contact-buttons .btn {
    padding: 10px 15px;
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}
/*---------------------------------------
  RESPONSIVE DESIGN - BİTİŞ              
-----------------------------------------*/



/*---------------------------------------
  FORM ALERTS - BAŞLANGIÇ              
-----------------------------------------*/
.alert {
  border-radius: 15px;
  border: none;
  padding: 20px;
  margin-bottom: 25px;
  font-weight: 500;
  animation: slideInDown 0.5s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-success {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
  color: #155724;
  border-left: 4px solid #28a745;
}

.alert-danger {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.alert-info {
  background: linear-gradient(135deg, rgba(25, 178, 192, 0.1), rgba(25, 178, 192, 0.05));
  color: #0c5460;
  border-left: 4px solid var(--primary-color);
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
}

.form-control.is-valid {
  border-color: var(--primary-color);
  background-image: none;
  box-shadow: 0 0 0 0.2rem rgba(25, 178, 192, 0.25);
}

.form-control.is-invalid {
  border-color: #dc3545;
  background-image: none;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Loading button state */
#submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

/* Smooth transitions */
.form-control {
  transition: all 0.3s ease;
}

.custom-btn {
  transition: all 0.3s ease;
}

.custom-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(25, 178, 192, 0.3);
}
/*---------------------------------------
  FORM ALERTS - BİTİŞ              
-----------------------------------------*/


/*---------------------------------------
  MOBİL KENAR BOŞLUKLARI - BAŞLANGIÇ              
-----------------------------------------*/
@media screen and (max-width: 768px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  .section-padding {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .contact-content,
  .contact-form-content {
    padding: 0 15px;
  }
  
  .contact-info {
    margin: 0 15px;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .section-padding {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .contact-content,
  .contact-form-content {
    padding: 0 10px;
  }
  
  .contact-info {
    margin: 0 10px;
  }
}
/*---------------------------------------
  MOBİL KENAR BOŞLUKLARI - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  İLETİŞİM - BİTİŞ              
-----------------------------------------*/