/* Reset and Base */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'DM Sans', sans-serif;
}

.contact-section {
  background: url('../images/bg-contact.jpg') center center / cover no-repeat;
  background-position: center left;
  padding: 30px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Navbar */
.navbar {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.logo {
  width: 72px;
  height: 72px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links li a {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: 400;
  font-family: "Sora", sans-serif;
  line-height: normal;
  font-style: normal;
  font-size: 16px;
}

/* Underline using pseudo-element */
.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0%;
  background-color: #CC203B;
  transition: width 0.5s ease;
}

/* On hover: show underline and start animation */
.nav-links li a:hover::after {
  width: 100%;
  animation: underlineColor 4s linear forwards;
}

/* Keyframes for color animation */
@keyframes underlineColor {
  0% {
    background-color: #CC203B;
  }

  25% {
    background-color: #ac1129;
  }

  50% {
    background-color: #6b0615;
  }

  100% {
    background-color: #280309;
  }
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 1000;
  /* Important to stay above nav */
}

/* 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;
  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 0;
  max-width: 1500px;
  width: 100%;
  position: relative;
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.2); */
  gap: 40px;
  background-color: transparent;
  border: none;
}


/* Left Panel */
.contact-info {
  flex: 1.5;
  background: #063533;
  color: white;
  border: 1px solid white;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: left;
  position: relative;
  margin: -10px;
  
}

.contact-info h2 {
  font-size: 22px;
  margin-bottom: 50px;
}

.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;
  margin-bottom: 20px;

}

.contact-info li img {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  color: wheat;
}
.social-icons p {
color:white;
}

.social-icons img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Bot Image */
.bot-floating {
position: absolute;
    left: 460px ;  /* Adjust horizontal position */
top: 50%;
transform: translateY(-50%);
width: 271px;
height: 229px;
border: 24px solid white;
border-radius: 16px;
background-color: rgb(255, 255, 255);
box-shadow: 0 8px 20px hwb(0 0% 100% / 0.149);
z-index: 1;                  /* keep behind badge */
}


.bot-floating img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  
}
@media (max-width: 1000px) {
  .bot-floating {
    background: none !important;   /* remove any background */
    padding: 0 !important;         /* remove padding */
    border: none !important;       /* remove border */
    box-shadow: none !important;   /* remove shadow if any */
  }

  .bot-floating img {
    border-radius: 0 !important;   /* remove rounded corners if needed */
  }
}
.mobile-image {
  display: none; /* Initially hide the mobile image on larger screens */
}

/* Styles for screens up to 768px wide (common breakpoint for mobile devices) */
@media screen and (max-width: 768px) {
  .desktop-image {
    display: none; /* Hide the desktop image on mobile */
  }

  .mobile-image {
    display: block; /* Show the mobile image on mobile */
  }
  .contact-section {
  padding: 30px 10px;
    background: url('../images/bg\ mobile.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.social-icons {
  align-items: center;
}
}


.whatsapp-badge {
position: absolute;
bottom: 0px;
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.2;
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 35px;
  width: 34px;
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(0deg, #FFFFFF, #FFFFFF),
linear-gradient(276.37deg, #CEC9C9 0%, #FFFFFF 25.2%, #FFFFFF 48.5%, #FFFFFF 73.13%, #CEC9C9 100%);


}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 1px;
  border: none;
  border-bottom: 1px solid rgb(189, 179, 179);
  font-size: 14px;
}


.contact-form textarea {
  resize: vertical;
}
.contact-form label{
  color: rgba(36, 36, 36,0.68);
}
.contact-form textarea::placeholder {
 font-family: 'DM Sans', sans-serif;
}

.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: 1000px) {
  .contact-content {
    width: 100%;
    flex-direction: column-reverse;
    align-items: center;
    padding: 20px;
    background: transparent;
    box-shadow: none;
  }

  .bot-floating {
    position: static;
    transform: none;
    margin: 30px auto;
  }

  .contact-form {
    width: 100%;  
  background: linear-gradient(0deg, #FFFFFF, #FFFFFF),
linear-gradient(276.37deg, #CEC9C9 0%, #FFFFFF 25.2%, #FFFFFF 48.5%, #FFFFFF 73.13%, #CEC9C9 100%);
  padding: 20px;
  border-radius: 10px;
  }

  .navbar {
    top: 15px;
  }


  .logo {
    width: 36px;
    height: 36px;
  }




  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
    color: white;
    font-size: 1.5rem;
  }

  .nav-links {
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    height: 100%;
    width: 100%;
    background: url('../images/home/general/bg1.jpg');
    display: none;
    flex-direction: column;
    align-items: end;
    /* right-align items */
    justify-content: start;
    /* top-align container */
    gap: 20px;
    padding: 120px 20px;
    border-radius: 0;
    z-index: 999;
    overflow: visible;
    transition: all 0.3s ease-in-out;
  }
  @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 {
    width: 95%;
    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-header h1{
    font-size: 23px;
  }
  .contact-header p{
    font-size: 11px;
  }
.whatsapp-badge{
  position: fixed;
  right: 10%;
  bottom: 100px;
}

}
}
  .contact-link {
  text-decoration: none;   /* remove underline */
  color: inherit;          /* keep same text color */
  cursor: pointer;         /* pointer cursor */
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.contact-link:hover {

  color: #007bff;             /* blue highlight on hover */
}

/* Popup overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup box */
.popup-box {
  background: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 350px;
  width: 90%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease-in-out;
}

.popup-box h2 {
  margin: 0 0 10px;
  color: #FA3A58;
}

.popup-box p {
  margin: 0 0 20px;
}

.popup-box button {
  background: #FA3A58;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.popup-box button:hover {
  background: #CC203B;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}