
/* ================= CONTACT HERO SECTION ================= */
.contact-hero {
  position: relative;
  height: 70vh;
 
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
  animation: fadeInBg 1.5s ease-in-out forwards;
}

/* Overlay for dim effect */
.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 31, 68, 0.55);
  backdrop-filter: brightness(80%);
  z-index: 1;
}

/* Content */
.contact-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
  animation: slideUp 1.3s ease-in-out;
}

.contact-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.contact-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInHero {
  0% { opacity: 0; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .contact-content h1 {
    font-size: 2.3rem;
  }
  .contact-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    height: 60vh;
  }
  .contact-content h1 {
    font-size: 1.9rem;
  }
  .contact-content p {
    font-size: 0.95rem;
  }
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 80px 10%;
  background: #fff;
  animation: fadeInUp 1.2s ease-in-out;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT SIDE */
.contact-info {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: slideInLeft 1.2s ease-in-out;
}

.contact-info small {
  color: #d8232a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info h2 {
  font-size: 2rem;
  color: #0a1f44;
  font-weight: 800;
  margin: 10px 0 15px;
}

.contact-info p {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* SOCIAL ICONS */
/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border: 2px solid #d8232a;
  background: #d8232a;
  color: #d8232a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}

.social-icons a:hover {
  background: #d8232a;
  /* color: #fff; */
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 18px rgba(216, 35, 42, 0.3);
}


/* MAP BOX */
.map-box {
  width: 100%;
  height: 230px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* RIGHT SIDE (FORM) */
.contact-form {
  flex: 1 1 45%;
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  animation: slideInRight 1.2s ease-in-out;
}

.contact-form h3 {
  font-size: 1.7rem;
  color: #0a1f44;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  text-align: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d8232a;
  box-shadow: 0 0 8px rgba(216, 35, 42, 0.2);
}

.contact-form button {
  background: #d8232a;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #b81821;
  transform: scale(1.05);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form, .contact-info {
    flex: 1 1 100%;
  }

  .contact-form {
    margin-top: 20px;
  }

  .contact-info h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 6%;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .contact-info p {
    font-size: 0.95rem;
  }
}

/* ================= SUPPORT SECTION ================= */
.support-section {
  padding: 100px 10%;
  background: #f9f9f9;
  animation: fadeInUp 1.2s ease-in-out;
}

.support-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT SIDE TEXT */
.support-text {
  flex: 1 1 50%;
  animation: slideInLeft 1.2s ease-in-out;
}

.support-text small {
  color: #d8232a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.support-text h2 {
  font-size: 2.3rem;
  color: #0a1f44;
  font-weight: 800;
  margin: 15px 0 20px;
}

.support-text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* FEATURES */
.support-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(216,35,42,0.2);
}

.feature i {
  font-size: 28px;
  color: #d8232a;
  background: rgba(216,35,42,0.1);
  padding: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a1f44;
}

.feature p {
  font-size: 0.95rem;
  color: #555;
}

/* BUTTON */
.btn-explore {
  display: inline-block;
  margin-top: 25px;
  background: #d8232a;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-explore:hover {
  background: #b81821;
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(216, 35, 42, 0.3);
}

/* RIGHT SIDE IMAGE */
/* .support-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1.2s ease-in-out;
}

.support-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  animation: float 5s ease-in-out infinite;
} */

/* ANIMATIONS */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .support-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .support-text, .support-image {
    flex: 1 1 100%;
  }

  .support-features {
    align-items: center;
  }

  .feature {
    text-align: left;
    max-width: 500px;
  }

  .support-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .support-section {
    padding: 70px 6%;
  }

  .support-text h2 {
    font-size: 1.7rem;
  }

  .feature i {
    font-size: 24px;
  }
}

/* CONTACT INFO CARDS SECTION */
.contact-info-section {
  background: #fff;
  padding: 80px 8%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}

.contact-card {
  flex: 1 1 300px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(216, 35, 42, 0.1), transparent);
  transition: all 0.6s ease;
}

.contact-card:hover::before {
  left: 100%;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(216, 35, 42, 0.2);
}

.contact-card i {
  font-size: 40px;
  color: #d8232a;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.contact-card:hover i {
  transform: scale(1.1);
}

.contact-card h3 {
  font-size: 22px;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-info-section {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 100%;
    max-width: 500px;
  }
}



