/* Contact Section Styles */
.contact-section {
  background-color: #0f0f0f;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, #fff 0%, #FF5A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact-description {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-content-simple {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 3rem;
  }
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 500px;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateX(10px);
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 90, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF5A00;
  flex-shrink: 0;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}

.info-value {
  font-size: 1.125rem;
  color: white;
}

.info-value a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-value a:hover {
  color: #FF5A00;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  margin-left: 0;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
}

.social-link:hover {
  background-color: #FF5A00;
  transform: translateY(-5px);
}

/* Decoration elements */
.contact-decoration {
  position: absolute;
  z-index: 0;
  opacity: 0.03;
}

.deco-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 60px solid white;
  top: -200px;
  right: -200px;
}

.deco-line {
  width: 2px;
  height: 200px;
  background-color: white;
  bottom: 20%;
  left: 15%;
  transform: rotate(45deg);
}

.deco-dots {
  bottom: 10%;
  right: 10%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.deco-dot {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
}