/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: "Montserrat", sans-serif;
    background: linear-gradient(#f8ead6, #f9e3c6);
  }
  
  .main-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
  }
  
  /* Hero Section  */
  
  .hero-section {
    background-image: url(./Images/contact-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 70vh;
  }

  
  :root {
    --cream: #f5ede0;
    --brown-dark: #7b3f1a;
    --brown-mid: #9b5523;
    --brown-light: #c47c3e;
    --brown-card: #8b4513;
    --text-light: #fff8f0;
    --text-muted: rgba(255,248,240,0.7);
    --input-border: #c9a882;
    --input-focus: #8b4513;
  }

.contact-us{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}
  .contact-wrapper {
    display: flex;
    width: 100%;
    max-width: 860px;
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(100, 50, 10, 0.15);
  }

  /* ── Left Panel ── */
  .contact-info {
    background: var(--brown-card);
    color: var(--text-light);
    padding: 48px 36px;
    width: 42%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .contact-info::before,
  .contact-info::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 220, 170, 0.08);
  }
  .contact-info::before {
    width: 180px; height: 180px;
    bottom: -40px; right: -50px;
  }
  .contact-info::after {
    width: 110px; height: 110px;
    bottom: 60px; right: 60px;
  }

  .info-title {
    font-family: "Gilda Display", serif;
  font-weight: 400;
  font-style: normal;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.2;
  }

  .info-subtitle {
    font-family: "Barlow", sans-serif;
    font-size: 13px;
    color: #C9C9C9;
    margin-top: 6px;
    font-weight: 300;
    letter-spacing: 0.03em;
  }

  .info-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #F9E8D2;
    margin-bottom: 14px;
    font-family: "Barlow", sans-serif;
  }

  .info-icon {
    width: 30px;
    height: 30px;
    /* border: 1.5px solid rgba(255,248,240,0.35); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .info-icon svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--text-light);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ── Right Panel ── */
  .contact-form-panel {
    flex: 1;
    padding: 48px 40px;
    background: var(--cream);
  }

  .form-row {
    display: flex;
    gap: 20px;
  }

  .field-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-bottom: 28px;
  }

  .field-group label {
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brown-dark);
    margin-bottom: 8px;
  }

  .field-group input,
  .field-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--input-border);
    padding: 6px 0 10px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #3d1e08;
    outline: none;
    transition: border-color 0.25s;
    resize: none;
    width: 100%;
  }

  .field-group input::placeholder,
  .field-group textarea::placeholder {
    color: #c4a07a;
    font-size: 13px;
  }

  .field-group input:focus,
  .field-group textarea:focus {
    border-bottom-color: var(--input-focus);
  }

  .field-group textarea {
    min-height: 60px;
  }

  .btn-send {
    display: block;
    margin-left: auto;
    background: var(--brown-dark);
    color: var(--text-light);
    border: none;
    padding: 13px 30px;
    border-radius: 6px;
    font-family: 'Jost', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s;
  }

  .btn-send:hover {
    background: var(--brown-mid);
    transform: translateY(-1px);
  }
  .btn-send:active {
    transform: translateY(0);
  }

  /* Toast */
  .toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--brown-dark);
    color: var(--text-light);
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 13.5px;
    font-family: 'Jost', sans-serif;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    z-index: 999;
  }
  .toast.show {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 640px) {
    .contact-wrapper { flex-direction: column; }
    .contact-info { width: 100%; padding: 36px 28px; }
    .contact-form-panel { padding: 36px 28px; }
    .form-row { flex-direction: column; gap: 0; }
  }



  @media (max-width: 768px) {
    .hero-section {
      background-image: url("./Images/Contact-Mob.png");
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      height: 70vh;
    }
    .page-title{
      display: none;
    }
  }