/* ============ LAYOUT ============ */
main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px 40px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--muted);
  margin: 22px 0 0;
}
.breadcrumb a:hover {
  color: var(--amber);
}
.breadcrumb .sep {
  opacity: 0.5;
}

.hero {
  margin-top: 14px;
  border-radius: 24px;
  padding: 44px 28px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(
      circle at 80% 0%,
      var(--amber-soft),
      transparent 55%
    ),
    radial-gradient(circle at 10% 100%, var(--teal-soft), transparent 50%),
    var(--bg2);
  border: 1px solid var(--line);
}
.hero h1 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 10px;
}
.hero h1 span {
  color: var(--amber);
}
.hero p {
  color: var(--muted);
  font-size: 15px;
  max-width: 520px;
  line-height: 1.9;
  margin: 0 auto;
}

/* ============ INFO CARDS ============ */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 26px;
}
@media (min-width: 640px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 980px) {
  .info-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1), border-color 0.25s,
    box-shadow 0.25s;
  animation: popIn 0.5s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--amber);
  box-shadow: 0 16px 32px -14px rgba(0, 0, 0, 0.35);
}
.info-card .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--amber-soft);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s;
}
.info-card:hover .ico {
  transform: scale(1.1) rotate(-6deg);
}
.info-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  margin-top: 4px;
}
.info-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.info-card a.value {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  direction: ltr;
  text-align: right;
}
.info-card a.value:hover {
  color: var(--amber);
}

/* ============ CONTACT GRID ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 34px;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.3fr 1fr;
  }
}

.form-card,
.side-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  animation: fadeUp 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
.form-card h3,
.side-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}
.form-card p.hint,
.side-card p.hint {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 20px;
}

.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 6px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) {
  .field-grid {
    grid-template-columns: 1fr;
  }
}
.form-err {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
  font-size: 13px;
  padding: 9px 12px;
  border-radius: 10px;
  margin-bottom: 14px;
  display: none;
}

.submit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.submit-row .btn {
  flex: 1;
}
.form-success {
  display: none;
  text-align: center;
  padding: 36px 12px;
  animation: popIn 0.4s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
.form-success .check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 14px;
  animation: pulse 1.4s ease-in-out 1;
}
.form-success h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}
.form-success p {
  color: var(--muted);
  font-size: 13.5px;
}

/* side card */
.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.quick-actions .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.hours-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.hours-list li span:first-child {
  color: var(--muted);
}
.hours-list li b {
  font-weight: 700;
}
.hours-list li.today {
  color: var(--amber);
}
.hours-list li.today b {
  color: var(--amber);
}

.map-box {
  position: relative;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  background: linear-gradient(var(--line) 1px, transparent 1px) 0 0/26px 26px,
    linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0/26px 26px,
    var(--bg2);
  border: 1px solid var(--line);
}
.map-box .pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  background: var(--amber);
  transform-origin: bottom center;
  box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.4);
  animation: pinDrop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.map-box .pin::after {
  content: "🚗";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transform: rotate(45deg);
}
.map-box .pin {
  transform: translate(-50%, -100%) rotate(-45deg);
}
.map-box .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--amber-soft);
  transform: translate(-50%, -50%);
  animation: ring 2.4s ease-out infinite;
}
@keyframes pinDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -160%) rotate(-45deg);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -100%) rotate(-45deg);
  }
}
@keyframes ring {
  0% {
    box-shadow: 0 0 0 0 var(--amber-soft);
  }
  100% {
    box-shadow: 0 0 0 22px transparent;
  }
}

/* ============ FAQ ============ */
.faq {
  margin-top: 44px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}
.faq-q .plus {
  transition: transform 0.3s;
  color: var(--amber);
  font-size: 18px;
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 18px;
}
.faq-item.open .faq-a {
  padding: 0 18px 16px;
}
.faq-a p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.9;
}

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--card);
  border: 1px solid var(--amber);
  color: var(--text);
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 13.5px;
  z-index: 300;
  opacity: 0;
  transition: 0.25s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.hidden {
  display: none !important;
}

/* ============ GOOGLE MAPS IFRAME ============ */
.map-box.map-iframe {
  padding: 0;
  height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg2);
}

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