/* Support / Get in Touch section - index.html */
.support-contact-container {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 40px;
}

.contact-info-section {
  flex: 1;
  padding: 30px;
  background: linear-gradient(135deg, #0099ac 0%, #005f6b 100%);
  border-radius: 12px;
  color: white;
}

.contact-info-header {
  margin-bottom: 30px;
}

.contact-info-header h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 16px;
  font-weight: 500;
}

.contact-image-section {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image-section img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  position: relative;
  transition: transform 0.3s ease;
}

.contact-image-section:hover img {
  transform: scale(1.02);
}

.contact-cta {
  margin-top: 30px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: white;
  color: #0099ac;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-button img {
  width: 20px;
  margin-left: 10px;
}

@media (max-width: 991px) {
  .support-contact-container {
    flex-direction: column;
  }

  .contact-image-section {
    min-height: 350px;
    padding: 30px;
  }

  .contact-image-section img {
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .support-contact-container {
    padding: 20px;
  }

  .contact-info-section {
    padding: 20px;
  }

  .contact-info-header h3 {
    font-size: 24px;
  }

  .contact-image-section {
    min-height: 300px;
    padding: 20px;
  }

  .contact-image-section img {
    max-width: 90%;
  }
}

@media (max-width: 479px) {
  .contact-image-section {
    min-height: 250px;
    padding: 15px;
  }

  .contact-image-section img {
    max-width: 95%;
  }
}
