/* =============================================================
   contact.css — Reneta Cleaning · Contact Page Styles
   BEM prefix: ct-
   ============================================================= */

/* =============================================================
   SECTION 1: HERO
   ============================================================= */

.ct-hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  padding: 130px 0 80px 0;
  display: flex;
  align-items: flex-end;
  /* content sits at BOTTOM */
}

/* Background image — full cover, no opacity reduction */
.ct-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ct-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Gradient only at bottom-left so text is readable */
.ct-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to top,
      rgba(10, 22, 16, 0.72) 0%,
      rgba(10, 22, 16, 0.30) 50%,
      transparent 100%);
}

/* Content sits above bg + overlay */
.ct-hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.ct-hero-heading-box {
  max-width: 650px;
}

.ct-hero__title {
  font-family: var(--f-viet);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.ct-hero__title--green {
  color: var(--rc-green);
}

.ct-hero__subtitle {
  font-family: var(--f-viet);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;

  margin-bottom: 0;
}

/* Floating info card — bottom-right */
.ct-hero__info-card {
  border-radius: 16px;
  border: 1.333px solid var(--Abu-Stroke, #EBEBEB);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2.6666667461395264px);
  z-index: 2;

  padding: 32px;

  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 700px;
  margin: 0 auto
}

.ct-hero-child-box {
  border-radius: 16px;
  background: var(--White, #FFF);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Arrow button — right side inside the card */
.ct-hero__info-card-arrow {


  rotate: 320deg;
  width: 64px;
  height: 64px;
  border-radius: 80px;
  background: var(--Green-dental-muda, #E2F6F1);

  color: #070707;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.ct-hero__info-card-title {
  font-family: var(--f-viet);
  font-size: 32px;
  font-weight: 500;
  color: var(--rc-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.ct-hero__info-card-subtitle {
  font-family: var(--f-viet);
  font-size: 0.84rem;
  color: var(--rc-gray);
  line-height: 1.55;
  margin-bottom: 0;
}


/* =============================================================
   SECTION 2: CONTACT FORM
   ============================================================= */

.ct-form {
  background: #ffffff;
  padding: 90px 0;
}

/* "Our Gallery" label pill — filled light-green bg */
.ct-form__label {
  display: inline-block;
  background: #e6f6ee;
  color: var(--rc-green-dark);
  padding: 5px 18px;
  border-radius: 50px;
  font-family: var(--f-viet);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Heading */
.ct-form__title {
  font-family: var(--f-viet);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--rc-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}


/* Subtitle */
.ct-form__subtitle {
  font-family: var(--f-viet);
  font-size: 0.97rem;
  color: var(--rc-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Form wrapper */
.ct-form__form {
  width: 100%;
}

/* Visible field labels */
.ct-form__field-label {
  display: block;
  font-family: var(--f-viet);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rc-dark);
  margin-bottom: 6px;
}

.ct-form__required {
  color: #e53e3e;
  margin-left: 2px;
}

/* Text inputs */
.ct-form__input {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 32px;
  font-size: 0.95rem;
  font-family: var(--f-viet);
  color: var(--rc-dark);
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s;
  height: 50px;
}

.ct-form__input::placeholder {
  color: #575757;
  font-size: 0.92rem;
}

.ct-form__input:focus {
  border-color: var(--rc-green-dark);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(23, 141, 113, 0.10);
}

/* Textarea */
.ct-form__textarea {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-family: var(--f-viet);
  color: var(--rc-dark);
  background: #f8fafc;
  outline: none;
  resize: vertical;
  min-height: 300px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s;
}

.ct-form__textarea::placeholder {
  color: #a0aec0;
  font-size: 0.92rem;
}

.ct-form__textarea:focus {
  border-color: var(--rc-green-dark);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(23, 141, 113, 0.10);
}

/* Submit button */
.ct-form__submit {
  width: 100%;
  background: #178D71;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--f-viet);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  margin-top: 0.5rem;
  box-shadow: 0 6px 20px rgba(23, 141, 113, 0.30);
}

.ct-form__submit:hover {
  background: var(--rc-dark);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.20);
}

.ct-form__submit:active {
  transform: translateY(1px);
}

/* Legal text */
.ct-form__legal {
  font-family: var(--f-viet);
  font-size: 0.8rem;
  color: var(--rc-gray);
  text-align: left;
  margin-top: 1.5rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.ct-form__legal a {
  color: var(--rc-green-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.ct-form__legal a:hover {
  color: var(--rc-dark);
  text-decoration: underline;
}

/* Phone input icon wrapper */
.ct-form__input-icon-wrap {
  position: relative;
}

.ct-form__input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  display: flex;
  align-items: center;
  pointer-events: none;
}

/* Input with icon — extra left padding */
.ct-form__input--icon {
  padding-left: 38px;
}

/* Side image */
.ct-form-right-image {
  width: 100%;
  border-radius: 20px;

  height: 100%;

  display: block;
}


/* =============================================================
   SECTION 3: CONTACT INFO
   ============================================================= */

.ct-info {
  background: #111827;
  padding: 120px 0;
  text-align: center;
}

.ct-info__title {
  font-family: var(--f-viet);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.2;
}

/* Info cards */
.ct-info__card {
  background: #178D71;
  border-radius: 18px;
  padding: 80px 28px;
  text-align: center;
  height: 100%;
  transition: background 0.2s, transform 0.2s;
  color: white;
}

.ct-info__card:hover {
  background: #13785f;
  transform: translateY(-3px);
}

.ct-info__card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: #ffffff;
  flex-shrink: 0;
}

.ct-info__card-icon svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

/* Phone / Email value */
.ct-info__card-value {
  color: #ffffff;
  font-family: var(--f-viet);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

/* Subtitle below value */
.ct-info__card-label {
  color: rgba(255, 255, 255, 0.80);
  font-family: var(--f-viet);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 0;
}


/* =============================================================
   RESPONSIVE
   ============================================================= */


@media (max-width: 1199px) {
  .ct-hero-heading-box {
    max-width: 100%;
  }

  .ct-hero {
    min-height: auto;
    padding: 180px 0 55px;
    text-align: center;
  }

  .ct-hero__info-card {
    margin-top: 25px;
  }

  .ct-hero__title {
    font-size: clamp(2.2rem, 8vw, 4rem);
  }
}

@media (max-width: 991px) {

  .ct-hero-child-box {
    flex-direction: column;
    gap: 16px;
  }







}

@media (max-width: 768px) {
  .ct-hero {
    min-height: 60vh;
    padding: 110px 0 50px;
  }

  .ct-form {
    padding: 60px 0;
  }

  .ct-form__img {
    min-height: 320px;
    height: 360px;
  }

  .ct-info {
    padding: 60px 0;
  }

  .ct-info__card {
    padding: 32px 22px;
  }
}

@media (max-width: 575px) {
  .ct-hero {
    min-height: 50vh;
    padding: 95px 0 40px;
  }

  .ct-hero__title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .ct-hero__subtitle {
    font-size: 0.93rem;
  }

  .ct-form {
    padding: 50px 0;
  }

  .ct-form__img {
    min-height: 260px;
    height: 280px;
  }

  .ct-info {
    padding: 50px 0;
  }

  .ct-info__title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .ct-info__card-value {
    font-size: 1.2rem;
  }

  .ct-info__card {
    padding: 28px 18px;
  }
}

@media (max-width: 399px) {

  .ct-form__input,
  .ct-form__textarea {
    font-size: 0.9rem;
    padding: 11px 14px;
  }

  .ct-form__submit {
    font-size: 0.95rem;
    padding: 14px;
  }
}