/* Contact Page - Specific Styles */

/* Contact page - Light theme */
body {
  background-color: #ffffff;
  color: #000000;
}

/* Contact Section */
.contact-section {
  padding: 140px 0 100px;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.contact-left {
  max-width: 500px;
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 25px;
  line-height: 1.2;
}

.contact-description {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-link {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  width: fit-content;
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color--primary-1);
  transition: width 0.3s ease;
}

.contact-link:hover {
  color: var(--color--primary-1);
  transform: translateX(5px);
}

.contact-link:hover::after {
  width: 100%;
}

.contact-right {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color--gray-3) 0%, #ffffff 100%);
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-cta {
  margin-top: 50px;
  padding: 35px;
  background: linear-gradient(135deg, var(--color--gray-3) 0%, #ffffff 100%);
  border-radius: 20px;
  border: 2px solid rgba(0, 0, 0, 0.06);
}

.contact-cta-title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
}

.contact-cta-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-left {
    max-width: 100%;
  }
  
  .contact-title {
    font-size: 40px;
  }
  
  .contact-link {
    font-size: 22px;
  }
  
  .contact-section {
    padding: 120px 0 80px;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 100px 0 60px;
  }
  
  .contact-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .contact-description {
    font-size: 16px;
    margin-bottom: 35px;
  }
  
  .contact-link {
    font-size: 20px;
  }
  
  .contact-cta {
    margin-top: 40px;
    padding: 30px 25px;
  }
  
  .contact-cta-title {
    font-size: 18px;
  }
  
  .contact-cta-text {
    font-size: 14px;
  }
}

