/* Hero Section */
.hero.contact-hero {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #fefefe, #f0f8ff);
  position: relative;
  overflow: hidden;
  padding: 2rem 5%;
}

.hero.contact-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero.contact-hero .hero-tagline {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  color: #0078d7;
  display: block;
  margin-bottom: 0.5rem;
}

.hero.contact-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  color: #0078d7;
  margin-bottom: 0.8rem;
}

.hero.contact-hero p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Hero Shapes */
.hero-bg-shapes span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 10s infinite linear;
}

.shape1 { width: 150px; height: 150px; background: linear-gradient(45deg, #00bfff, #1e90ff); top: 10%; left: 5%; }
.shape2 { width: 120px; height: 120px; background: linear-gradient(45deg, #ff7f50, #ff6347); top: 30%; right: 10%; }
.shape3 { width: 200px; height: 200px; background: linear-gradient(45deg, #32cd32, #7fff00); bottom: 10%; left: 40%; }

@keyframes float {
  0% { transform: translateY(0) rotate(0deg);}
  50% { transform: translateY(-20px) rotate(180deg);}
  100% { transform: translateY(0) rotate(360deg);}
}

/* ==============================
   Contact Form Section
============================== */
.contact-form-section {
  padding: 4rem 5%;
  background: #f9fbff;
  text-align: center;
}

.contact-form-section h2 {
  font-family: 'Poppins', sans-serif;
  color: #0078d7;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-form-section form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0078d7;
  box-shadow: 0 0 6px rgba(0,120,215,0.3);
}

/* Submit Button */
.hero-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #0078d7;
  color: #fff;
  border-radius: 6px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,120,215,0.2);
}

.hero-btn:hover {
  transform: translateY(-2px) scale(1.05);
  background: #005fa3;
  box-shadow: 0 6px 16px rgba(0,120,215,0.3);
}

/* Contact Info */
.contact-info {
  padding: 3rem 5%;
  text-align: center;
}

.contact-info h2 {
  font-family: 'Poppins', sans-serif;
  color: #0078d7;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #555;
}

/* Social Media */
.social-media {
  padding: 3rem 5%;
  text-align: center;
}

.social-media h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  color: #0078d7;
  margin-bottom: 1.5rem;
}

.social-icons a {
  font-size: 1.5rem;
  margin: 0 1rem;
  color: #0078d7;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #005fa3;
}

/* Footer */
footer {
  padding: 2rem 5%;
  text-align: center;
  background: #f5f5f5;
  color: #555;
}

/* Responsive */
@media(max-width:768px){
  .hero.contact-hero h1 { font-size: 2.2rem; }
  .hero.contact-hero p { font-size: 1.1rem; }
  .form-group input, .form-group textarea { font-size: 0.95rem; }
  .contact-form-section form { padding: 1.8rem; }
}
