* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

body {
  overflow-x: hidden;
}

/* ================= CONTACT SECTION ================= */
.contact {
  min-height: 100vh;
  padding: 90px 6%;
  background: linear-gradient(135deg, #fdecef, #fbd3dc);
}

/* CONTAINER */
.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* TEXT */
.contact-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  margin-bottom: 20px;
}

.contact-text span {
  color: #c13d5a;
}

.contact-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 30px;
}

/* CONTACT INFO */
.contact-info div {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 16px;
}

.contact-info i {
  color: #c13d5a;
  font-size: 18px;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 25px;
  display: flex;
  gap: 16px;
  
}

.social-icons a {
  width: 46px;
  height: 46px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4a6b8;
  text-decoration: none;
  font-size: 20px;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(244,166,184,0.35);
}

.social-icons a:hover {
  background: #c13d5a;
  color: white;
  transform: translateY(-6px) scale(1.1);
}

/* IMAGE */
.contact-image img {
  width: 420px;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(244,166,184,0.4);
  animation: floatImage 5s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .contact-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .contact-text h1 {
    font-size: 36px;
  }

  .contact-text p {
    font-size: 15px;
  }

  .contact-info {
    justify-content: center;
  }

  .contact-info div {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-image img {
    width: 260px;
    margin-bottom: 30px;
  }


  
}
