* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', sans-serif;
  height: 100vh;
  overflow: hidden;
  background: url('images/contactbg.png') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.logo {
  height: 100px;
}
.nav-box {
  border: 2px solid #e96cbf;
  border-radius: 30px;
  padding: 6px 12px;
  display: flex;
  gap: 10px;
}
.navbar-nav .nav-link {
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 20px;
  color: #000;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: #e96cbf;
  color: #fff !important;
}
.contact-btn {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
}
.contact-btn:hover {
  background: #e96cbf;
  color: #000;
}

/* CONTACT SECTION */
.contact-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 60px;
}

.contact-overlay {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: stretch;
  padding: 40px;
  gap: 40px;
}


.contact-photo-container {
  flex: 1;
  display: flex;
  justify-content: center; 
  align-items: center;    
}
.contact-photo {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
}

.divider-line {
  width: 1px;
  height: 420px;
  background-color: white;
  opacity: 0.8;
}

.contact-form-area {
  flex: 1;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.contact-title {
  font-size: 36px;
  font-weight: 700;
}
.contact-subtitle {
  font-style: italic;
  font-size: 16px;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}


.contact-form .form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 20px;
  border: none;
  font-size: 14px;
}

.contact-btn.active-btn {
  background-color: #e96cbf;
  color: #000;
  pointer-events: none;
}


.contact-btn.active-btn:hover {
  background-color: #e96cbf;
  color: #000;
}

.message-box {
  resize: none;
  margin-bottom: 20px;
}

.form-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.footer-icon {
  width: 20px;
  height: 20px;
}

.icon-black {
  filter: brightness(0);
}

.submit-btn {
  background-color: white;
  color: black;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  background-color: #e96cbf;
  color: white;
}

/* FOOTER */
.footer {
  background: #e96cbf;
  color: #000;
  padding: 14px 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer .nav {
  flex-direction: row !important;
  gap: 24px;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.footer .d-flex {
  gap: 16px;
  justify-content: center;
}

.footer-logo {
  height: 100px;
}
footer .nav-link {
  color: #000 !important;
}
footer .nav-link:hover {
  background-color: #fff;
  border-radius: 20px;
}

@media (max-width: 991px) {
  html, body {
    overflow-y: auto;
  }

  .contact-section {
    padding: 20px;
  }

  .contact-overlay {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }

  .contact-photo-container,
  .contact-form-area {
    width: 100%;
  }

  .contact-photo {
    max-width: 100%;
  }

  .divider-line {
    display: none;
  }

  .contact-title {
    font-size: 28px;
    text-align: center;
  }

  .contact-subtitle {
    text-align: center;
    margin-bottom: 16px;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .form-footer {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
  }

  .submit-btn {
    width: 100%;
    text-align: center;
  }

  .social-icons {
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer .nav {
    justify-content: center !important;
  }

  .footer .d-flex {
    justify-content: center;
  }

  .navbar-collapse {
    background-color: #000;
    border-radius: 20px;
    padding: 20px 0;
    margin-top: 15px;
    text-align: center;
  }
	
  .nav-box {
    flex-direction: column;
    align-items: center;
    border: none;
    gap: 10px;
    padding: 0;
    margin: 0 auto;
    width: 100%;
  }

  .navbar-nav {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
	
  .navbar-nav .nav-link {
    color: #fff !important;
  }

  .navbar-nav .nav-link.active {
    background-color: #e96cbf !important;
    color: #fff !important;
  }

  .navbar-toggler {
    border: none;
    padding: 4px;
  }


  .navbar-toggler-icon {
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}


