/**
 * Korenel Theme - Contact Page Stilleri
 * Profesyonel iletişim sayfası tasarımı
 * @package Korenel Theme
 */

/* ==========================================================================
   CONTACT HERO
   ========================================================================== */
.contact-hero {
  background: linear-gradient(
    135deg,
    var(--gs-primary, #0066b3) 0%,
    var(--gs-primary-dark, #004d86) 100%
  );
  padding: 80px 0 60px;
  text-align: center;
  color: #fff;
}

.contact-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-hero-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  background: var(--page-bg-light, #f8f9fa);
}

/* ==========================================================================
   HORIZONTAL CARD - Yatay Kart Kutuları
   ========================================================================== */
.horizontal-card {
  background: var(--page-bg, #fff);
  border-radius: var(--page-radius, 12px);
  padding: 25px;
  box-shadow: var(--page-shadow, 0 5px 30px rgba(0, 0, 0, 0.08));
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.horizontal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--page-shadow-hover, 0 10px 40px rgba(0, 0, 0, 0.12));
}

.horizontal-card__icon {
  width: 60px;
  height: 60px;
  background: var(--page-primary-light, #e8f4fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.horizontal-card__icon i {
  font-size: 24px;
  color: var(--page-primary, #1d398d);
}

.horizontal-card__content {
  flex: 1;
}

.horizontal-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--page-text, #2c3e50);
  margin-bottom: 5px;
}

.horizontal-card__text {
  font-size: 0.95rem;
  color: var(--page-text-light, #6c757d);
  line-height: 1.5;
  margin: 0;
}

.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.horizontal-card__item {
  display: block;
  font-size: 0.95rem;
  color: var(--page-text-light, #6c757d);
  font-weight: 500;
}

/* ==========================================================================
   CONTACT MAP
   ========================================================================== */
.contact-map-wrapper {
  background: #fff;
  padding: 10px;
  border-radius: var(--page-radius, 12px);
  box-shadow: var(--page-shadow, 0 5px 30px rgba(0, 0, 0, 0.08));
}

.map-container {
  height: 450px;
  width: 100%;
  border-radius: var(--page-radius-sm, 8px);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   SOCIAL MEDIA LINKS
   ========================================================================== */
.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-social-links a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: var(--gs-primary, #0066b3);
  font-size: 20px;
  box-shadow: var(--page-shadow, 0 5px 15px rgba(0, 0, 0, 0.08));
  transition: all 0.3s ease;
}

.contact-social-links a:hover {
  background: var(--gs-primary, #0066b3);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: var(--page-shadow-hover, 0 8px 25px rgba(0, 102, 179, 0.3));
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
  .contact-hero {
    padding: 60px 0 50px;
  }

  .contact-hero-content h1 {
    font-size: 2rem;
  }

  .contact-section {
    padding: 60px 0;
  }

  .map-container {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .contact-hero-content h1 {
    font-size: 1.75rem;
  }

  .contact-hero-content p {
    font-size: 1rem;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .map-container {
    height: 300px;
  }

  .contact-social-links a {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
