.contact {
  padding: 100px 20px;
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 50%, #F8F9FA 100%);
  color: #2C3E50;
  min-height: calc(100vh - 200px);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(0, 82, 165, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.contact .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 20px;
  color: #2C3E50;
  font-weight: 700;
  background: linear-gradient(135deg, #0052A5 0%, #0066CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  text-align: center;
  font-size: 17px;
  color: #5A6C7D;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-layout {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Information Section */
.contact-info {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  padding: 55px;
  border-radius: 20px;
  border: 1px solid #E8ECEF;
  box-shadow: 0 8px 30px rgba(0, 82, 165, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 800px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0052A5 0%, #0066CC 50%, #0052A5 100%);
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 82, 165, 0.15);
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #0052A5;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #0052A5 0%, #0066CC 100%);
  border-radius: 2px;
}

.info-description {
  font-size: 15px;
  color: #5A6C7D;
  margin-bottom: 35px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 25px;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid #E8ECEF;
  transition: all 0.3s ease;
  position: relative;
}

.contact-item:hover {
  border-color: #0052A5;
  box-shadow: 0 6px 20px rgba(0, 82, 165, 0.12);
  transform: translateX(5px);
}

.contact-icon-wrapper {
  flex-shrink: 0;
}

.contact-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  border-radius: 14px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 82, 165, 0.1);
}

.contact-item:hover .contact-icon {
  transform: scale(1.08) rotate(2deg);
  background: linear-gradient(135deg, #BBDEFB 0%, #90CAF9 100%);
  box-shadow: 0 4px 12px rgba(0, 82, 165, 0.2);
}

/* Email Icon - Envelope */
.icon-email::before {
  content: '';
  width: 20px;
  height: 14px;
  border: 2px solid #0052A5;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-email::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 6px solid #0052A5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 2px;
}

/* Phone Icon - Phone handset */
.icon-phone::before {
  content: '';
  width: 16px;
  height: 20px;
  border: 2px solid #0052A5;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-phone::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 5px solid #0052A5;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Location Icon - Map pin */
.icon-location::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: #0052A5;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  margin-top: 4px;
}

.icon-location::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #0052A5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 6px;
}

.contact-detail {
  flex: 1;
}

.contact-detail h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.contact-detail a {
  color: #0052A5;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 6px;
}

.contact-detail a:hover {
  color: #0066CC;
  transform: translateX(3px);
}

.contact-detail p {
  color: #5A6C7D;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.contact-note {
  color: #7A8A9B !important;
  font-size: 13px !important;
  font-style: italic;
  margin-top: 6px !important;
}


/* CTA Section */
.contact-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, #0052A5 0%, #0066CC 100%);
  border-radius: 16px;
  color: #FFFFFF;
  box-shadow: 0 8px 30px rgba(0, 82, 165, 0.2);
}

.cta-text {
  font-size: 18px;
  margin-bottom: 25px;
  color: #FFFFFF;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  font-size: 17px;
  font-weight: 600;
  background: #FFFFFF;
  color: #0052A5;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: #F8F9FA;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-info {
    padding: 45px;
  }

  .contact-cta {
    padding: 35px 30px;
  }
}

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

  .section-title {
    font-size: 32px;
  }

  .contact-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .contact-info {
    padding: 35px 25px;
  }

  .contact-info h3 {
    font-size: 24px;
  }

  .contact-item {
    gap: 18px;
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .contact-icon-wrapper {
    margin: 0 auto;
  }

  .contact-icon {
    width: 56px;
    height: 56px;
  }

  .contact-detail {
    text-align: center;
  }

  .contact-cta {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .cta-text {
    font-size: 16px;
  }

  .cta-button {
    padding: 14px 32px;
    font-size: 16px;
  }
}
