/* =========================
   Contact Page Styles (contact.css)
   ========================= */

/* ===== Hero Section ===== */
.contact-hero {
    position: relative;
    width: 100%;
    min-height: 583px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .contact-hero .hero-container {
    position: relative;
    height: 100%;
  }
  
  .contact-hero .hero-text {
    position: absolute;
    bottom: 180px;
    left: 24px;
    right: auto;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 26px 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .contact-hero .hero-text h1 {
    font-size: 44px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text);
  }
  
  .contact-hero .hero-text p {
    font-size: 18px;
    color: var(--text);
    line-height: 1.6;
  }
  
  /* ===== Contact Info Section ===== */
  .contact-info {
    margin: 40px 0;
  }
  
  .contact-info .content-container {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 40px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  .contact-info h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text);
  }
  
  .contact-info p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 18px;
  }
  
  .contact-details p {
    margin-bottom: 8px;
  }
  
  .contact-details a {
    color: var(--brand-dark);
    text-decoration: none;
  }
  
  .contact-details a:hover {
    text-decoration: underline;
  }
  
  /* ===== Form Styles ===== */
  .contact-form {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .contact-form label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
    width: 100%;
    resize: none;
    background: #fafafa;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--brand);
    outline: none;
    background: #fff;
  }
  
  /* ===== Submit Button ===== */
  .btn-submit {
    align-self: flex-start;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border: none;
    border-radius: 12px;
    background-image:
      linear-gradient(rgba(255,255,255,0.25), rgba(255,255,255,0.25)),
      linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  }
  
  /* ===== Mobile Adjustments ===== */
  @media (max-width: 768px) {
    .contact-hero {
      min-height: 420px;
    }
  
    .contact-hero .hero-text {
      bottom: 24px;
      left: 24px;
      right: 24px;
      max-width: none;
    }
  
    .contact-hero .hero-text h1 {
      font-size: 34px;
    }
  
    .contact-hero .hero-text p {
      font-size: 15px;
    }
  }

  .hidden {
    display: none;
  }

  .contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
}