/* ---- BODY & GENERAL STYLING ---- */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
 
  color: #fff;
  overflow-x: hidden;
}

/* ---- CONTACT SECTION ---- */
.contact-section {
  padding: 60px 20px;
  background: #000000;
  color: #fff;
  margin-top: 80px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* ---- FORM ---- */
.contact-form-wrapper {
  background: #111111;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 2px 4px 15px rgba(0,0,0,0.7);
}

.contact-form-wrapper h3 {
  font-size: 24px;
  color: #ed751f;
  margin-bottom: 5px;
}

.contact-form-wrapper h4 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 25px;
}

.contact-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.input-row {
  display: flex;
  gap: 20px;
}

.input {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.input label {
  font-size: 16px;
  margin-bottom: 5px;
  color: #fff;
}

.input input,
.input textarea,
.input select {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #444;
  background: #e9e9e9;
  color: #000;
  font-size: 16px;
}

.input textarea {
  resize: none;
}

.submit-button {
  padding: 12px 20px;
  font-size: 18px;
  background: #2a2a2a;
  color: #fff;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background:  #f3862d;
}

/* CONFIRMATION MESSAGE */
.confirmation {
  margin-top: 15px;
  background: #4caf50;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
  display: none;
}

/* ---- MAP ---- */
.map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  overflow: hidden;
  border-radius: 10px;
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- ANIMATIONS (FADE-UP) ---- */
.reveal {
  opacity: 1;              /* fully visible */
  transform: translateY(0); /* no shift */
  transition: all 1s ease;
}

/* Optional: if you want scroll animations later */
.reveal.scroll {
  opacity: 1;
  transform: translateY(30px);
}

.reveal.scroll.active {
  opacity: 1;
  transform: translateY(0);
}
/* ---- FADE-UP ANIMATION ---- */
.fade-up {
  opacity: 1;                /* start invisible */
  transform: translateY(30px); /* start slightly below */
  transition: all 1s ease;   /* smooth transition */
}

.fade-up.active {
  opacity: 1;                 /* fully visible */
  transform: translateY(0);   /* move to original position */
}

/* Optional: add animation delay for staggered effect */
.fade-up.delay-1 {
  transition-delay: 0.2s;
}

.fade-up.delay-2 {
  transition-delay: 0.4s;
}

.fade-up.delay-3 {
  transition-delay: 0.6s;
}


/* ---- MOBILE RESPONSIVE ---- */
@media (max-width: 900px) {
  .input-row {
    flex-direction: column;
  }
  .contact-form-wrapper h4 {
    font-size: 26px;
  }
  .map-wrapper {
    padding-bottom: 75%;
  }
}

@media (max-width: 600px) {
  .contact-form-wrapper h4 {
    font-size: 22px;
  }
  .map-wrapper {
    padding-bottom: 90%;
  }
}


