/* Contact Page Styles */
.hero-section {
  background: linear-gradient(135deg, #2a3b6f, #5c86c0);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(100px, -150px);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-100px, 100px);
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeInUp 0.6s ease-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease-out 0.2s;
  animation-fill-mode: both;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  animation: fadeInUp 0.8s ease-out 0.4s;
  animation-fill-mode: both;
}

.contact-item {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item:hover .contact-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.contact-text {
  font-size: 1rem;
}

.contact-text strong {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-text span {
  font-weight: 500;
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
  transform-origin: center right;
}

.image-wrapper {
  position: relative;
  padding: 15px;
}

.hero-image img {
  border-radius: 15px;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
}

.hero-image:hover img {
  transform: scale(1.03);
}

.floating-card {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: white;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 1.2rem;
  color: #0d6efd;
}

.card-text {
  font-weight: 600;
  color: #333;
}

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Form styling */
.form-control, .form-select {
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid #dee2e6;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
  border-color: #0d6efd;
}

.btn-primary {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #2a3b6f, #5c86c0);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
}
/* Enhanced Contact Form Section Styles */
.contact-form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.05);
  z-index: 0;
}

.contact-form-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.05);
  z-index: 0;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2a3b6f, #5c86c0);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeInUp 0.6s ease-out;
}

.contact-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.contact-title h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #2a3b6f, #5c86c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s ease-out;
}

.contact-title p {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s;
  animation-fill-mode: both;
}

.contact-info-wrapper {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  animation: fadeInLeft 0.8s ease-out;
}

.info-box:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #2a3b6f, #5c86c0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
  transition: transform 0.3s ease;
}

.info-box:hover .info-icon {
  transform: scale(1.1) rotate(10deg);
}

.info-content h5 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #212529;
}

.info-content p {
  margin: 0;
  color: #6c757d;
}

.map-container {
  position: relative;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form-container {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInRight 0.8s ease-out;
}

.contact-form-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #212529;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-control, .form-select {
  height: 50px;
  border-radius: 10px;
  padding: 10px 15px 10px 45px;
  border: 1px solid #e9ecef;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: none;
  background-color: #f8f9fa;
}

.form-control:focus, .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
  background-color: #fff;
}

.form-control:focus + .form-icon i, 
.form-select:focus + .form-icon i {
  color: #0d6efd;
}

textarea.form-control {
  height: auto;
  resize: none;
}

.form-icon {
  position: absolute;
  top: 40px;
  left: 15px;
  color: #adb5bd;
  transition: all 0.3s ease;
}

.btn-submit {
  background: linear-gradient(135deg, #2a3b6f, #5c86c0);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 35px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-submit:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d6efd, #0062cc);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

.btn-submit:hover:before {
  left: 0;
}

.btn-submit i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-submit:hover i {
  transform: translateX(5px);
}

/* Form input animations */
@keyframes inputHighlight {
  0% {
    border-color: #e9ecef;
  }
  50% {
    border-color: #0d6efd;
  }
  100% {
    border-color: #e9ecef;
  }
}

.form-control:focus, .form-select:focus {
  animation: inputHighlight 1s ease-in-out;
}

/* Additional animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Pulse animation for submit button */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}

.btn-submit:focus {
  animation: pulse 1.5s infinite;
}