* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
  min-height: 100vh;
  background: url('../allImages/contactmeImages/contact page background.webp') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  
  animation-delay: 0.2s;
}

.contact-wrapper {
  width: 100%;
  max-width: 700px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.form-heading {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}


.phone-launcher {
  z-index: 1;
  margin-bottom: 20px;
}


#phone-icon {
  width: 150px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#phone-icon:hover {
  transform: scale(1.05);
}

#contactFormContainer {
  display: none;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 500px;
  animation: fadeIn 0.5s ease-in-out;
}

#contactFormContainer.show {
  display: block;
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#contactForm input,
#contactForm textarea,
#contactForm select,
#otherReason input {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border-radius: 5px;
  border: 1px solid #aaa;
}

#otherReason {
  margin-top: 10px;
}

#contactForm input[type="submit"] {
  background-color: #5181ff;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

#contactForm input[type="submit"]:hover {
  background-color: #3658c7;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

.extra-links {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #ccc;
  text-align: center;
  font-size: 0.95rem;
  color: #333;
}

.extra-links h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #000;
  margin-bottom: 8px;
}

.contact-icons a:first-child img {
  width: 50px;
  height: 50px;
  position: relative;
  left: 10px;
}



.icon {
  width: 24px;
  height: 24px;
}



/* TO DISABLE SCROLLING WHEN TRANSITION */
body.disable-scroll {
  overflow: hidden;
}


