/* =======================
   Root Variables
======================= */

:root {
  /* Fonts */
  --font-body: "Noto Sans", sans-serif;
  --font-heading: "Cormorant Garamond", serif;

  /* Colors */
  --color-bg: #f6f6f6;
  --color-text: #f0f0f0;
  --color-white: #ffffff;
  --color-gray-light: #d1d5db;
  --color-gray-soft: rgba(255, 255, 255, 0.6);
  --color-nav-bg: rgba(30, 41, 59, 0.95);

  /* Font Sizes */
  --fs-xs: 0.875rem;
  --fs-sm: 0.9rem;
  --fs-base: 1rem;
  --fs-lg: 3rem;
  --fs-xl: 6rem;

  /* Letter Spacing */
  --ls-sm: 0px;
  --ls-md: 0.2em;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);

  /* Z-index */
  --z-header: 50;
  --z-menu: 99;
  --z-video: -1;

  /* Spacing */
  --sp-header-y: 2rem;
  --sp-header-x: 4rem;
  --sp-nav-item: 0.5rem 1rem;
}

.contact-hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100%;
}
.contact-hero-section-wrapper {
  width: 100%;
  height: 50vh;
  background: url("../images/page-contact/contact-hero.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-hero-section-wrapper-inner {
  width: 90%;
  margin-top: 110px;
}
.contact-hero-section-wrapper-inner h6 {
  font-size: 75px;
  font-weight: 400;
  font-family: var(--font-heading);
  color: #ffffff;
}
.contact-hero-section-wrapper-inner p {
  font-size: 20px;
  font-weight: 300;
  font-family: var(--font-body);
  line-height: 1.2;
  color: #ffffff;
  width: 50%;
  margin-top: 30px;
}

/* =======================
   Responsive Styles
   ======================= */

/* ≤1366px */
@media (max-width: 1366px) {
  .contact-hero-section-wrapper-inner h6 {
    font-size: 60px;
  }
  .contact-hero-section-wrapper-inner p {
    font-size: 18px;
    width: 50%;
    margin-top: 10px;
  }
  .contact-form-section-wrapper-right-container{
    margin-top: 10%;
  }
}

/* ≤1200px */
@media (max-width: 1200px) {
  .contact-hero-section-wrapper-inner h6 {
    font-size: 55px;
  }
  .contact-hero-section-wrapper-inner p {
    font-size: 18px;
    width: 50%;
  }
}

/* ≤992px */
@media (max-width: 992px) {
  .contact-hero-section-wrapper {
    height: auto;
    padding: 80px 0;
  }
  .contact-hero-section-wrapper-inner {
    margin-top: 10%;
    text-align: center;
  }
  .contact-hero-section-wrapper-inner h6 {
    font-size: 44px;
  }
  .contact-hero-section-wrapper-inner p {
    font-size: 16px;
    width: 80%;
    margin: 20px auto 0;
  }
}

/* ≤768px */
@media (max-width: 768px) {
  .contact-hero-section-wrapper {
    height: auto;
    padding: 150px 0;
  }
  .contact-hero-section-wrapper-inner h6 {
    font-size: 36px;
  }
  .contact-hero-section-wrapper-inner p {
    font-size: 15px;
    width: 90%;
  }
}

/* ≤576px */
@media (max-width: 576px) {
  .contact-hero-section-wrapper-inner{
    margin-top: 15%;
  }
  .contact-hero-section-wrapper-inner h6 {
    font-size: 28px;
  }
  .contact-hero-section-wrapper-inner p {
    font-size: 14px;
    width: 100%;
  }
}

/*========================
      Contact form
==========================*/
.contact-form-section {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-form-section-wrapper {
  width: 90%;
  height: 50vh;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  /* border: 1px solid blue; */
}
.contact-form-section-wrapper-left-container {
  /* border: 1px solid red; */
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
}
.contact-form-section-wrapper-left-container-top {
  width: 45%;
}
.contact-form-section-wrapper-left-container-top p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  color: #353b3c;
  line-height: 1.2;
}

.contact-form-section-wrapper-left-container-center ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form-section-wrapper-left-container-center ul li {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #353b3c;
  display: flex;
  align-items: center;
}
.contact-form-section-wrapper-left-container-center ul li span {
  margin-right: 30px;
}
.contact-section-inner-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  z-index: 1;
  width: 35%;
}
.contact-section-inner-buttons .button1 {
  width: 240px;
  height: 70px;
  background-color: #eac9c1;
  color: black;
  border: 2px solid var(--color-bg);
  padding: 0.75rem 2rem;
  border-radius: 0;
  transition: background-color var(--transition-fast),
    color var(--transition-fast);
  z-index: 9999;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
}
.contact-section-inner-buttons .button2 {
  width: 240px;
  height: 70px;
  background-color: black;
  color: white;
  border: 2px solid var(--color-bg);
  padding: 0.75rem 2rem;
  border-radius: 0;
  transition: background-color var(--transition-fast),
    color var(--transition-fast);
  z-index: 9999;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
}
.contact-section-inner-buttons .button1:hover {
  background-color: black;
  color: white;
}
.contact-section-inner-buttons .button1:hover span img {
  filter: brightness(0) invert(1); /* black → white */
  transition: filter 0.3s ease; /* smooth */
}

