.contact-section {
  width: 100%;
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  padding: calc(100px + 20px) 20px 100px;
}

.contact-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}

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

.contact-left {
  display: flex;
  flex-direction: column;
}

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

.info-item {
  display: flex;
  gap: 25px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  border-left: 4px solid #ff6f6f;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(255, 111, 111, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon i {
  font-size: 28px;
  color: #ff6f6f;
}

.info-content {
  flex: 1;
}

.info-content h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.info-content p {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.contact-right {
  display: flex;
  justify-content: center;
}

.map-box {
  width: 100%;
  height: 500px;
  max-width: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-container {
    gap: 50px;
  }

  .section-header h2 {
    padding: 20px 18px;
    font-size: 40px;
  }

  .map-box img {
    height: 350px;
  }
}

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

  .contact-wrapper {
    max-width: 100%;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 32px;
    padding-top: 50px;
    padding-bottom: 10px;    
    margin-bottom: 12px;
  }

  .section-header p {
    font-size: 16px;
  }

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

  .info-item {
    padding: 20px;
    gap: 20px;
  }

  .map-box img {
    height: 300px;
  }
}
