/* === Service Banner Section === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Mulish', sans-serif;
}

.contact-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 80px;
  background: url('../images/contact-banner.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
}

/* Overlay for better text visibility */
.contact-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Text content */
.contact-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-left: 8%;
}

.contact-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.contact-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f1f1f1;
}

/* Button Style */
.banner-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #ff4d4d;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.banner-btn:hover {
  background-color: #ff4d4d;
  color: #fff;
}

/* ==============================
   RESPONSIVE DESIGN
============================== */

/* ===== Tablet & Small Laptop (≤1024px) ===== */
@media (max-width: 1024px) {
  .contact-banner {
    height: 80vh; /* Reduce height for smaller screens */
    justify-content: center;
    text-align: center;
    background-position: center center;
    padding: 0 40px;
  }

  .contact-content {
    margin-left: 0;
    max-width: 90%;
  }

  .contact-content h1 {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .contact-content p {
    font-size: 1.1rem;
  }

  .banner-btn {
    padding: 10px 26px;
    font-size: 1rem;
  }
}

/* ===== Mobile Phones (≤600px) ===== */
@media (max-width: 600px) {
  .contact-banner {
    height: 60vh;
    justify-content: center;
    text-align: center;
  }

  .contact-content {
    margin: 0;
    max-width: 100%;
  }

  .contact-content h1 {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .contact-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .banner-btn {
    font-size: 0.95rem;
    padding: 10px 22px;
    border-width: 1.5px;
  }
}




.contact-section {
  display: flex;
  justify-content: space-between;
  padding: 100px 8%;
  flex-wrap: wrap;
  background-color: #fff;
  gap: 50px;
}

.contact-left {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.contact-left h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-left p {
  margin-bottom: 30px;
  font-size: 1rem;
  color: #333;
}

.contact-info .country {
  margin-bottom: 40px;
}
.contact-info .country-1 {
  margin-bottom: 40px;
}
.country p{
  margin-bottom: 10px;
}
.country-1 p{
  margin-bottom: 10px;
}

.country h3 {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.country-1 h3 {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.flag {
  width: 24px;
  height: auto;
  margin-right: 10px;
}

.contact-right {
  flex: 1;
  min-width: 300px;
  background-color: #10141c;
  padding: 30px;
  border-radius: 6px;
  color: #fff;
}

.contact-right form h2 {
  color: #ff3c3c;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-right input, textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-right textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-right button {
  width: 100%;
  background-color: #ff3c3c;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #e03030;
}



@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .contact-left,
  .contact-right {
    padding: 20px;
    margin-bottom: 0px;
  }

  .form-row {
    flex-direction: column;
  }

  .flag {
    width: 20px;
  }

  .contact-left h2 {
    font-size: 1.5rem;
  }

  .contact-right form h2 {
    font-size: 1.4rem;
  }
}



/* === Scroll Animation Base Styles === */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up:nth-child(1) { transition-delay: 0.1s; }
.fade-in-up:nth-child(2) { transition-delay: 0.2s; }
.fade-in-up:nth-child(3) { transition-delay: 0.3s; }
.fade-in-up:nth-child(4) { transition-delay: 0.4s; }