.contact-section-inner-buttons .button2:hover {
  background-color: #eac9c1;
  color: black;
}

.contact-section-inner-buttons .button2:hover span img {
  filter: grayscale(100%) brightness(0); /* pink → black */
  transition: filter 0.3s ease;
}

.contact-form-section-wrapper-right-container {
  /* border: 1px solid red; */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eac9c1;
  padding: 50px;
  position: relative;
  bottom: 250px;
}

.contact-form-section-wrapper-right-container .form-controll {
  padding: 20px;
  font-size: 12px;
  font-weight: 600;
  width: 100%;
  color: black;
  border-radius: 0;
  border: none;
}

.contact-form-section-wrapper-right-container textarea {
  padding: 40px 20px !important;
  font-size: 12px;
  font-weight: 600;
  color: black;
  border-radius: 0;
}
.contact-form-section-wrapper-right-container .form-check-label {
  font-size: 14px;
  font-weight: 400;
  color: #353b3c;
}

.contact-form-section-wrapper-right-container .bttn {
  width: 240px;
  height: 70px;
  background-color: black;
  color: white;
  /* border: 2px solid var(--color-bg); */
  padding: 0.75rem 2rem;
  border-radius: 0;
  transition: background-color var(--transition-fast),
    color var(--transition-fast);
  z-index: 9999;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  border: none;
  font-weight: 600;
}

.contact-form-section-wrapper-right-container .bttn:hover {
  background-color: white;
  color: black;
}

.contact-form-section-wrapper-right-container .bttn:hover span img {
  filter: grayscale(100%) brightness(0); /* pink → black */
  transition: filter 0.3s ease;
}

#formResponse .alert {
  transition: opacity 0.5s ease-in-out;
}

/* =======================
   Responsive Breakpoints
   ======================= */

/* ≤1366px */
@media (max-width: 1366px) {
  .contact-form-section-wrapper {
    height: 90vh;
  }

  .contact-form-section-wrapper-left-container-top {
    width: 80%;
  }
  .contact-form-section-wrapper-left-container-top p {
    font-size: 18px;
  }
}

/* ≤1200px */
@media (max-width: 1200px) {
  .contact-form-section-wrapper {
    gap: 30px;
  }
  .contact-form-section-wrapper-right-container {
    padding: 40px;
  }
}

/* ≤992px */
@media (max-width: 992px) {
  .contact-form-section {
    display: flex;
    height: 80vh;
    justify-content: center;
    align-items: flex-start;
  }
  .contact-form-section-wrapper {
    flex-direction: column;
    align-items: center;
    /* gap: 50px; */
    gap: 0px;
    margin-top: 5%;
  }
  .contact-form-section-wrapper-left-container {
    align-items: left;
    text-align: left;
  }
  .contact-form-section-wrapper-left-container-top {
    width: 100%;
  }
  .contact-form-section-wrapper-right-container {
    /* width: 100%; */
    padding: 40px 20px;
    position: static;
  }
}

/* ≤768px */
@media (max-width: 768px) {
  .contact-form-section {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
  }
  .contact-form-section-wrapper {
    height: auto;
    gap: 50px;
  }
  .contact-form-section-wrapper-left-container-top p {
    font-size: 16px;
  }
  .contact-form-section-wrapper-left-container-center ul li {
    font-size: 13px;
  }
  .contact-section-inner-buttons .button1,
  .contact-section-inner-buttons .button2 {
    width: 200px;
    height: 60px;
    font-size: 11px;
    padding: 10px;
  }
  .contact-form-section-wrapper-right-container .bttn {
    width: 200px;
    height: 60px;
    font-size: 11px;
    padding: 10px;
  }
}

/* ≤576px */
@media (max-width: 576px) {
  .contact-form-section-wrapper {
    width: 100%;
    padding: 0 15px;
  }
  .contact-form-section-wrapper-right-container {
    padding: 30px 15px;
  }
  .contact-form-section-wrapper-left-container-top p {
    font-size: 14px;
  }
  .contact-section-inner-buttons {
    width: 100%;
    align-items: center;
  }
  .contact-section-inner-buttons .button1,
  .contact-section-inner-buttons .button2,
  .contact-form-section-wrapper-right-container .bttn {
    width: 100%;
  }
}




#formResponse {
  display: none;
  position: fixed;
  top: -100px; /* start hidden above viewport */
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  min-width: 300px;
  text-align: center;
  font-size: 16px;
  border-radius: 6px;
  padding: 12px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#formResponse.slide-message {
  animation: slideDown 0.6s ease forwards;
}

@keyframes slideDown {
  from { top: -100px; opacity: 0; }
  to { top: 100px; opacity: 1; }
}
