/* Contact Us Hero Section */
.contact-us {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

/* Swiper container */
.contact-us .swiper {
  width: 100%;
  height: 500px; /* default height */
}

/* Swiper slides */
.contact-us .swiper-slide {
  background-size: cover;        /* cover entire slide */
  background-position: center;   /* center the image */
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}

/* Optional overlay for better text readability */
.contact-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2); /* subtle dark overlay */
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .contact-us .swiper {
    height: 450px;
  }
}

@media (max-width: 992px) {
  .contact-us .swiper {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-us .swiper {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .contact-us .swiper {
    height: 300px;
  }
}


/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Jost:wght@400;600&display=swap');

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Section Layout */
.contact-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;

}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
  
}

/* Left Text Section */
.contact-text {
  flex: 1 1 50%;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f0ecec;
}

.contact-text h1 {
  font-family: 'Marcellus', sans-serif;
  font-weight: 400;
  color: rgb(2, 81, 87);
  font-size: 50px;
  line-height: 70px;
  margin-bottom: 40px;
}

.contact-text p {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: rgb(0, 0, 0);
  font-size: 18px;
  line-height: 31px;
  margin-bottom: 20px;
}

.enquire-btn {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  color: rgb(2, 81, 87);
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.enquire-btn:hover {
  letter-spacing: 1px;
}

/* Right Image Section */
.contact-image {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-text h1 {
    font-size: 55px;
    line-height: 60px;
  }
  .contact-text {
    padding: 80px 50px;
  }
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-text, .contact-image {
    flex: 1 1 100%;
    width: 100%;
  }

  .contact-text {
    text-align: center;
    padding: 60px 30px;
  }

  .contact-text h1 {
    font-size: 45px;
    line-height: 55px;
  }

  .contact-text p {
    font-size: 16px;
    line-height: 28px;
  }

  .enquire-btn {
    font-size: 18px;
  }
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Jost:wght@400&display=swap');

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  font-family: 'Jost', sans-serif;
  color: rgb(0, 0, 0);
}

/* Section Layout */
.enquiry-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

.enquiry-container {
  max-width: 1100px;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
 
  padding: 60px;
 
}

/* Titles */
.sub-title {
  font-family: 'Marcellus', sans-serif;
  font-size: 26px;
  color: rgb(2, 81, 87);
  text-align: center;
  margin-bottom: 10px;
  font-weight: 400;
}

.main-title {
  font-family: 'Marcellus', sans-serif;
  font-size: 50px;
  line-height: 70px;
  font-weight: 400;
  color: rgb(2, 81, 87);
  text-align: center;
  margin-bottom: 60px;
}

/* Form Layout */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.form-group {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  font-family: 'Jost', sans-serif;
}

label {
  font-size: 18px;
  line-height: 31px;
  margin-bottom: 8px;
}

.name-fields {
  display: flex;
  gap: 15px;
}

input, textarea, select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #999;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Jost', sans-serif;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: rgb(2, 81, 87);
}

/* Submit Button */
.submit-container {
  text-align: center;
  margin-top: 20px;
}

.submit-btn {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  padding: 12px 40px;
  border: 2px solid rgb(2, 81, 87);
  border-radius: 40px;
  color: rgb(2, 81, 87);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: rgb(2, 81, 87);
  color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
  .main-title {
    font-size: 50px;
    line-height: 55px;
  }

  .enquiry-container {
    padding: 40px;
  }
}

@media (max-width: 600px) {
  .main-title {
    font-size: 38px;
    line-height: 42px;
  }

  .name-fields {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  .enquiry-container {
    padding: 30px 20px;
  }
}
