﻿
.brand-bar {
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--green) 0%, var(--lime) 21%, var(--orange) 53%, var(--salmon) 70%, var(--blue) 100%);
  
  width: 50%;
  margin: 0 auto;
  margin-top: 50px;
}

h1.ap-eyebrow,
.ap-eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin: 0;
}

h2.hero-title,
h3.ct-card-title,
h2.form-title,
h3.map-card-title {
  margin: 0;
}

.hero-copy {
  width: fit-content;
  margin: 0 auto;
}

.hero-section {
  position: relative;
  padding: 140px 80px 0;
  overflow: hidden;
  text-align: center;
}

.hero-title {
  font-size: 124px;
  line-height: 0.96;
  margin-top: 32px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero-desc {
  font-size: 22px;
  line-height: 1.5;
  margin-top: 36px;
  max-width: 560px;
  margin: 0 auto;
  color: var(--dark);
}

.ct-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px clamp(24px, 5vw, 80px) 0;
}

.ct-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ct-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 30px;
}

.ct-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(38, 136, 191, 0.1);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.ct-card-title {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 4px !important;
}

.ct-card-desc {
  font-size: 14px;
  color: var(--color-grey-400);
  margin: 0 0 16px;
}

.ct-card-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 16px;
}

.ct-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ct-link-label {
  color: var(--color-grey-400);
  font-size: 14px;
}

.ct-card-address {
  font-size: 16px;
  color: var(--color-grey-700);
  line-height: 1.6;
}


.online-form-section {
  background: var(--cream);
      padding: 120px 80px;
  text-align: center;
  margin-top: 56px;
}

.online-form-section .form-title {
  font-size: 46px;
  line-height: .9;
  letter-spacing: -0.01em;
  color: var(--dark);
}


/* ── Map Section ── */
.map-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
}

.map-iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.map-card {
  position: absolute;
  top: 50%;
  right: clamp(24px, 5vw, 80px);
  transform: translateY(-50%);
  background: #fff;
  border-radius: 15px;
  padding: 32px 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  max-width: 360px;
  text-align: right;
  z-index: 2;
}

.map-card-eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
}

.map-card-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 10px 0 8px;
}

.map-card-detail {
  font-size: 15px;
  color: var(--color-grey-400);
  line-height: 1.6;
  margin: 0 0 14px;
}

.map-card-hours {
  font-size: 14px;
  color: var(--color-grey-700);
  margin: 0;
}

.whatsapp-link svg{
  width: 18px;
  height: 18px;
}

/* ── Tablet ── */
@media (max-width: 991px) {
  .hero-section {
    padding: 100px 40px 0;
  }

  .hero-title {
    font-size: 72px;
  }

  .hero-desc {
    font-size: 18px;
  }

  .ct-grid {
    grid-template-columns: 1fr 1fr;
  }

  .online-form-section {
    padding: 80px 40px;
  }

  .online-form-section .form-title {
    font-size: 36px;
  }

  .map-card {
    padding: 24px 28px;
    max-width: 300px;
  }
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .hero-section {
    padding: 80px 20px 0;
  }

  .hero-title {
    font-size: 48px;
    margin-top: 20px;
  }

  .hero-desc {
    font-size: 16px;
    margin-top: 24px;
  }

  .brand-bar {
    width: 70%;
    margin-top: 32px;
  }

  .ct-section {
    padding: 40px 20px 0;
  }

  .ct-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ct-card {
    padding: 24px;
  }

  .online-form-section {
    padding: 60px 20px;
    margin-top: 40px;
  }

  .online-form-section .form-title {
    font-size: 28px;
  }

  .map-iframe {
    height: 300px;
  }

  .map-card {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid var(--border-color);
    padding: 24px 20px;
  }

  .map-card-title {
    font-size: 18px;
  }
}