/* ----------------------------------------
   BASE
---------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #fff;
  color: #333;
}

/* ----------------------------------------
   HERO
---------------------------------------- */
#hero-header {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 360px;
  overflow: hidden;
  background: linear-gradient(135deg, #50b49a 0%, #4ebb91 45%, #4f8ac4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  pointer-events: none;
}

.hero-text h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 44px);
  letter-spacing: 6px;
  text-transform: uppercase;
}

/* ----------------------------------------
   FADE-UP ANIMATION
---------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------
   CONTACT SECTION
---------------------------------------- */
#contact-section {
  background: #fff;
  padding: 90px 24px 100px;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* ----------------------------------------
   LEFT: GET IN TOUCH
---------------------------------------- */
.get-in-touch {
  flex: 1;
}

.get-in-touch h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #111;
  margin-bottom: 16px;
}

.get-in-touch > p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 40px;
}

/* ----------------------------------------
   CONTACT GRID
---------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item.full-width {
  grid-column: 1 / -1;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #0d3b4f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #111;
}

.contact-detail a,
.contact-detail .contact-text {
  font-size: 13.5px;
  color: #555;
  text-decoration: none;
  line-height: 1.6;
}

.contact-detail a:hover {
  color: #4ebb91;
}

/* ----------------------------------------
   RIGHT: INQUIRE NOW CARD
---------------------------------------- */
.inquire-card {
  flex: 0 0 380px;
  position: relative;
  background: #1a9e6e;
  border-radius: 20px;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

#inquire-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.inquire-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 40px;
  pointer-events: none;
}

.inquire-content h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}



/* ----------------------------------------
   MOBILE VIEW (max-width: 768px)
---------------------------------------- */
@media (max-width: 768px) {

  /* Hero */
  #hero-header {
    height: 45vh;
    min-height: 220px;
  }

  .hero-text h1 {
    font-size: 20px;
    letter-spacing: 4px;
  }

  /* Contact Section */
  #contact-section {
    padding: 56px 16px 70px;
  }

  /* Stack columns vertically */
  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .get-in-touch h2 {
    font-size: 26px;
  }

  .get-in-touch > p {
    font-size: 13.5px;
    margin-bottom: 28px;
  }

  /* Single column grid on mobile */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-item.full-width {
    grid-column: 1;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .contact-icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-label {
    font-size: 13px;
  }

  .contact-detail a,
  .contact-detail .contact-text {
    font-size: 13px;
  }

  /* Inquire card full width on mobile */
  .inquire-card {
    flex: none;
    width: 100%;
    min-height: 280px;
  }

  .inquire-content h3 {
    font-size: 28px;
  }
}

