/* Reset and Base */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'DM Sans', sans-serif;
} */

.contact-section-page {
  background: url('../images2/home/general/bg1.jpg') repeat center center / cover;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h1 {
  font-size: 50px;
  color: white;
}

.contact-header h1 span {
  background: linear-gradient(90deg, #CC203B 0%, #FA3A58 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.contact-header p {
  color: #B3B3B3;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
}

/* Main Layout */
.contact-content {
  display: flex;
  background: white;
  border-radius: 12px;
  padding: 40px;
  max-width: 1500px;
  width: 100%;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  gap: 40px;
}

/* Left Panel */
.contact-info {
  flex: 1.2;
  background: #063533;
  color: white;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.contact-info h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.contact-info li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.4;
}

.contact-info li img {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 16px;
}

.social-icons img {
  width: 24px;
  height: 24px;
}

/* Bot Image */

.bot-floating {
position: absolute;
left: 440px;                 /* precise positioning between the two panels */
top: 50%;
transform: translateY(-50%);
width: 271px;
height: 229px;
border: 24px solid white;
border-radius: 16px;
background-color: lightgray;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
z-index: 1;                  /* keep behind badge */
}


.bot-floating img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.whatsapp-badge {
position: absolute;
bottom: 0;
right: 0;
transform: translate(50%, 50%); /* Straddle the corner over border */
width: 60px;
height: 60px;
background: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
z-index: 9999; /* Ensure it's above all other layers */
}





.whatsapp-badge img {
  width: 40px;
  height: 40px;
}
.contact-content {
display: flex;
background: white;
border-radius: 12px;
padding: 40px;
max-width: 1200px;
width: 100%;
position: relative;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
gap: 300px; /* ⬅️ Increased from 40px to 100px to create more space between left and right panel */
}

/* Right Panel: Form */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
  width: 34px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-bottom: 1px solid rgb(189, 179, 179);
  font-size: 14px;
}


.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  padding: 12px 24px;
  font-size: 14px;
  background: linear-gradient(90deg, #CC203B 0%, #FA3A58 100%);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(250, 58, 88, 0.3);
}

.contact-form button:hover {
  background: linear-gradient(90deg, #FA3A58 0%, #CC203B 100%);
}

/* Responsive */
@media (max-width: 740px) {
  .contact-content {
    flex-direction: column-reverse;
    align-items: center;
    padding: 20px;


  }

  .bot-floating {
    position: static;
    transform: none;
    margin: 30px auto;
  }

  .contact-form {
    width: 100%;
  }

  @media (max-width: 740px) {
  .bot-floating {
    margin-bottom: -250px; /* Reduce bottom space below bot */
    margin-top: -250px;    /* Optional: reduce top spacing if needed */
  }

  .contact-info {
    margin-top: 0px; /* Reduce top margin above contact info */
    padding-top: 20px; /* Optional: adjust internal spacing */
  }

  .contact-header {
    margin-bottom: 20px; /* Reduce gap below header if applicable */
  }
  .contact-section-page {
  background: url('../images2/home/general/bg1.jpg') repeat center center / cover;
  padding: 80px 16px;
}
.whatsapp-badge {
    right: 20px;
}
}

}