:root {
  --royal-blue: #1a237e;
  --royal-blue-light: #303f9f;
  --white: #ffffff;
  --red: #e53935;
  --red-light: #ef5350;
  --gray-light: #f5f7fa;
  --gray-dark: #4a5568;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--gray-light);
  color: var(--gray-dark);
  line-height: 1.6;
}

/* Header */
.contact-header {
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* .wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23ffffff"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"/></svg>');
  background-size: cover;
  transform: rotate(180deg);
} */

/* Main Contact Layout */
.contact-container {
  max-width: 1200px;
  margin: 50px auto 3rem;
  padding: 0 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 3;
}

@media (max-width: 992px) {
  .contact-container {
      grid-template-columns: 1fr;
  }
}

/* Contact Info Card */
.contact-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-card-title {
  font-size: 1.8rem;
  color: var(--royal-blue);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.info-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--red);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(26, 35, 126, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--royal-blue);
  font-size: 1.2rem;
}

.contact-details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.contact-details p, .contact-details a {
  color: var(--gray-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--red);
}

/* Social Media Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 35, 126, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-blue);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--royal-blue);
  color: var(--white);
  transform: translateY(-3px);
}

/* Google Maps Embed */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 400px;
}

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

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-title {
  font-size: 1.8rem;
  color: var(--royal-blue);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.form-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--red);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #a777e3, #6e8efb);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  background: #cccccc;
  transform: none;
  box-shadow: none;
}

.submit-btn i {
  transition: transform 0.3s ease;
}

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

.required-field::after {
  content: '*';
  color: var(--red);
  margin-left: 4px;
}

/* Button spinner */
.spinner-border {
  vertical-align: middle;
  margin-right: 8px;
}

.data-consent {
  font-size: 0.95rem;
  color: var(--gray-dark);
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.checkbox-container {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-container .checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--royal-blue);
  border: none;
}

.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container a {
  color: var(--royal-blue);
  text-decoration: underline;
}

.checkbox-container a:hover {
  color: var(--red);
}



/* Form animations */
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
      opacity: 0;
      transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
      transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
      transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
      opacity: 1;
      transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
      transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
      opacity: 1;
      transform: scale3d(1, 1, 1);
  }
}

@keyframes shake {
  from, to {
      transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
      transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
      transform: translate3d(10px, 0, 0);
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.bounceIn {
  animation-name: bounceIn;
}

.shake {
  animation-name: shake;
}

/* Custom SweetAlert styles */
.swal2-popup {
  border-radius: 12px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.swal2-title {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  color: #2c3e50 !important;
}

.swal2-html-container {
  font-family: 'Open Sans', sans-serif !important;
  color: #7f8c8d !important;
}

