 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Manrope, Arial, sans-serif;
}

.banner-contact {
  position: relative;
  width: 100%;
  min-height: 300px;
  background: url(../images/Banner/banner-contact.jpg) no-repeat center center !important;
  background-position: center center;
  background-repeat: no-repeat;
  
  display: flex;
  align-items: center;
  
  overflow: hidden;
  background-color: #000000;
 

  background-size: cover !important;
  height: 300px;
  position: relative;
  z-index: 2;
  
}
.banner-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.73); /* 🔥 dark overlay */
  z-index: 1;
}

/* TEXT */
.banner-content {
  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center; 
  color: #fff;
  z-index: 2;
  text-align: center; /* 🔥 text center */
  width: 100%;
  
  
} 

.banner-content h2 {
  font-size: 40px;
  color: #e3e3e3;
  font-family: "Roboto",sans-serif;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 0;
   letter-spacing: -1px;
  
}

.banner-content p {
  font-size: 18px;
}

.banner-content span {
  margin: 0 10px;
}

/* IMAGE */
.banner-image {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 100%;
  background: #000; /* black background */
  padding: 0 20px;
}

.banner-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .banner-contact {
    padding: 40px;
  }

  .banner-content h1 {
    font-size: 48px;
  }

  .banner-image {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .banner-contact {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 30px 20px;
  }

  .banner-content h2 {
    font-size: 40px;
  }

  .banner-image {
    position: relative;
    max-width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .banner-content h2 {
    font-size: 32px;
  }

  .banner-content p {
    font-size: 16px;
  }
}

.contact-wrapper {
  width: 100%;
  background-color: #f4f4f4; /* 🔥 full width background */
  padding: 50px 0;
   opacity: 0.94;
  transition:
    background 0.3s,
    border-radius 0.3s,
    opacity 0.3s;
}
 
 .container-11 {
 height: auto;

 
  width: 100%;


  

  max-width: 1250px;   /* 🔥 center width control */
  margin: 0 auto;      /* 🔥 center */
  display: flex;
  align-items: stretch; /* 🔥 equal height */
  justify-content: center;
  gap: 0;              /* 🔥 no gap */
  padding: 30px 20px;
}

.left {
  flex: 1;
  padding: 80px;
}

.small-title {
 
  margin-bottom: 10px;

  color: #4e4e4e;
  font-family: "Nunito", Sans-serif;
  font-size: 1em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  gap: 15px;
  
}
.small-title span{
      
    color: #ffab00;
    display: inline-block;
    margin-right: 4px;
    line-height: 1em;
    position: relative;
    top: -1px;
    
}

.small-title::before {
  content: "";
  width: 40px;
  height: 2px;
  background: #5c6f8c;
  display: inline-block;
  
}

.left h2 {
  
  margin-bottom: 30px;
      color: #363636;
    font-size: 48px;
    font-family: "Roboto",sans-serif;
        line-height: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.icon {
  width: 45px;
  height: 45px;
  background: #546a8c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 18px;
}

.contact-text h3 {
  margin-bottom: 5px;
      font-family: "Nunito", Sans-serif;
    font-size: 23.04px;
    font-weight: 700;
    color: #5A5959;
}
.contact-text p{
  color: #000000;
  font-family: "Roboto",sans-serif;
  margin-bottom: 0px !important;
}
.left,
.right {
  flex: 1; /* 🔥 equal width */
}

/* Right Section */
.right {
  flex: 1.3;
  background: #fff;
  padding: 10px;
  border-radius: 20px;
  min-height: auto;
   display: flex;              /* 👈 add */
  flex-direction: column;
}

.right .border-form{
  display: flex;
  flex-direction: column;
  height: 100%;

}

.right h2 {
  padding-left: 15px;
  font-size: 48px;
  color: #17262F;;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Form */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
 
}
.border-form{

  border: 2px solid #A0A0A0;

  display: flex;
  flex-direction: column;
  height: 100%;

  padding: 20px; 
}

.form-group {
  flex: 1;
}

input,
textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px;
  outline: none;
  
  
}
textarea {
  resize: none;
height: 600px;    
  height: 150px;  
}



/* Button */
button {
  width: 100%;
  background: #ff6f00;
  color: white;
  padding: 15px;
  border: none;
  margin-top: 30px;
  cursor: pointer;
  font-size: 16px;
 
}

button:hover {
  background: #e65c00;
}

/* Responsive */
@media (max-width: 900px) {
  .container-11 {
    flex-direction: column;
    padding: 20px;
  }

  .form-row {
    flex-direction: column;
  }
  .left,
  .right {
    width: 100%;
    padding: 30px;
  }
}


.map-wrapper {
  
  padding: 15px 15px 10px 15px; 
  box-sizing: border-box;  /* ensures padding doesn’t increase overall width */
}