<section class="hachi-contact-hero">
  <div class="hachi-contact-overlay"></div>

  <div class="hachi-contact-content">
    <span class="hachi-contact-badge">HACHI Tobacco UAE</span>

    <h1>Contact HACHI Tobacco</h1>

    <p>
      Have a question about vape products, shisha accessories, e-liquids, hookah items,
      lighters, or order availability? Get in touch with our team today.
    </p>

    <div class="hachi-contact-actions">
      <a href="tel:+971501131109" class="hachi-btn hachi-btn-gold">Call Now</a>
      <a href="https://wa.me/971501131109" class="hachi-btn hachi-btn-outline">WhatsApp Us</a>
    </div>

    <div class="hachi-contact-info">
      <div>
        <strong>Phone</strong>
        <span>+971 50 113 1109</span>
      </div>

      <div>
        <strong>Email</strong>
        <span>info@hachitobacco.com</span>
      </div>

      <div>
        <strong>Location</strong>
        <span>United Arab Emirates</span>
      </div>
    </div>
  </div>
</section>

<style>
  .hachi-contact-hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    background:
      linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.74) 43%, rgba(0,0,0,0.35) 100%),
      url("https://images.unsplash.com/photo-1603477563257-409b59179c6e?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 90px 6%;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }

  .hachi-contact-hero * {
    box-sizing: border-box;
  }

  .hachi-contact-overlay {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 80% 30%, rgba(212,160,65,0.22), transparent 32%),
      radial-gradient(circle at 20% 80%, rgba(212,160,65,0.12), transparent 30%);
    pointer-events: none;
  }

  .hachi-contact-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #ffffff;
  }

  .hachi-contact-badge {
    display: inline-block;
    padding: 9px 16px;
    border: 1px solid rgba(212,160,65,0.65);
    border-radius: 999px;
    color: #d4a041;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 22px;
    background: rgba(255,255,255,0.04);
  }

  .hachi-contact-content h1 {
    font-size: clamp(42px, 5vw, 78px);
    line-height: 1.05;
    margin: 0 0 22px;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: -1.4px;
  }

  .hachi-contact-content p {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 32px;
    color: rgba(255,255,255,0.88);
  }

  .hachi-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
  }

  .hachi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 26px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    transition: 0.25s ease;
  }

  .hachi-btn-gold {
    background: linear-gradient(135deg, #b8741a, #d4a041);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(212,160,65,0.22);
  }

  .hachi-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(212,160,65,0.34);
  }

  .hachi-btn-outline {
    border: 1px solid rgba(255,255,255,0.55);
    color: #ffffff;
    background: rgba(255,255,255,0.06);
  }

  .hachi-btn-outline:hover {
    border-color: #d4a041;
    color: #d4a041;
    transform: translateY(-2px);
  }

  .hachi-contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 760px;
  }

  .hachi-contact-info div {
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(212,160,65,0.26);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(6px);
  }

  .hachi-contact-info strong {
    display: block;
    color: #d4a041;
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }

  .hachi-contact-info span {
    display: block;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
  }

  @media (max-width: 768px) {
    .hachi-contact-hero {
      min-height: auto;
      padding: 70px 22px;
      background-position: center right;
    }

    .hachi-contact-content h1 {
      font-size: 42px;
    }

    .hachi-contact-content p {
      font-size: 16px;
    }

    .hachi-contact-actions {
      flex-direction: column;
    }

    .hachi-btn {
      width: 100%;
    }

    .hachi-contact-info {
      grid-template-columns: 1fr;
    }
  }
</style>