:root {
  --primary-color: #007AFF;
  --primary-dark: #0056CC;
}

.contact-section {
  width: 100%;
  background: linear-gradient(135deg, #041525 0%, #0c2d52 50%, #0a2540 100%);
  padding: 80px 24px;
  color: #fff;
  box-sizing: border-box;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.25rem;
  margin: 0 0 12px;
  font-weight: 700;
}

.contact-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  margin: 0 auto 48px;
  max-width: 520px;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #93c5fd;
}

.contact-item h3 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: #93c5fd;
}

.contact-emails {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-value {
  color: #fff;
  font-size: 1rem;
  cursor: default;
}

.contact-emails .contact-label {
  font-size: 0.85rem;
  opacity: 0.6;
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 4px;
}

.social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}

.social-links a:hover {
  background: rgba(0, 122, 255, 0.8);
  transform: translateY(-2px);
  color: #fff;
}

.footer {
  text-align: center;
  padding: 24px 20px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  width: 100%;
  box-sizing: border-box;
}

.footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-links {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
  }

  .contact-section h2 {
    font-size: 1.75rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
