/**
 * Contact Page CSS
 * Styles used on page-contact.php template
 *
 * @package DSAdvisory_Theme
 * @since 1.0.0
 */

/* ==========================================================================
   Contact Section (Contact Page)
   ========================================================================== */

.contact-section {
  padding: 5rem 0;
  background: linear-gradient(
      135deg,
      rgba(26, 60, 110, 0.75) 0%,
      rgba(30, 85, 120, 0.9) 100%
    ),
    url("../images/thessaloniki_background3.webp") center center / cover
      no-repeat;
  color: var(--white);
  position: relative;
}

.contact-section .section-title {
  color: var(--white);
}

.contact-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.contact-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--white);
  text-decoration: underline;
}

.cta-section {
  margin-top: 4rem;
  padding: 4rem 0;
}

/* ==========================================================================
   Responsive - Contact Page
   ========================================================================== */

@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}
