
body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-body);
  font-family: var(--font-body);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------------------------------- Mobile Only Header ------------------------------------- */
.mobile-header {
  text-align: center;
  padding: 80px 20px 20px 20px;
  /* Top padding to clear navbar */
}

.mobile-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.mobile-divider {
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
  margin: 0 auto;
}

/* ---------------------------------- Hero Section (Desktop) ------------------------------------- */
.main-img {
  position: relative;
  width: 100%;
  height: 300px;
  /* Reduced slightly */
  overflow: hidden;
}

.main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.banner-content {
  position: absolute;
  top: 50px;
  left: 100px;
  z-index: 2;
  display: inline-block;
}

.banner-content h2 {
  color: #F6F3EC;
  font-size: 48px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  margin: 0;
}


.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(192, 132, 61, 0) 0%, #F6F3EC 48.56%, rgba(192, 132, 61, 0) 100%);
}

.title-wrapper {
  text-align: center;
}

.title-inner {
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 3rem;
  font-weight: 700;
}

.divider-2 {
  margin-bottom: 50px;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg,
      rgba(192, 132, 61, 0) 0%,
      #C0843D 48.56%,
      rgba(192, 132, 61, 0) 100%);
}

/* ---------------------------------- Let's Work Together (Desktop) ------------------------------------- */
.let-together {
  padding: 50px 10%;
  text-align: center;
}

.title-container {
  display: inline-block;
}

.title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  color: var(--text-primary);
}

.description-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  gap: 40px;
}

.des-left-section {
  flex: 1;
  text-align: left;
}

.des-title {
  color: var(--accent-gold);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 15px;
}

.description {
  color: var(--text-light);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}

.lets-together-img {
  flex: 1;
  height: 300px;
  background-image: url("../assets/images/contact/lets-together.png");
  /* Ensure this path is correct */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: -90px;
}

/* ---------------------------------- Message & Info Wrapper ------------------------------------- */

/* This is the green container on Desktop */
.message-info-wrapper {
  background-color: #BBC7B8;
  /* Fallback or solid color matching your image */
  min-height: 550px;
  margin-top: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-info-container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* Align top */
}

/* --- The Form Card --- */
.form-section {
  flex: 0 0 50%;
  position: relative;
  z-index: 10;
  transform: translateY(-80px);
  /* Moves card up on desktop */
}

.contact-card {
  background-color: #F6F3EC;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 550px;
}

.contact-card h2 {
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 500;
}

.contact-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 25px;
}

.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.half-size-input {
  display: flex;
  gap: 15px;
}

input,
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #dcd7ca;
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  color: #555;
  outline: none;
  font-family: var(--font-body);
}

.btn-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.contact-card button {
  background-color: var(--text-primary);
  color: white;
  border: none;
  padding: 12px 35px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-family: var(--font-body);
  transition: 0.3s;
}

.contact-card button:hover {
  background-color: #3b472b;
}

/* --- Contact Info (Right Side) --- */
.info-section {
  flex: 0 0 40%;
  padding-top: 40px;
  /* Align visual center with green box */
  padding-left: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #F6F3EC;
  /* White circle on desktop */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 20px;
  color: var(--text-primary);
}

.info-text {
  font-size: 16px;
  color: #333;
  /* Darker text for readability on green */
  font-family: var(--font-body);
}

.info-text a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border 0.3s;
}

.info-text a:hover {
  border-bottom: 1px solid #333;
}

/* ----------------------------------- Map Section ------------------------------------- */
.map-wrapper {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  height: 350px;
  margin-bottom: 50px;
  margin-top: -50px;
  /* Overlap the green section bottom slightly */
  z-index: 5;
}

.map-container {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
}

.address-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #F6F3EC;
  padding: 20px;
  border-radius: 15px;
  max-width: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.address-text {
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVENESS
   Matches "Mobile Contect me.png" layout
   ========================================================================== */
@media (max-width: 992px) {

  body,
  html {
    overflow-x: hidden;
    max-width: 100%;
  }

  /* 1. HIDE Desktop-Only Hero & Intro */
  .contact-now-section {
    display: none;
  }

  .lets-together-img {
    display: none;
  }

  .section-title {
        font-size: 1.8rem;
    }
  /* 2. Reset Wrapper (Remove Green Background) */
  .message-info-wrapper {
    background-color: transparent;
    /* Cream bg only */
    margin-top: 0;
    min-height: auto;
    display: block;
  }

  .message-info-container {
    flex-direction: column;
    /* Stack vertically */
    width: 90%;
    margin: 0 auto;
    gap: 40px;
  }

  /* 3. REORDER: Info FIRST, then Form */
  .info-section {
    order: 1;
    /* First */
    width: 100%;
    margin-left: 20px;
  }

  .form-section {
    order: 2;
    /* Second */
    width: 100%;
    transform: none;
    /* Remove negative margin */
    margin-bottom: 40px;
  }

  /* 4. Style Adjustments for Mobile Info */
  .info-item {
    margin-bottom: 20px;
  }

  /* Remove white circle background on mobile to match image */
  .info-icon {
    background-color: transparent;
    width: 30px;
    height: auto;
    justify-content: flex-start;
    margin-right: 15px;
  }

  .info-icon i {
    font-size: 22px;
    color: var(--text-light);
  }

  .info-text {
    font-size: 15px;
    color: #333333;
  }

  /* 5. Style Adjustments for Mobile Form */
  .contact-card {
    padding: 30px 20px;
    box-shadow: none;
    border: 1px solid #e0e0e0;
    background-color: #F8F6F0;
    max-width: 100%;
  }

  .contact-card h2 {
    text-align: center;
    font-size: 24px;
    color: var(--text-primary);
  }

  .card-header-mobile p {
    text-align: center;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  /* Stack inputs vertically */
  .half-size-input {
    flex-direction: row;
    /* Keep name/email side by side or column? Image 3 shows side by side */
    gap: 10px;
  }

  /* If screen is very small, stack them */
  @media (max-width: 480px) {
    .half-size-input {
      flex-direction: column;
    }
  }

  input,
  textarea {
    background-color: #fcfcfc;
    /* Slightly lighter input bg */
    border: 1px solid #ccc;
  }

  .contact-card button {
    width: 100%;
    /* Full width button on mobile? Image 3 looks centered button */
    width: auto;
    padding: 12px 40px;
  }

  /* 6. Map Section Mobile */
  .map-wrapper {
    margin-top: 0;
    /* No overlap */
    height: 300px;
    margin-bottom: 30px;
  }

  .address-overlay {
    width: 80%;
    top: 10px;
    left: 10px;
    padding: 15px;
  }
}