/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* FULLSCREEN */
.contact-fullscreen {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
}

/* BACKGROUND */
.bg-image {
  position: absolute;
  inset: 0;
  background: url('../images/contact-us.webp') center/cover no-repeat;
  z-index: 0;
  animation: zoomBg 20s ease-in-out infinite alternate;
}

/* BACKGROUND ANIMATION */
@keyframes zoomBg {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 40, 60, 0.8);
  z-index: 1;
}

/* CONTAINER */
.contact-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
}

/* LEFT */
.contact-info {
  flex: 1;
  color: #fff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #26c6da;
}
.contact-info p{
  font-size: 17px !important;
}

.info-text {
  margin-bottom: 30px;
}

/* INFO ITEMS */
.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
}

/* STAGGER */
.info-item:nth-child(3) { animation-delay: 0.4s; }
.info-item:nth-child(4) { animation-delay: 0.6s; }
.info-item:nth-child(5) { animation-delay: 0.8s; }

.info-item span {
  margin-right: 10px;
}

/* RIGHT */
.contact-form-box {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-left: 1px solid rgba(255,255,255,0.2);
}

.contact-form-box h2 {
  color: #fff;
  margin-bottom: 20px;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* INPUT ANIMATION */
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
  background: rgba(255,255,255,0.9);
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(38,198,218,0.5);
}

/* BUTTON */
.contact-form button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #26c6da;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}

.contact-form button:hover {
  background: #00acc1;
  transform: translateY(-2px);
}

/* ENTRY ANIMATIONS */
.animate-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideLeft 1s forwards;
}

.animate-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideRight 1s forwards;
  animation-delay: 0.3s;
}

@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form-box {
    padding: 25px;
    text-align: center;
  }

  .contact-form-box {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.2);
  }

  .info-item {
    justify-content: center;
  }
}
/* FLOATING INPUTS */
.floating-group {
  position: relative;
}

.floating-group input,
.floating-group textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  outline: none;
}

/* LABEL */
.floating-group label {
  position: absolute;
  left: 12px;
  top: 14px;
  color: #555;
  font-size: 0.9rem;
  transition: 0.3s;
  pointer-events: none;
}

/* FLOAT EFFECT */
.floating-group input:focus + label,
.floating-group input:valid + label,
.floating-group textarea:focus + label,
.floating-group textarea:valid + label {
  top: -8px;
  left: 10px;
  font-size: 0.75rem;
  background: #26c6da;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
}

/* ICONS */
.info-item i {
  margin-right: 10px;
  color: #26c6da;
}

/* MAP */
.map-box {
  margin-top: 25px;
  border-radius: 10px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 180px;
  border: 0;
}

/* FORM STATUS */
.form-status {
  margin-top: 10px;
  font-size: 0.9rem;
}