@charset "UTF-8";

/* ==============================================
   Reusable Components
============================================== */

/* Hero */
.hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.hero-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: bold;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Card Grid */
.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card {
  border: 1px solid var(--c-border);
  background: var(--c-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.card-body {
  padding: 24px;
}
.card-title {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 12px;
}
.card-text {
  margin: 0;
}

/* Service List */
.service-list {
  display: grid;
  gap: 40px;
}
.service-item {
  display: grid;
  gap: 24px;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .service-item {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.service-img img {
  border-radius: var(--radius-md);
}
.service-name {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--c-accent);
}
.service-price {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.service-desc {
  margin: 0;
}

/* Access */
.access-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .access-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table th,
.info-table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
}
.info-table th {
  width: 30%;
  font-weight: normal;
  color: #666;
}
.map-iframe-wrapper iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--c-border);
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-size: 1.05rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.q-icon {
  color: var(--c-accent);
  margin-right: 8px;
}
.toggle-icon {
  width: 20px;
  height: 2px;
  background: var(--c-text);
  position: relative;
  transition: 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.toggle-icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  background: var(--c-text);
  top: -9px;
  left: 9px;
  transition: 0.3s;
}
.faq-q[aria-expanded="true"] .toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-q[aria-expanded="true"] + .faq-a {
  max-height: 500px;
}
.faq-a p {
  padding-bottom: 24px;
  margin: 0;
}
.a-icon {
  color: #666;
  margin-right: 8px;
  font-weight: bold;
}

/* CTA */
.cta-section {
  background: var(--c-accent);
  color: #fff;
}

/* Form */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}
.req,
.opt {
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.req { background: var(--c-error); }
.opt { background: #999; }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--c-accent);
}
.hp-field {
  display: none !important;
}
.form-msg {
  min-height: 24px;
  margin-top: 16px;
  font-weight: bold;
}
.msg-error {
  color: var(--c-error);
}
.thanks-msg h3 {
  margin-top: 0;
}

/* Document */
.document-wrapper h3 {
  border-left: 4px solid var(--c-accent);
  padding-left: 12px;
  margin-top: 40px;
}
.document-footer p {
  margin-bottom: 0;
}