/* =============================================
   contact-us/styles.css
   Page-specific styles for Contact Us page
   Depends on ../css/styles.css for header/footer/nav/fonts/brand tokens
   ============================================= */

/* ── HERO ─────────────────────────────────── */
#contact-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background-image: url('https://b2008833.smushcdn.com/2008833/wp-content/uploads/2024/08/163bcc.jpg?lossy=2&strip=1&webp=1');
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

#contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 0;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 80px;
}

.contact-hero-inner h1 {
  font-size: 72px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  margin: 0 0 24px;
}

.contact-hero-inner p {
  font-size: 18px;
  color: #ffffff;
  max-width: 600px;
  line-height: 1.6;
  margin: 0;
}

/* ── SEND A MESSAGE ───────────────────────── */
#contact-form-section {
  background: #ffffff;
  padding: 80px 0 90px;
}

.contact-form-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Left label panel */
.contact-form-label {
  flex: 0 0 340px;
  background: #EEF5EC;
  border-radius: 20px;
  padding: 60px 48px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-form-label h2 {
  font-size: 46px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  margin: 0 0 20px;
}

.contact-form-label p {
  font-size: 16px;
  color: #2d2d2d;
  line-height: 1.6;
  margin: 0;
}

/* Right form panel */
.contact-form-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-field {
  margin-bottom: 16px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #9DC88A;
  border-radius: 50px;
  padding: 16px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #2d2d2d;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s;
}

.form-field textarea {
  border-radius: 20px;
  resize: vertical;
  min-height: 160px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #999999;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #67924B;
}

.form-submit {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.btn-submit {
  background: #7EBB55;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  padding: 18px 60px;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover {
  background: #67924B;
  transform: scale(1.03);
}

/* Success message */
.form-success {
  text-align: center;
  padding: 40px 20px;
  font-size: 18px;
  color: #67924B;
  font-weight: 600;
}

/* ── VISIT US ─────────────────────────────── */
#visit-us {
  background: #ffffff;
  padding: 0 0 80px;
}

.visit-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
  display: flex;
  gap: 0;
  align-items: stretch;
  min-height: 480px;
}

.visit-text-card {
  flex: 0 0 42%;
  background: #E0F3F5;
  border-radius: 20px;
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.visit-text-card h2 {
  font-size: 46px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.visit-text-card p {
  font-size: 16px;
  color: #2d2d2d;
  line-height: 1.65;
  margin: 0;
}

/* Teal Directions button */
.btn-teal {
  display: inline-block;
  background: #41BED0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  border-radius: 100px;
  padding: 14px 36px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}

.btn-teal:hover {
  background: #1EA3B6;
  transform: scale(1.03);
}

.visit-image {
  flex: 1;
}

.visit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── STAY CONNECTED ───────────────────────── */
#stay-connected {
  background: #ffffff;
  padding: 0 0 80px;
}

.stay-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
  display: flex;
  gap: 0;
  align-items: stretch;
  min-height: 500px;
}

.stay-text-card {
  flex: 0 0 42%;
  background: #FEF0E8;
  border-radius: 20px;
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.stay-text-card h2 {
  font-size: 52px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.05;
  margin: 0;
}

/* Social icons row */
.social-icons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #F78A3C;
  transition: background 0.2s, transform 0.15s;
}

.social-icons a svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.social-icons a:hover {
  background: #C96924;
  transform: scale(1.08);
}

/* Orange Newsletter button */
.btn-orange {
  display: inline-block;
  background: #F78A3C;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  border-radius: 100px;
  padding: 14px 36px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}

.btn-orange:hover {
  background: #C96924;
  transform: scale(1.03);
}

.stay-image {
  flex: 1;
}

.stay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── RENT OUR SPACE ───────────────────────── */
#rent-space {
  background: #FEF0E8;
  padding: 60px 0 80px;
}

.rent-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  gap: 60px;
  align-items: center;
}

.rent-image {
  flex: 0 0 340px;
}

.rent-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.rent-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rent-text h2 {
  font-size: 52px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  margin: 0;
}

.rent-text p {
  font-size: 18px;
  color: #2d2d2d;
  line-height: 1.6;
  margin: 0;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .contact-hero-inner {
    padding: 60px 48px;
  }
  .contact-hero-inner h1 {
    font-size: 54px;
  }
  .contact-form-inner,
  .rent-inner {
    padding: 0 40px;
    gap: 36px;
  }
  .contact-form-label {
    flex: 0 0 280px;
    padding: 48px 32px;
  }
  .visit-text-card,
  .stay-text-card {
    padding: 48px 40px;
  }
  .stay-text-card h2,
  .rent-text h2 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .contact-hero-inner {
    padding: 60px 24px;
  }
  .contact-hero-inner h1 {
    font-size: 38px;
  }
  .contact-hero-inner p {
    font-size: 16px;
  }

  #contact-form-section {
    padding: 48px 0 60px;
  }
  .contact-form-inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 24px;
  }
  .contact-form-label {
    flex: none;
    width: 100%;
    min-height: auto;
    padding: 40px 28px;
    border-radius: 16px;
  }
  .contact-form-label h2 {
    font-size: 36px;
  }

  #visit-us,
  #stay-connected {
    padding: 0 0 48px;
  }
  .visit-inner,
  .stay-inner {
    flex-direction: column;
  }
  .visit-text-card,
  .stay-text-card {
    flex: none;
    border-radius: 16px;
    padding: 40px 24px;
    margin: 0 20px;
  }
  .visit-text-card h2 {
    font-size: 36px;
  }
  .stay-text-card h2 {
    font-size: 36px;
  }
  .visit-image img,
  .stay-image img {
    height: 280px;
  }

  #rent-space {
    padding: 40px 0 60px;
  }
  .rent-inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 28px;
  }
  .rent-image {
    flex: none;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .rent-text h2 {
    font-size: 36px;
  }
  .rent-text p {
    font-size: 16px;
  }
}