/* =====================================================
CONTACT HERO SECTION
===================================================== */

.contact-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #705beb, #8f63e7, #f3a2c6);
  padding: 80px 0 180px;
  color: #fff;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Hero Title */

.contact-title {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;

  background: linear-gradient(90deg, #ffffff, #f1f5ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

  animation: fadeSlide 1s ease;
}

.contact-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #fff;
  margin: 15px auto 0;
  border-radius: 10px;
  opacity: .7;
}

/* Subtitle */

.contact-subtitle {
  font-size: 19px;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
  opacity: .95;

  animation: fadeSlide 1.3s ease;
}

/* Floating Background Icons */

.hero-bg-icons i {
  position: absolute;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.08);
  animation: floatIcons 8s infinite ease-in-out;
}

.hero-bg-icons i:nth-child(1) {
  top: 20%;
  left: 10%;
}

.hero-bg-icons i:nth-child(2) {
  top: 40%;
  right: 15%;
  animation-delay: 2s;
}

.hero-bg-icons i:nth-child(3) {
  top: 60%;
  left: 20%;
  animation-delay: 4s;
}

.hero-bg-icons i:nth-child(4) {
  top: 25%;
  right: 30%;
  animation-delay: 6s;
}

@keyframes floatIcons {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-20px)
  }
}

/* Hero Animation */

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(20px)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}


/* =====================================================
FLOATING PARTICLES
===================================================== */

.particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: particleMove 10s linear infinite;
}

.particles span:nth-child(1) {
  left: 20%;
  top: 40%;
  animation-duration: 12s;
}

.particles span:nth-child(2) {
  left: 35%;
  top: 60%;
  animation-duration: 10s;
}

.particles span:nth-child(3) {
  left: 60%;
  top: 50%;
  animation-duration: 14s;
}

.particles span:nth-child(4) {
  left: 75%;
  top: 30%;
  animation-duration: 9s;
}

.particles span:nth-child(5) {
  left: 50%;
  top: 20%;
  animation-duration: 11s;
}

@keyframes particleMove {
  0% {
    transform: translateY(0);
    opacity: 0
  }

  50% {
    opacity: 1
  }

  100% {
    transform: translateY(-60px);
    opacity: 0
  }
}


/* =====================================================
CONTACT SECTION
===================================================== */

.contact {
  padding: 60px 0;
  background: linear-gradient(180deg, #fff, #f6e7ff, #fff);
  position: relative;
}

/* decorative gradient background */

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;

  z-index: 0;
}

/* container */

.contact .container {
  position: relative;
  z-index: 2;
}


/* =====================================================
CONTACT INFO CARDS
===================================================== */

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 20px;
}

/* card */

.contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

/* hover effect */
.contact-info .info-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* gradient left border */
.contact-info .info-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: linear-gradient(180deg, #705beb, #8f63e7);
}

/* icon */
.contact-info .info-item i {
  min-width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #705beb, #8f63e7);
  color: #fff;
  font-size: 22px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(112, 91, 235, 0.4);
}

/* text */
.contact-info .info-item p {
  margin: 0;
  line-height: 1.6;
  font-size: 16px;
}

/* links */

.contact-info .info-item a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.contact-info .info-item a:hover {
  color: #705beb;
}


/* =====================================================
CONTACT FORM CARD
===================================================== */

.contact-form {
  background: #fff;
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* top decorative gradient */
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #705beb, #8f63e7, #f3a2c6);
}

/* title */
.contact-form h3 {
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 26px;
}


/* inputs */
.contact-form .form-control {
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #ddd;
  transition: all .3s ease;
  font-size: 15px;
}

.contact-form .form-control:focus {
  border-color: #705beb;
  box-shadow: 0 0 0 3px rgba(112, 91, 235, 0.12);
}


/* textarea */
.contact-form textarea {
  resize: none;
}

/* =====================================================
BUTTON
===================================================== */
.btn-contact {
  background: linear-gradient(135deg, #705beb, #8f63e7);
  color: #fff;
  padding: 14px 45px;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: all .3s ease;
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(112, 91, 235, 0.4);
}


/* =====================================================
GOOGLE MAP
===================================================== */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: 0;
}



/* =====================================================
WAVES
===================================================== */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.waves {
  width: 100%;
  height: 120px;
}

.wave-parallax use {
  animation: waveMove 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.wave-parallax use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.wave-parallax use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.wave-parallax use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.wave-parallax use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes waveMove {
  0% {
    transform: translate3d(-90px, 0, 0)
  }

  100% {
    transform: translate3d(85px, 0, 0)
  }
}


/* =====================================================
RESPONSIVE
===================================================== */

@media(max-width:991px) {
  .contact-hero {
    padding: 60px 0 110px;
  }

  .contact-form {
    margin-top: 30px;
    padding: 35px;
  }

  .contact-title {
    font-size: 42px;
  }
}

@media(max-width:768px) {
  .contact-title {
    font-size: 36px;
  }

  .contact-subtitle {
    font-size: 16px;
    padding: 0 10px;
  }

.contact-info .info-item {
    flex-direction: column;
    text-align: center;

  }

  .contact-info .info-item::before {
    width: 100%;
    height: 5px;
    top: 0;
  }

  .contact-info .info-item i {
    margin-bottom: 8px;
  }

  .contact-form {
    padding: 30px;
  }
}

