.contact-hero {
  background: linear-gradient(135deg, #0b1e33, #1e3a8a, #2563eb);
  padding: 200px 0 120px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.contact-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-cards-section {
  padding: 40px 0 60px;
  background: #f8fafc;
}

.contact-card {
  background: white;
  border-radius: 30px;
  padding: 40px 30px;
  box-shadow: 0 20px 40px rgba(0, 30, 60, 0.1);
  transition: all 0.4s ease;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(30, 58, 138, 0.1);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(13, 202, 240, 0.15);
}

.contact-card i {
  font-size: 3rem;
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.contact-card h5 {
  font-size: 1.5rem;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.contact-card p {
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}

.map-section {
  padding: 0 0 60px;
  background: #f8fafc;
}

.contact-map {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Form Section */
.contact-form-section {
  background: white;
  padding: 80px 0;
}

.form-wrapper {
  background: #f8fafc;
  border-radius: 40px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.form-wrapper h3 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 30px;
  text-align: center;
}

.form-control,
.form-select {
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 14px 20px;
  background: white;
  transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
  border-color: #0dcaf0;
  box-shadow: 0 0 0 4px rgba(13, 202, 240, 0.1);
  outline: none;
}

.btn-submit {
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  color: white;
  width: 100%;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 30px rgba(13, 202, 240, 0.3);
}

@media (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .contact-hero h1 {
    font-size: 3rem;
  }

  .form-wrapper {
    padding: 40px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  .contact-hero {
    padding: 180px 0 100px;
  }

  .contact-hero h1 {
    font-size: 2.8rem;
  }

  .contact-hero p {
    font-size: 1.1rem;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .contact-card i {
    font-size: 2.5rem;
  }

  .contact-card h5 {
    font-size: 1.3rem;
  }

  .contact-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 150px 0 80px;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .contact-hero p {
    font-size: 1rem;
    padding: 0 20px;
  }

  .contact-cards-section {
    padding: 30px 0 40px;
  }

  .contact-card {
    padding: 25px 20px;
  }

  .contact-card i {
    font-size: 2.2rem;
  }

  .contact-card h5 {
    font-size: 1.2rem;
  }

  .map-section {
    padding: 0 0 40px;
  }

  .contact-map iframe {
    height: 350px;
  }

  .contact-form-section {
    padding: 60px 0;
  }

  .form-wrapper {
    padding: 30px;
  }

  .form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .form-control,
  .form-select {
    padding: 12px 18px;
  }

  .btn-submit {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }

  .contact-hero {
    padding: 130px 0 60px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero p {
    font-size: 0.95rem;
  }

  .contact-cards-section .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-card {
    padding: 25px 20px;
    max-width: 350px;
    margin: 0 auto;
  }

  .contact-card i {
    font-size: 2rem;
  }

  .contact-card h5 {
    font-size: 1.2rem;
  }

  .contact-map iframe {
    height: 300px;
  }

  .contact-form-section {
    padding: 40px 0;
  }

  .form-wrapper {
    padding: 25px;
    border-radius: 30px;
  }

  .form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .form-control,
  .form-select {
    padding: 10px 15px;
    border-radius: 15px;
  }

  .btn-submit {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 400px) {
  .contact-hero h1 {
    font-size: 1.8rem;
  }

  .contact-card {
    padding: 20px 15px;
  }

  .contact-card p {
    font-size: 0.85rem;
  }

  .contact-map iframe {
    height: 250px;
  }

  .form-wrapper {
    padding: 20px;
  }

  .form-wrapper h3 {
    font-size: 1.3rem;
  }

  .row .col-md-6.mb-4 {
    margin-bottom: 15px !important;
  }
}
