/* Brand-Aligned Colorful Contact Page Design */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f8fb;
}

/* Main Contact Section */
.contact-colorful-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(7, 63, 82, 0.02) 0%, rgba(99, 183, 211, 0.08) 100%);
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
}

/* Decorative Elements */
.contact-colorful-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 188, 52, 0.15) 0%, rgba(235, 188, 52, 0) 70%);
  z-index: 0;
}

.contact-colorful-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 135, 85, 0.12) 0%, rgba(232, 135, 85, 0) 70%);
  z-index: 0;
}

.contact-dots {
  position: absolute;
  width: 180px;
  height: 180px;
  right: 10%;
  top: 20%;
  background-image: radial-gradient(rgba(7, 63, 82, 0.2) 2px, transparent 2px);
  background-size: 18px 18px;
  z-index: 1;
}

.contact-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V120H0V95.8C59.71,118.11,142.53,111.44,221.36,104.72Z' fill='%23ffffff' opacity='0.3'%3E%3C/path%3E%3C/svg%3E") no-repeat;
  background-size: cover;
}

/* Header and Title Styles */
.contact-colorful-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.contact-colorful-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #073F52;
  margin-bottom: 16px;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}

.contact-colorful-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #EBBC34;
  border-radius: 2px;
}

.contact-colorful-subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Contact Container */
.contact-colorful-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

/* Contact Cards */
.contact-colorful-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(7, 63, 82, 0.08);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.contact-colorful-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(7, 63, 82, 0.15);
}

/* Info Card */
.contact-info-card {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.contact-info-header {
  background: linear-gradient(120deg, #073F52 0%, #1A6A82 100%);
  color: white;
  padding: 30px;
  border-radius: 24px 24px 0 0;
  position: relative;
  overflow: hidden;
}

.contact-info-header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.contact-info-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 10px 0;
}

.contact-info-header p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
}

.contact-info-body {
  padding: 30px;
}

.contact-method-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  position: relative;
}

.contact-method-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(99, 183, 211, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-method-icon i {
  font-size: 1.2rem;
  color: #63B7D3;
}

.contact-method-content {
  flex: 1;
}

.contact-method-label {
  font-weight: 700;
  font-size: 1.05rem;
  color: #073F52;
  margin-bottom: 5px;
}

.contact-method-value {
  color: #555;
  line-height: 1.5;
  font-size: 0.95rem;
}

.contact-method-value a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-method-value a:hover {
  color: #63B7D3;
}

/* Social Media Section */
.contact-social-section {
  padding: 20px 30px;
  background: #f8f9fb;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-social-title {
  font-size: 1rem;
  font-weight: 700;
  color: #073F52;
  margin-bottom: 15px;
}

.contact-social-icons {
  display: flex;
  gap: 12px;
}

.contact-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #073F52;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.contact-social-icon:hover {
  background: #EBBC34;
  color: white;
  transform: translateY(-3px);
}

/* Form Card */
.contact-form-card {
  background: white;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-form-header {
  background: linear-gradient(120deg, #63B7D3 0%, #3A9DBD 100%);
  color: white;
  padding: 30px;
  border-radius: 24px 24px 0 0;
  position: relative;
  overflow: hidden;
}

.contact-form-header::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.contact-form-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 10px 0;
}

.contact-form-header p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
}

.contact-form-body {
  padding: 15px;
  flex: 1;
}

.contact-form-iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  border-radius: 12px;
}

/* Map Card */
.contact-map-card {
  background: white;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-map-header {
  background: linear-gradient(120deg, #E88755 0%, #EC7C3C 100%);
  color: white;
  padding: 30px;
  border-radius: 24px 24px 0 0;
  position: relative;
  overflow: hidden;
}

.contact-map-header::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.contact-map-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 10px 0;
}

.contact-map-header p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
}

.contact-map-body {
  padding: 0;
  flex: 1;
  min-height: 300px;
}

.contact-map-iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .contact-colorful-container {
    max-width: 960px;
  }
  
  .contact-colorful-card {
    flex: 1 1 280px;
  }
}

@media (max-width: 991px) {
  .contact-colorful-container {
    max-width: 720px;
  }
  
  .contact-colorful-card {
    flex: 1 1 300px;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .contact-colorful-title {
    font-size: 2.5rem;
  }
  
  .contact-colorful-section {
    padding: 100px 15px 40px;
  }
  
  .contact-colorful-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-colorful-title {
    font-size: 2.2rem;
  }
  
  .contact-info-header,
  .contact-form-header,
  .contact-map-header {
    padding: 25px 20px;
  }
  
  .contact-info-body {
    padding: 20px;
  }
  
  .contact-method-icon {
    width: 40px;
    height: 40px;
  }
}

/* Animation Styles */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}