/* =============================
   CONTACT HERO
============================= */
.contact-hero {
  background: linear-gradient(135deg, #1e90ff, #6a11cb);
  color: #fff;
  text-align: center;
  padding: 140px 20px 100px;
  position: relative;
  overflow: hidden;
}

.floating-text {
  animation: floatText 1.2s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes floatText {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.contact-hero-inner h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-hero-inner p {
  font-size: 17px;
  color: #eef2ff;
}

/* =============================
   CONTACT SECTION
============================= */
.contact-section {
  padding: 100px 70px;
  background: #f8f9fa;
  color: #1f2937;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* ----- CONTACT FORM ----- */
.contact-form, .contact-info {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.contact-form h2, .contact-info h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1f2937;
}

.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 14px;
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus {
  border-color: #1e90ff;
  box-shadow: 0 0 10px rgba(30,144,255,0.3);
}

/* BUTTON */
.contact-form .btn-primary {
  background: #6a11cb;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  background: #ff6ec7;
}

/* ----- SOCIAL LINKS ----- */
.social-links {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.social-links .social-icon {
  font-size: 22px;
  color: #6a11cb;
  transition: all 0.3s ease;
}

.social-links .social-icon:hover {
  color: #ff6ec7;
}

/* ----- CONTACT INFO ----- */
.contact-info p {
  margin-bottom: 14px;
  font-size: 14px;
}

.contact-info h3 {
  font-size: 16px;
  margin-top: 24px;
  margin-bottom: 10px;
  color: #1e40af;
}

/* MAP */
.map-container {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);

}


/* =============================
   RESPONSIVE
============================= */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-section {
    padding: 80px 40px;
  }
}

@media (max-width: 480px) {
  .contact-hero-inner h1 {
    font-size: 28px;
  }
  .contact-hero-inner p {
    font-size: 14px;
  }
  .contact-section {
    padding: 40px 20px;
  }
  .contact-form h2, .contact-info h2 {
    font-size: 20px;
  }
  .contact-info h3 {
    font-size: 14px;
  }
  .contact-form input, .contact-form textarea {
    font-size: 13px;
  }
  .social-links {
    justify-content: center;
  }
}
/* =============================
   CONTACT FORM MESSAGES
============================= */
#thankMessage, #errorMessage {
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: 18px;
  font-size: 15px;
  display: none;
  transition: all 0.3s ease;
}

#thankMessage {
  background: linear-gradient(135deg, #6a11cb, #1e90ff);
  color: #fff;
}

#errorMessage {
  background: linear-gradient(135deg, #ff4d4d, #ff1a1a);
  color: #fff;
}

/* Responsive */
@media (max-width: 480px) {
  #thankMessage, #errorMessage {
    font-size: 14px;
    padding: 12px 14px;
  }
}
