/* style.css */


/* Overall Section */
.contact-section {
  padding: 80px 5vw;
}



/* Section Heading */
.contact-heading {
  text-align: center;
}

.contact-heading h1 {
  font-size: 37px;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #001a40;
  line-height: 52px;
}

.contact-heading p {
  font-size: 18px;
  color: #001a40b0;
  margin-bottom: 3rem;
}

/* Columns Layout */
.contact-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;

}

/* Left: Contact Info */
.contact-info {
  flex: 0 0 37%;
  max-width: 37%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.contact-block i {
  font-size: 32px;
  color: #005dd6;
  margin: 0;
}

.contact-block strong {
  display: block;
  font-weight: 600;
  color: #001a40;
  line-height: 29px;
  margin: 0;
}

.contact-block p {
  margin: 0;
  font-size: 16px;
  line-height: 29px;
  font-weight: 400;
  color: #001a40b0;
}

.contact-phone {
  display: block;
  color: rgb(0, 26, 64);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}

.contact-phone-1 {
  display: block;
  color: rgb(0, 26, 64);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-top: 10px;
}

.contact-phone:hover,
.contact-phone-1:hover {
  text-decoration: underline;
}

.map-link,
.email-link {
  margin: 0;
  font-size: 16px;
  line-height: 29px;
  font-weight: 400;
  color: #001a40b0;
  text-decoration: none;
}

.map-link:hover,
.email-link:hover {
  text-decoration: underline;
}

/* Social Icons */
.contact-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.contact-icon-box {
  width: 42px;
  height: 42px;
  border: 1.5px solid #005dd6;
  border-radius: 15px 0 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-icon-box a {
  color: #005dd6;
  font-size: 22px;
  text-decoration: none;
}

.contact-icon-box a:hover {
  transform: scale(1.2);
}

/* 🔹 Facebook Blue */
.contact-icon-box a[href*="facebook"]:hover {
  color: #1877f2;
  border-color: #1877f2;
}

/* 🔸 Instagram Pink */
.contact-icon-box a[href*="instagram"]:hover {
  color: #e4405f;
  border-color: #e4405f;
}

/* X Black */
.contact-icon-box a[href*="x.com"]:hover i,
.contact-icon-box a[href*="twitter.com"]:hover i {
  background: linear-gradient(45deg, #000000, #434343);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 🔷 LinkedIn Blue */
.contact-icon-box a[href*="linkedin"]:hover {
  color: #0a66c2;
  border-color: #0a66c2;
}

/* 🔴 YouTube Red */
.contact-icon-box a[href*="youtube"]:hover {
  color: #ff0000;
  border-color: #ff0000;
}

/* Right: Enquiry Form */
.form-contact {
  flex: 0 0 60%;
  max-width: 60%;
}

.enquiry-form-box {
  width: 100%;
  max-width: 850px;
  height: 100%;
  background: #F8FAFE;
  border-radius: 35px 0 35px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.enquiry-form-title {
  font-size: 30px;
  line-height: 42px;
  font-size: 600;
  color: #001a40;
}

.enquiry-form-subtitle {
  font-size: 18px;
  line-height: 32px;
  font-size: 400;
  color: #001a40b0;
}

/* Form Fields */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.enquiry-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.row-2 .enquiry-group {
  flex: 1 1 calc(50% - 10px);
}

.enquiry-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.enquiry-group label {
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  margin-bottom: 6px;
  color: #001a40;
  text-transform: uppercase;
}

.enquiry-input,
.enquiry-group textarea {
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 14px;
  color: #001a40;
  resize: none;
  width: 100%;
}

.enquiry-group textarea {
  min-height: 120px;
}

/* Placeholder Styling */
.enquiry-input::placeholder,
.enquiry-group textarea::placeholder {
  color: #001a4080;
}


/* Submit Button */
.enquiry-submit-button {
  align-self: center;
  background: #267FFF;
  width: 100%;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.enquiry-submit-button:hover {
  background: #1f66cc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-columns {
    flex-direction: column;
    padding: 0; /* Ensures no side padding */
    margin: 0;
  }

  .contact-info,
  .form-contact {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  .enquiry-form-box {
    box-shadow: none;
    padding: 1.5rem 1rem; /* Reduce for smaller screens */
  }

  .enquiry-form {
    border: none;
  }

  .contact-block {
    width: 100%;
  }

  .row-2 .enquiry-group {
    flex: 1 1 100%;
  }

  .enquiry-submit-button {
    width: 100%;
    text-align: center;
  }

  .contact-heading h1 {
    font-size: 28px;
    margin-top: 80px;
  }

  .contact-heading p {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}
