/* ══════════════════════════════════════════════════════════
   WEDU CAR RENTAL, TOURS & TRANSFERS — CONSOLIDATED STYLESHEET
   Sections: Reset/Vars -> Site Header -> Site Footer ->
   Shared Form Components -> Per-page styles -> Responsive
   ══════════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green:   #6CA660;
  --green2:  #64A028;
  --purple:  #786478;
  --purple-light: #C8E89A;
  --dark:    #1a1a1a;
  --mid:     #444444;
  --light:   #888888;
  --white:   #ffffff;
  --head:    'Bai Jamjuree', sans-serif;
  --body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; }
svg { display: inline-block; vertical-align: middle; }
a { color: inherit; }

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ══════════════════════════════
   SITE HEADER / NAVIGATION
══════════════════════════════ */
.site-header {
  background: var(--purple);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 14px rgba(0,0,0,0.18);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
}
.brand img { width: 42px; height: 42px; border-radius: 50%; display: block; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--head); font-size: 1.05rem; font-weight: 700; color: #fff; letter-spacing: 0.01em; }
.brand-tag { font-family: var(--body); font-size: 0.6rem; color: var(--purple-light); letter-spacing: 0.09em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
  font-family: var(--head);
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 10px 13px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a:focus-visible { background: rgba(255,255,255,0.12); color: #fff; }
.site-nav a.active { background: var(--green2); color: #fff; }

.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  background: transparent; border: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; display: block; border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .site-header { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--purple);
    flex-direction: column; align-items: stretch; gap: 0;
    max-height: 0; overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.18);
  }
  .site-nav.open { max-height: 480px; }
  .site-nav a { padding: 13px 20px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* Focus visibility (accessibility) */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--green2);
  outline-offset: 2px;
}

/* ══════════════════════════════
   SHARED SECTION HEADER
══════════════════════════════ */
.section-wrap { padding: 48px 64px; background: var(--white); }
.sec-eyebrow { font-family: var(--head); font-size: 0.72rem; font-weight: 600; color: #3d3d3d; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.sec-title { font-family: var(--head); font-size: 1.55rem; font-weight: 700; color: var(--green2); margin-bottom: 8px; letter-spacing: -0.01em; }
.sec-sub { font-family: var(--body); font-size: 13px; font-weight: 400; line-height: 1.6; color: #555; max-width: 480px; margin-bottom: 28px; }

/* ══════════════════════════════
   SHARED FOOTER / INFO BAR
══════════════════════════════ */
.info-bar {
  background: var(--green);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  color: #fff;
}
.info-block-title {
  font-family: var(--head);
  font-size: 0.82rem; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.info-row { margin-bottom: 12px; }
.info-label {
  font-family: var(--head);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 2px;
}
.info-val { font-family: var(--body); font-size: 0.85rem; color: rgba(255,255,255,0.88); line-height: 1.5; }
.info-val a { color: rgba(255,255,255,0.88); text-decoration: underline; }
.hours-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-family: var(--body); font-size: 0.82rem; }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: rgba(255,255,255,0.85); font-weight: 400; }
.hours-time { color: rgba(255,255,255,0.5); font-weight: 300; }
.map-caption { font-family: var(--body); font-size: 0.7rem; color: rgba(255,255,255,0.35); margin-top: 8px; }
.map-caption a { color: rgba(255,255,255,0.5); }
.map-wrapper { width: 100%; height: 180px; border-radius: 8px; overflow: hidden; background: #5a8a50; }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

.site-footer-spacer { background: var(--purple); height: 60px; }

@media (max-width: 900px) {
  .info-bar { grid-template-columns: 1.2fr 1fr 1fr; padding: 40px 32px; gap: 24px; }
}
@media (max-width: 700px) {
  .info-bar { grid-template-columns: 1fr 1fr; padding: 32px 20px; gap: 24px; }
}
@media (max-width: 500px) {
  .info-bar { grid-template-columns: 1fr; padding: 28px 16px; gap: 24px; }
}

/* ══════════════════════════════
   SHARED BOOKING / CONTACT FORM
══════════════════════════════ */
.form-section { background: #f7f5f7; border-top: 2px solid #EAE4EA; padding: 56px 60px 64px; }
.form-title { font-family: var(--head); font-size: 28px; font-weight: 700; color: #2C2C2C; margin-bottom: 8px; }
.form-subtitle { font-size: 14px; color: #666; margin-bottom: 32px; line-height: 1.6; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #555; }
.fg input, .fg select, .fg textarea {
  font-family: var(--body); font-size: 13px; color: #2C2C2C;
  border: 1px solid #D8D0D8; border-radius: 8px;
  padding: 10px 12px; background: #fff; outline: none; width: 100%;
  transition: border-color 0.18s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--green2); }
.fg input.field-error, .fg select.field-error { border-color: #e05555; }
.fg textarea { min-height: 88px; resize: vertical; }

.form-note { font-size: 11px; color: #aaa; margin-bottom: 20px; line-height: 1.6; }

.validation-error { display: none; background: #FFF4F4; border: 1px solid #F5C6C2; border-radius: 8px; padding: 14px 16px; margin-bottom: 16px; }
.validation-error p { font-size: 12px; font-weight: 600; color: #8B1A10; margin-bottom: 8px; }
.validation-error ul { list-style: none; padding: 0; margin: 0; }
.validation-error ul li { font-size: 12px; color: #8B1A10; padding: 2px 0 2px 14px; position: relative; }
.validation-error ul li::before { content: '•'; position: absolute; left: 4px; }

.btn-submit {
  background: var(--green2); color: #fff; border: none; border-radius: 8px;
  padding: 14px 36px;
  font-family: var(--head); font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s, opacity 0.2s;
}
.btn-submit:hover:not(:disabled) { background: #528020; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.inline-msg { display: none; margin-top: 20px; border-radius: 10px; padding: 16px 20px; }
.inline-msg.show { display: flex; align-items: flex-start; gap: 14px; }
.inline-msg.success { background: #FFF3CD; border: 2px solid #F0C040; }
.inline-msg.error { background: #FFF3CD; border: 2px solid #F0C040; }
.inline-msg-icon { font-size: 22px; flex-shrink: 0; line-height: 1.3; }
.inline-msg-body { font-size: 13px; color: #7A5C00; line-height: 1.6; }
.inline-msg-body strong { font-weight: 700; color: #5C4200; }

.blackout { background: #FFF3CD; padding: 13px 60px; display: flex; align-items: center; justify-content: center; border-bottom: 2px solid #F0C040; }
.blackout p { font-size: 12px; color: #7A5C00; text-align: center; width: 100%; line-height: 1.5; }
.blackout strong { font-weight: 700; }

@media (max-width: 900px) {
  .form-section { padding: 44px 40px 52px; }
  .blackout { padding: 12px 32px; }
}
@media (max-width: 600px) {
  .form-section { padding: 36px 20px 44px; }
  .form-grid { grid-template-columns: 1fr; }
  .fg.full { grid-column: 1; }
  .blackout { padding: 10px 20px; }
}

/* ══════════════════════════════════════════════════════════
   PAGE: HOME (index.html)
══════════════════════════════════════════════════════════ */
body.page-home .hero {
  background: var(--green);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 48px 64px;
  gap: 48px;
  min-height: 200px;
}
body.page-home .hero-eyebrow { font-family: var(--head); font-size: 0.75rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; letter-spacing: 0.01em; }
body.page-home .hero h1 { font-family: var(--head); font-size: 2rem; font-weight: 700; line-height: 1.15; color: var(--purple); margin-bottom: 12px; }
body.page-home .hero-para { font-size: 14px; line-height: 1.6; color: var(--dark); max-width: 340px; }
body.page-home .hero-img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; display: block; border-radius: 4px; }

body.page-home .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
body.page-home .service-col { padding: 16px 28px 16px 0; border-right: 1.5px solid var(--green); }
body.page-home .service-col:first-child { padding-left: 0; }
body.page-home .service-col:last-child { border-right: none; padding-right: 0; padding-left: 28px; }
body.page-home .service-col:nth-child(2) { padding-left: 28px; }
body.page-home .service-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1.5px solid var(--green); }
body.page-home .service-name { font-family: var(--head); font-size: 14px; font-weight: 700; color: #1a1a1a; letter-spacing: 0.01em; }
body.page-home .service-icon { font-size: 1rem; line-height: 1; color: var(--dark); opacity: 0.7; }
body.page-home .service-desc { font-size: 13px; line-height: 1.65; color: #555; margin-top: 8px; }

body.page-home .reviews-layout { display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: start; min-width: 0; }
body.page-home .review-photo { width: 200px; height: auto; aspect-ratio: 1/1.15; object-fit: cover; object-position: center top; display: block; border-radius: 2px; flex-shrink: 0; }
body.page-home .reviews-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-width: 0; overflow: hidden; }
body.page-home .review-card { padding: 0 20px 16px 0; border-right: 1.5px solid var(--green); position: relative; min-width: 0; word-break: break-word; }
body.page-home .review-card::after { content: '→'; position: absolute; right: -10px; top: 6px; color: var(--green2); font-size: 14px; background: #fff; line-height: 1; }
body.page-home .review-card:nth-child(2) { padding-left: 20px; padding-right: 0; border-right: none; }
body.page-home .review-card:nth-child(2)::after { display: none; }
body.page-home .review-card:nth-child(3) { padding-top: 16px; padding-right: 20px; border-right: 1.5px solid var(--green); border-top: 1.5px solid var(--green); }
body.page-home .review-card:nth-child(4) { padding-left: 20px; padding-right: 0; padding-top: 16px; border-right: none; border-top: 1.5px solid var(--green); }
body.page-home .review-card:nth-child(4)::after { display: none; }
body.page-home .review-text { font-size: 13px; line-height: 1.65; color: #555; margin-bottom: 10px; }
body.page-home .review-name { font-family: var(--head); font-size: 13px; font-weight: 700; color: #1a1a1a; margin-bottom: 2px; }
body.page-home .review-loc { font-size: 12px; color: #888; margin-bottom: 4px; }
body.page-home .review-stars { color: #1a1a1a; font-size: 11px; letter-spacing: 1.5px; }

@media (max-width: 900px) {
  body.page-home .hero { grid-template-columns: 1fr; padding: 40px 32px; gap: 28px; }
  body.page-home .hero h1 { font-size: 1.75rem; }
  body.page-home .hero-para { max-width: 100%; }
  body.page-home .hero-img { aspect-ratio: 16/7; }
  .section-wrap { padding: 40px 32px; }
  body.page-home .services-grid { grid-template-columns: 1fr; gap: 0; }
  body.page-home .service-col { padding: 18px 0; border-right: none; border-bottom: none; }
  body.page-home .service-col:first-child { padding-top: 0; }
  body.page-home .service-col:last-child { border-bottom: none; padding-left: 0; padding-right: 0; }
  body.page-home .service-col:nth-child(2) { padding-left: 0; }
  body.page-home .service-title-row { border-bottom: none; }
  body.page-home .reviews-layout { grid-template-columns: 1fr; gap: 24px; }
  body.page-home .review-photo { width: 100%; max-width: 100%; aspect-ratio: auto; height: auto; object-position: center center; }
  body.page-home .reviews-cards { grid-template-columns: 1fr 1fr; min-width: 0; }
  body.page-home .review-card { padding: 16px 12px 16px 0; border-right: 1.5px solid var(--green); border-top: none; min-width: 0; }
  body.page-home .review-card:nth-child(2) { padding-left: 12px; padding-right: 0; border-right: none; border-top: none; }
  body.page-home .review-card:nth-child(3) { padding-top: 16px; padding-right: 12px; border-right: 1.5px solid var(--green); border-top: 1.5px solid var(--green); }
  body.page-home .review-card:nth-child(4) { padding-left: 12px; padding-right: 0; padding-top: 16px; border-right: none; border-top: 1.5px solid var(--green); }
  body.page-home .review-card::after { display: none; }
}
@media (max-width: 600px) {
  body.page-home .hero { padding: 32px 20px; gap: 24px; }
  body.page-home .hero h1 { font-size: 1.5rem; }
  .section-wrap { padding: 32px 20px; }
  .sec-title { font-size: 1.3rem; }
  body.page-home .reviews-cards { grid-template-columns: 1fr; }
  body.page-home .review-card { padding: 16px 0 !important; border-right: none !important; border-top: none !important; border-bottom: 1.5px solid var(--green); }
  body.page-home .review-card:last-child { border-bottom: none; }
}

/* ══════════════════════════════════════════════════════════
   PAGE: ABOUT (about.html)
══════════════════════════════════════════════════════════ */
body.page-about { background: var(--purple); color: #2C2C2C; }

body.page-about .hero { background: var(--purple); padding: 36px 48px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: end; }
body.page-about .hero-text { padding-bottom: 36px; }
body.page-about .eyebrow { font-family: var(--head); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--purple-light); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
body.page-about .eyebrow::before { content: ''; display: inline-block; width: 22px; height: 2px; background: var(--purple-light); flex-shrink: 0; }
body.page-about .hero h1 { font-family: var(--head); font-size: 28px; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 12px; }
body.page-about .hero-sub { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.65; max-width: 400px; }
body.page-about .hero-bus-wrap { align-self: end; overflow: hidden; border-radius: 10px 10px 0 0; }
body.page-about .hero-bus-wrap img { width: 100%; height: auto; display: block; }

body.page-about .stats-bar { background: #3C3C3C; padding: 14px 48px; display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
body.page-about .stat { text-align: center; }
body.page-about .stat-num { font-family: var(--head); font-size: 20px; font-weight: 700; color: var(--green2); display: block; }
body.page-about .stat-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 1px; display: block; }

body.page-about .story { background: #fff; padding: 40px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
body.page-about .section-eyebrow { font-family: var(--head); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green2); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
body.page-about .section-eyebrow::before { content: ''; display: inline-block; width: 22px; height: 2px; background: var(--green2); flex-shrink: 0; }
body.page-about .story h2 { font-family: var(--head); font-size: 22px; font-weight: 700; color: #2C2C2C; line-height: 1.2; margin-bottom: 14px; }
body.page-about .story h2 span { color: var(--purple); }
body.page-about .story-body { font-size: 13px; color: #555; line-height: 1.7; display: flex; flex-direction: column; gap: 10px; }

body.page-about .van-card { background: #fff; border-radius: 12px; border: 1px solid #EAE4EA; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
body.page-about .van-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(120,100,120,0.13); }
body.page-about .van-card-bar { height: 4px; border-radius: 11px 11px 0 0; background: var(--purple); }
body.page-about .van-img { background: #f5f2f5; display: flex; align-items: center; justify-content: center; padding: 10px 12px 4px; max-height: 140px; overflow: hidden; }
body.page-about .van-img img { width: 100%; height: auto; max-height: 130px; display: block; object-fit: contain; }
body.page-about .van-card-body { padding: 12px 16px 16px; }
body.page-about .van-card-name { font-family: var(--head); font-size: 14px; font-weight: 700; color: #2C2C2C; margin-bottom: 3px; }
body.page-about .van-card-tagline { font-size: 11px; color: var(--green2); font-style: italic; margin-bottom: 8px; }
body.page-about .van-specs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
body.page-about .van-spec { font-size: 11px; color: #888; }
body.page-about .van-divider { height: 1px; background: #EAE4EA; margin-bottom: 10px; }
body.page-about .van-desc { font-size: 12px; color: #666; line-height: 1.65; }

body.page-about .why { background: #3C3C3C; padding: 36px 48px; }
body.page-about .why-header { margin-bottom: 24px; }
body.page-about .why-eyebrow { font-family: var(--head); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green2); margin-bottom: 8px; }
body.page-about .why h2 { font-family: var(--head); font-size: 22px; font-weight: 700; color: #fff; line-height: 1.2; }
body.page-about .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
body.page-about .why-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 14px 16px; display: flex; align-items: flex-start; gap: 12px; }
body.page-about .why-check { width: 22px; height: 22px; border-radius: 50%; background: var(--green2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
body.page-about .why-check svg { width: 12px; height: 12px; }
body.page-about .why-title { font-family: var(--head); font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 3px; }
body.page-about .why-text { font-size: 11px; color: rgba(255,255,255,0.55); line-height: 1.55; }

body.page-about .jeep-section { background: #F3EFF3; padding: 40px 48px; }
body.page-about .jeep-inner { background: #fff; border-radius: 12px; border: 1px solid #EAE4EA; overflow: hidden; display: grid; grid-template-columns: 1fr 1.1fr 1fr; align-items: stretch; }
body.page-about .jeep-img-wrap { background: #f0ecf0; display: flex; align-items: center; justify-content: center; padding: 16px; overflow: hidden; }
body.page-about .jeep-img-wrap img { width: 100%; height: auto; max-height: 240px; display: block; object-fit: contain; }
body.page-about .jeep-body { padding: 22px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid #EAE4EA; border-right: 1px solid #EAE4EA; }
body.page-about .jeep-photo-wrap { overflow: hidden; display: flex; align-items: stretch; min-height: 220px; }
body.page-about .jeep-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
body.page-about .jeep-eyebrow { font-family: var(--head); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green2); margin-bottom: 8px; display: flex; align-items: center; gap: 7px; }
body.page-about .jeep-eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--green2); display: inline-block; flex-shrink: 0; }
body.page-about .jeep-body h3 { font-family: var(--head); font-size: 18px; font-weight: 700; color: #2C2C2C; margin-bottom: 4px; line-height: 1.2; }
body.page-about .jeep-tagline { font-size: 11px; color: var(--green2); font-style: italic; margin-bottom: 10px; }
body.page-about .jeep-specs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
body.page-about .jeep-spec { font-size: 11px; color: #888; }
body.page-about .jeep-desc { font-size: 12px; color: #666; line-height: 1.7; }

body.page-about .team { background: #F3EFF3; padding: 8px 48px 40px; }
body.page-about .team-header { text-align: center; margin-bottom: 24px; }
body.page-about .team-eyebrow { font-family: var(--head); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green2); margin-bottom: 8px; display: flex; align-items: center; justify-content: center; gap: 8px; }
body.page-about .team-eyebrow::before, body.page-about .team-eyebrow::after { content: ''; display: inline-block; width: 22px; height: 2px; background: var(--green2); flex-shrink: 0; }
body.page-about .team-header h2 { font-family: var(--head); font-size: 20px; font-weight: 700; color: #2C2C2C; margin-bottom: 6px; }
body.page-about .team-header p { font-size: 12px; color: #666; max-width: 400px; margin: 0 auto; line-height: 1.55; }
body.page-about .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 820px; margin: 0 auto; }
body.page-about .team-card { background: #fff; border-radius: 12px; border: 1px solid #EAE4EA; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
body.page-about .team-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(120,100,120,0.12); }
body.page-about .card-bar { height: 4px; border-radius: 11px 11px 0 0; }
body.page-about .team-card.purple .card-bar { background: var(--purple); }
body.page-about .team-card.green .card-bar { background: var(--green2); }
body.page-about .team-avatar-box { padding: 16px 16px 10px; display: flex; align-items: center; justify-content: center; }
body.page-about .team-card.purple .team-avatar-box { background: #f5f2f5; }
body.page-about .team-card.green .team-avatar-box { background: #f3f8eb; }
body.page-about .avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--head); font-size: 15px; font-weight: 700; color: #fff; }
body.page-about .team-card.purple .avatar { background: var(--purple); }
body.page-about .team-card.green .avatar { background: var(--green2); }
body.page-about .team-body { padding: 12px 14px 16px; }
body.page-about .team-role { font-family: var(--head); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green2); margin-bottom: 4px; }
body.page-about .team-name { font-family: var(--head); font-size: 13px; font-weight: 700; color: #2C2C2C; margin-bottom: 8px; }
body.page-about .team-divider { width: 20px; height: 2px; background: #EAE4EA; margin-bottom: 8px; }
body.page-about .team-desc { font-size: 11px; color: #777; line-height: 1.6; }

body.page-about .cta { background: var(--green2); padding: 36px 48px; text-align: center; }
body.page-about .cta h2 { font-family: var(--head); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.2; }
body.page-about .cta p { font-size: 13px; color: rgba(255,255,255,0.78); margin-bottom: 20px; max-width: 380px; margin-left: auto; margin-right: auto; line-height: 1.55; }
body.page-about .cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
body.page-about .btn { font-family: var(--head); font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; padding: 11px 22px; border-radius: 8px; cursor: pointer; border: none; transition: opacity 0.2s, transform 0.15s; }
body.page-about .btn:hover { opacity: 0.88; transform: scale(1.02); }
body.page-about .btn.primary { background: #fff; color: var(--green2); }
body.page-about .btn.secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.55); }

@media (max-width: 860px) {
  body.page-about .hero, body.page-about .story { grid-template-columns: 1fr; padding: 28px 28px 0; }
  body.page-about .hero-text { padding-bottom: 24px; }
  body.page-about .story { padding-bottom: 32px; }
  body.page-about .stats-bar { padding: 12px 28px; gap: 28px; }
  body.page-about .why { padding: 28px; }
  body.page-about .why-grid { grid-template-columns: 1fr; }
  body.page-about .jeep-section { padding: 28px; }
  body.page-about .jeep-inner { grid-template-columns: 1fr; }
  body.page-about .jeep-photo-wrap { min-height: 200px; }
  body.page-about .jeep-body { border-left: none; border-right: none; border-top: 1px solid #EAE4EA; border-bottom: 1px solid #EAE4EA; }
  body.page-about .team { padding: 8px 28px 32px; }
  body.page-about .team-grid { grid-template-columns: 1fr 1fr; }
  body.page-about .cta { padding: 28px; }
}
@media (max-width: 560px) {
  body.page-about .hero { padding: 24px 16px 0; }
  body.page-about .hero h1 { font-size: 22px; }
  body.page-about .stats-bar { padding: 12px 16px; gap: 16px; }
  body.page-about .story { padding: 28px 16px; }
  body.page-about .why { padding: 24px 16px; }
  body.page-about .jeep-section { padding: 24px 16px; }
  body.page-about .jeep-photo-wrap { min-height: 180px; }
  body.page-about .team { padding: 8px 16px 28px; }
  body.page-about .team-grid { grid-template-columns: 1fr; }
  body.page-about .cta { padding: 24px 16px; }
  body.page-about .cta-buttons { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════════════════
   PAGE: CARS & RATES (cars.html)
══════════════════════════════════════════════════════════ */
body.page-cars { background: #fff; color: #2C2C2C; }
body.page-cars .hero { background: var(--purple); padding: 60px 60px 0; text-align: center; }
body.page-cars .hero-eyebrow { font-family: var(--head); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--green2); margin-bottom: 12px; font-weight: 600; }
body.page-cars .hero-heading { font-family: var(--head); font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.2; }
body.page-cars .hero-sub { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 520px; margin: 0 auto; }

body.page-cars .fleet { padding: 36px 48px 44px; }
body.page-cars .grid-8 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; align-items: stretch; }
body.page-cars .card { border: 1px solid #E8E2E8; border-radius: 10px; padding: 14px 16px; background: #fff; display: flex; flex-direction: column; transition: transform 0.18s, box-shadow 0.18s; }
body.page-cars .card:hover { transform: translateY(-2px); box-shadow: 0 5px 16px rgba(0,0,0,0.08); }
body.page-cars .card-name { font-family: var(--head); font-size: 13px; font-weight: 700; color: #2C2C2C; margin-bottom: 8px; word-break: break-word; }
body.page-cars .card-tag { font-size: 11px; color: var(--green2); font-style: italic; line-height: 1.4; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
body.page-cars .thumb-wrap { width: 100%; height: 110px; border-radius: 6px; background: #F4F1F4; overflow: hidden; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
body.page-cars .thumb-wrap img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 6px; display: block; }
body.page-cars .card-specs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
body.page-cars .spec { font-size: 10px; color: #888; }
body.page-cars .card-divider { height: 1px; background: #EDE8ED; margin-bottom: 10px; }
body.page-cars .avail-period { font-size: 10px; color: var(--green2); font-weight: 600; margin-bottom: 3px; letter-spacing: 0.01em; }
body.page-cars .avail-label { font-size: 9px; color: #aaa; margin-bottom: 8px; font-style: italic; }
body.page-cars .price-block { margin-top: auto; }
body.page-cars .price-row { display: flex; align-items: baseline; gap: 5px; margin-bottom: 2px; }
body.page-cars .price-day { font-family: var(--head); font-size: 17px; font-weight: 700; color: var(--green2); }
body.page-cars .price-unit { font-size: 11px; color: #aaa; }
body.page-cars .price-week { font-size: 10px; color: #bbb; margin-bottom: 5px; }
body.page-cars .price-tax { font-size: 9px; color: #b0b0b0; font-style: italic; }

body.page-cars .cruise-banner { background: #2C2C2C; border-radius: 10px; padding: 20px 28px; margin-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
body.page-cars .cruise-eyebrow { font-family: var(--head); font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green2); margin-bottom: 4px; }
body.page-cars .cruise-title { font-family: var(--head); font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 4px; }
body.page-cars .cruise-desc { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5; max-width: 440px; }
body.page-cars .cruise-phone { font-family: var(--head); font-size: 22px; font-weight: 700; color: var(--green2); white-space: nowrap; }
body.page-cars .cruise-phone-label { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; text-align: right; }

@media (max-width: 900px) {
  body.page-cars .fleet { padding: 28px 24px 36px; }
  body.page-cars .grid-8 { grid-template-columns: 1fr 1fr; }
  body.page-cars .cruise-banner { flex-direction: column; align-items: flex-start; }
  body.page-cars .cruise-phone-label { text-align: left; }
}
@media (max-width: 600px) {
  body.page-cars .hero { padding: 40px 20px 0; }
  body.page-cars .hero-heading { font-size: 26px; }
  body.page-cars .fleet { padding: 20px 16px 28px; }
  body.page-cars .grid-8 { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   PAGE: ISLAND TOURS (tours.html)
══════════════════════════════════════════════════════════ */
body.page-tours { background: var(--purple); }
body.page-tours .hero { background: var(--purple); padding: 56px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; min-height: 480px; }
body.page-tours .eyebrow { font-family: var(--head); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--purple-light); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
body.page-tours .eyebrow::before { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--purple-light); flex-shrink: 0; }
body.page-tours .hero-text h1 { font-family: var(--head); font-size: 40px; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.01em; }
body.page-tours .hero-text h1 span { color: var(--purple-light); }
body.page-tours .hero-text p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.8; }

body.page-tours .slideshow-box { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; background: #5a4a5a; box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
body.page-tours .slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease-in-out; }
body.page-tours .slide.active { opacity: 1; }
body.page-tours .slide.no-transition { transition: none; }
body.page-tours .slideshow-box::after { content: ''; position: absolute; inset: 0; border-radius: 16px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12); z-index: 2; pointer-events: none; }
body.page-tours .indicators { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 7px; align-items: center; }
body.page-tours .dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; padding: 0; transition: all 0.3s ease; }
body.page-tours .dot.active { background: var(--purple-light); width: 20px; border-radius: 4px; }
body.page-tours .arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; background: rgba(0,0,0,0.3); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; backdrop-filter: blur(4px); }
body.page-tours .arrow:hover { background: rgba(0,0,0,0.55); }
body.page-tours .arrow.prev { left: 12px; }
body.page-tours .arrow.next { right: 12px; }

body.page-tours .highlights { padding: 72px 60px; background: #fff; color: #2C2C2C; }
body.page-tours .section-header { margin-bottom: 48px; }
body.page-tours .eyebrow-green { font-family: var(--head); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green2); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
body.page-tours .eyebrow-green::before { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--green2); flex-shrink: 0; }
body.page-tours .section-header h2 { font-family: var(--head); font-size: 36px; font-weight: 700; color: #2C2C2C; line-height: 1.15; }
body.page-tours .section-header h2 span { color: var(--purple); }
body.page-tours .tour-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
body.page-tours .tour-card { border-radius: 14px; border: 1px solid #EAE4EA; overflow: hidden; background: #fff; transition: transform 0.25s ease, box-shadow 0.25s ease; display: flex; flex-direction: column; }
body.page-tours .tour-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(120,100,120,0.15); }
body.page-tours .tour-card::before { content: ''; display: block; height: 4px; background: var(--purple); }
body.page-tours .tour-card.green::before { background: var(--green2); }
body.page-tours .card-icon { background: #f7f3f7; padding: 28px 24px 20px; display: flex; align-items: center; justify-content: center; }
body.page-tours .card-icon svg { width: 52px; height: 52px; }
body.page-tours .card-body { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; }
body.page-tours .tour-name { font-family: var(--head); font-size: 16px; font-weight: 700; color: #2C2C2C; margin-bottom: 6px; }
body.page-tours .tour-meta { display: flex; gap: 14px; margin-bottom: 14px; }
body.page-tours .meta-item { font-size: 12px; color: var(--purple); font-weight: 500; display: flex; align-items: center; gap: 4px; }
body.page-tours .meta-item svg { width: 13px; height: 13px; flex-shrink: 0; }
body.page-tours .tour-desc { font-size: 13px; color: #666; line-height: 1.7; flex: 1; margin-bottom: 18px; }
body.page-tours .tour-stops { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 6px; }
body.page-tours .tour-stops li { font-size: 12px; color: #555; display: flex; align-items: flex-start; gap: 7px; line-height: 1.5; }
body.page-tours .stop-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green2); flex-shrink: 0; margin-top: 5px; }
body.page-tours .tour-price { margin-top: auto; padding-top: 16px; border-top: 1px solid #EAE4EA; display: flex; align-items: baseline; gap: 6px; }
body.page-tours .price-amount { font-family: var(--head); font-size: 24px; font-weight: 700; color: var(--purple); }
body.page-tours .price-label { font-size: 12px; color: #aaa; }

@media (max-width: 860px) {
  body.page-tours .hero { grid-template-columns: 1fr; padding: 48px 28px; gap: 32px; }
  body.page-tours .hero-text h1 { font-size: 32px; }
  body.page-tours .slideshow-box { aspect-ratio: 16/9; }
  body.page-tours .highlights { padding: 56px 28px; }
  body.page-tours .tour-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  body.page-tours .hero { padding: 36px 20px; }
  body.page-tours .hero-text h1 { font-size: 26px; }
  body.page-tours .hero-text p { font-size: 13px; }
  body.page-tours .highlights { padding: 44px 20px; }
  body.page-tours .tour-grid { grid-template-columns: 1fr; }
  body.page-tours .section-header h2 { font-size: 28px; }
}

/* ══════════════════════════════════════════════════════════
   PAGE: AIRPORT TRANSFERS (transfers.html)
══════════════════════════════════════════════════════════ */
body.page-transfers { background: var(--purple); color: #2C2C2C; }
body.page-transfers .hero { background: var(--purple); padding: 56px 60px 48px; text-align: center; }
body.page-transfers .eyebrow { font-family: var(--head); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green2); margin-bottom: 14px; display: flex; align-items: center; justify-content: center; gap: 10px; }
body.page-transfers .eyebrow::before, body.page-transfers .eyebrow::after { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--green2); flex-shrink: 0; }
body.page-transfers .hero h1 { font-family: var(--head); font-size: 36px; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 16px; }
body.page-transfers .hero-sub { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.7; max-width: 480px; margin: 0 auto 20px; }
body.page-transfers .hero-note { font-size: 12px; color: rgba(255,255,255,0.52); line-height: 1.6; max-width: 440px; margin: 0 auto; }

body.page-transfers .cruise { background: #3C3C3C; padding: 13px 40px; display: flex; align-items: center; justify-content: center; }
body.page-transfers .cruise p { font-size: 12px; color: rgba(255,255,255,0.82); text-align: center; line-height: 1.5; }
body.page-transfers .cruise strong { font-weight: 500; color: #fff; }
body.page-transfers .cruise a { color: var(--green2); text-decoration: none; font-weight: 500; }

body.page-transfers .why { background: #F3EFF3; padding: 56px 60px; }
body.page-transfers .section-header { margin-bottom: 36px; text-align: center; }
body.page-transfers .section-eyebrow { font-family: var(--head); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green2); margin-bottom: 10px; display: flex; align-items: center; justify-content: center; gap: 10px; }
body.page-transfers .section-eyebrow::before, body.page-transfers .section-eyebrow::after { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--green2); flex-shrink: 0; }
body.page-transfers .section-header h2 { font-family: var(--head); font-size: 24px; font-weight: 700; color: #2C2C2C; line-height: 1.2; }
body.page-transfers .section-header h2 span { color: var(--purple); }
body.page-transfers .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 960px; margin: 0 auto; }
body.page-transfers .why-card { border-radius: 14px; border: 1px solid #EAE4EA; background: #fff; display: flex; flex-direction: column; transition: transform 0.25s ease, box-shadow 0.25s ease; }
body.page-transfers .why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(120,100,120,0.15); }
body.page-transfers .card-bar { height: 4px; border-radius: 13px 13px 0 0; }
body.page-transfers .why-card.green .card-bar { background: var(--green2); }
body.page-transfers .why-card.purple .card-bar { background: var(--purple); }
body.page-transfers .card-icon-box { padding: 24px 20px 16px; display: flex; align-items: center; justify-content: center; }
body.page-transfers .why-card.green .card-icon-box { background: #f3f8eb; }
body.page-transfers .why-card.purple .card-icon-box { background: #f5f2f5; }
body.page-transfers .card-icon-box svg { width: 44px; height: 44px; }
body.page-transfers .card-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
body.page-transfers .card-title { font-family: var(--head); font-size: 14px; font-weight: 700; color: #2C2C2C; margin-bottom: 8px; }
body.page-transfers .card-text { font-size: 12px; color: #666; line-height: 1.7; flex: 1; }
body.page-transfers .form-section { background: #fff; }

@media (max-width: 900px) {
  body.page-transfers .why-grid { grid-template-columns: repeat(2, 1fr); }
  body.page-transfers .why { padding: 44px 40px; }
}
@media (max-width: 600px) {
  body.page-transfers .hero { padding: 40px 20px 36px; }
  body.page-transfers .hero h1 { font-size: 26px; }
  body.page-transfers .cruise { padding: 10px 20px; }
  body.page-transfers .why { padding: 36px 20px; }
  body.page-transfers .why-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   PAGE: CONTACT (contact.html)
══════════════════════════════════════════════════════════ */
body.page-contact { background: #fff; }
body.page-contact .page { display: grid; grid-template-columns: 1fr 1fr; max-width: 900px; margin: 32px auto; background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #ddd; }

body.page-contact .left { background: var(--purple); padding: 40px 36px; display: flex; flex-direction: column; justify-content: space-between; }
body.page-contact .left-eyebrow { font-family: var(--head); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--purple-light); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
body.page-contact .left-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--purple-light); display: inline-block; flex-shrink: 0; }
body.page-contact .left h2 { font-family: var(--head); font-size: 24px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 12px; }
body.page-contact .left p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 28px; }
body.page-contact .info-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
body.page-contact .info-icon { width: 28px; height: 28px; border-radius: 6px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
body.page-contact .info-icon svg { width: 13px; height: 13px; stroke: var(--purple-light); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
body.page-contact .info-text-label { font-family: var(--head); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
body.page-contact .info-text-val { font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.5; }
body.page-contact .hours-block { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 16px; margin-top: 4px; }
body.page-contact .hours-block .hours-row { font-size: 11px; padding: 4px 0; border-bottom: none; }
body.page-contact .hours-block .hours-day { color: rgba(255,255,255,0.7); }
body.page-contact .hours-block .hours-time { color: rgba(255,255,255,0.4); }

body.page-contact .left-photo { margin: 16px 0; border-radius: 10px; overflow: hidden; }
body.page-contact .left-photo img { width: 100%; height: 160px; object-fit: cover; object-position: center; display: block; }

body.page-contact .right { padding: 36px 32px; }
body.page-contact .form-title { font-family: var(--head); font-size: 18px; font-weight: 700; color: #2C2C2C; margin-bottom: 4px; }
body.page-contact .form-sub { font-size: 12px; color: #888; margin-bottom: 20px; }
body.page-contact .type-toggle { display: flex; border: 1px solid #D8D0D8; border-radius: 6px; overflow: hidden; margin-bottom: 16px; }
body.page-contact .type-btn { flex: 1; font-family: var(--body); font-size: 11px; font-weight: 600; color: var(--purple); background: #fff; border: none; border-right: 1px solid #D8D0D8; padding: 8px 4px; cursor: pointer; transition: background 0.15s, color 0.15s; }
body.page-contact .type-btn:last-child { border-right: none; }
body.page-contact .type-btn.active { background: var(--purple); color: #fff; }
body.page-contact .type-btn:hover:not(.active) { background: #f3eff3; }
body.page-contact .fg input:focus, body.page-contact .fg select:focus, body.page-contact .fg textarea:focus { border-color: var(--purple); }
body.page-contact .conditional { display: none; }
body.page-contact .conditional.visible { display: contents; }
body.page-contact .or-row { display: flex; align-items: center; gap: 10px; margin: 14px 0 10px; }
body.page-contact .or-line { flex: 1; height: 1px; background: #EDE8ED; }
body.page-contact .or-text { font-size: 11px; color: #bbb; white-space: nowrap; }
body.page-contact .wa-btn { width: 100%; background: #25D366; color: #fff; font-family: var(--body); font-size: 12px; font-weight: 600; border: none; border-radius: 8px; padding: 9px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: opacity 0.2s; text-decoration: none; }
body.page-contact .wa-btn:hover { opacity: 0.88; }
body.page-contact .wa-icon { width: 15px; height: 15px; fill: #fff; flex-shrink: 0; }

@media (max-width: 700px) {
  body.page-contact .page { grid-template-columns: 1fr; margin: 0; border-radius: 0; }
  body.page-contact .left { padding: 28px 20px; }
  body.page-contact .right { padding: 24px 20px; }
  body.page-contact .type-btn { font-size: 10px; padding: 7px 2px; }
}

/* ══════════════════════════════════════════════════════════
   PAGE: TERMS & CONDITIONS (tc.html)
══════════════════════════════════════════════════════════ */
body.page-terms { background: #f9f7f9; color: #2C2C2C; }
body.page-terms .tc-hero { background: var(--purple); padding: 48px 52px 44px; }
body.page-terms .eyebrow { font-family: var(--head); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--purple-light); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
body.page-terms .eyebrow::before { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--purple-light); flex-shrink: 0; }
body.page-terms .tc-hero h1 { font-family: var(--head); font-size: 34px; font-weight: 700; color: #fff; margin-bottom: 10px; }
body.page-terms .tc-hero p { font-size: 14px; color: rgba(255,255,255,0.75); max-width: 600px; line-height: 1.7; }

body.page-terms .tc-body { max-width: 980px; margin: 0 auto; padding: 40px 36px 64px; display: grid; grid-template-columns: 186px 1fr; gap: 32px; align-items: start; }
body.page-terms .tc-nav { position: sticky; top: 72px; }
body.page-terms .tc-nav-title { font-family: var(--head); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 2px solid var(--purple); }
body.page-terms .tc-nav a { display: flex; align-items: center; gap: 9px; font-size: 12px; color: #555; text-decoration: none; padding: 9px 10px; border-radius: 8px; margin-bottom: 3px; transition: all 0.18s; line-height: 1.3; cursor: pointer; background: #fff; border: 1px solid #EAE4EA; }
body.page-terms .tc-nav a .nav-icon { width: 26px; height: 26px; border-radius: 6px; background: #f3eff3; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.18s; }
body.page-terms .tc-nav a .nav-icon svg { width: 12px; height: 12px; stroke: var(--purple); }
body.page-terms .tc-nav a .nav-label { flex: 1; }
body.page-terms .tc-nav a .nav-arrow { font-size: 9px; color: #ddd; transition: color 0.18s; }
body.page-terms .tc-nav a:hover { background: #f3eff3; border-color: #D8CCD8; color: var(--purple); }
body.page-terms .tc-nav a:hover .nav-icon { background: var(--purple); }
body.page-terms .tc-nav a:hover .nav-icon svg { stroke: #fff; }
body.page-terms .tc-nav a:hover .nav-arrow { color: var(--purple); }
body.page-terms .tc-nav a.active { background: var(--purple); border-color: var(--purple); color: #fff; font-weight: 600; box-shadow: 0 3px 10px rgba(120,100,120,0.25); }
body.page-terms .tc-nav a.active .nav-icon { background: rgba(255,255,255,0.2); }
body.page-terms .tc-nav a.active .nav-icon svg { stroke: #fff; }
body.page-terms .tc-nav a.active .nav-arrow { color: rgba(255,255,255,0.5); }
body.page-terms .tc-nav a.active .nav-label { color: #fff; }

body.page-terms .tc-content { min-height: 300px; }
body.page-terms .tc-panel { display: none; background: #fff; border: 1px solid #E8E0E8; border-radius: 12px; padding: 28px 28px 24px; box-shadow: 0 2px 16px rgba(120,100,120,0.08); }
body.page-terms .tc-panel.active { display: block; }
body.page-terms .panel-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid #E8E0E8; }
body.page-terms .panel-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--purple); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
body.page-terms .panel-icon.green { background: var(--green2); }
body.page-terms .panel-icon svg { width: 18px; height: 18px; }
body.page-terms .panel-header h2 { font-family: var(--head); font-size: 18px; font-weight: 700; color: #2C2C2C; }
body.page-terms .tc-panel p { font-size: 14px; color: #444; line-height: 1.8; margin-bottom: 12px; }
body.page-terms .tc-panel p:last-child { margin-bottom: 0; }
body.page-terms .tc-box { border-radius: 9px; padding: 13px 16px; margin-bottom: 13px; font-size: 13px; line-height: 1.75; color: #444; }
body.page-terms .tc-box.warn { background: #FFFAEB; border: 1px solid #F0C040; color: #7A5500; }
body.page-terms .tc-box.info { background: #F3EFF3; border: 1px solid #D8CCD8; }
body.page-terms .tc-box.red { background: #FFF5F5; border: 1px solid #F5C0C0; color: #8B0000; }
body.page-terms .tc-box strong { display: block; margin-bottom: 3px; font-weight: 600; }
body.page-terms .damage-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 13px; }
body.page-terms .damage-table th { background: var(--purple); color: #fff; font-family: var(--head); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 9px 13px; text-align: left; }
body.page-terms .damage-table td { padding: 8px 13px; border-bottom: 1px solid #EAE4EA; color: #444; }
body.page-terms .damage-table tr:nth-child(even) td { background: #F9F7F9; }
body.page-terms .damage-table tr:last-child td { border-bottom: none; }

body.page-terms .tc-placeholder { background: #fff; border: 1px solid #E8E0E8; border-radius: 12px; padding: 32px; box-shadow: 0 2px 16px rgba(120,100,120,0.08); }
body.page-terms .tc-placeholder h3 { font-family: var(--head); font-size: 17px; font-weight: 700; color: #2C2C2C; margin-bottom: 12px; }
body.page-terms .tc-placeholder p { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 10px; }
body.page-terms .tc-placeholder p:last-child { margin-bottom: 0; }

body.page-terms .mobile-nav-toggle { display: none; width: 100%; background: var(--purple); color: #fff; border: none; padding: 12px 16px; font-family: var(--head); font-size: 13px; font-weight: 600; text-align: left; cursor: pointer; border-radius: 8px; margin-bottom: 8px; align-items: center; justify-content: space-between; }
body.page-terms .mobile-nav-toggle .arrow { transition: transform 0.25s; }
body.page-terms .mobile-nav-toggle.open .arrow { transform: rotate(180deg); }
body.page-terms .mobile-nav-links { display: none; background: #fff; border: 1px solid #E8E0E8; border-radius: 8px; padding: 6px 0; margin-bottom: 20px; }
body.page-terms .mobile-nav-links.open { display: block; }
body.page-terms .mobile-nav-links a { display: block; padding: 9px 16px; font-size: 13px; color: #555; text-decoration: none; cursor: pointer; }
body.page-terms .mobile-nav-links a:hover { background: #F3EFF3; color: var(--purple); }

@media (max-width: 700px) {
  body.page-terms .tc-hero { padding: 32px 20px 36px; }
  body.page-terms .tc-hero h1 { font-size: 24px; }
  body.page-terms .tc-body { grid-template-columns: 1fr; padding: 24px 16px 48px; gap: 0; }
  body.page-terms .tc-nav { display: none; }
  body.page-terms .mobile-nav-toggle { display: flex; }
  body.page-terms .tc-panel { padding: 20px 16px; }
  body.page-terms .damage-table th, body.page-terms .damage-table td { padding: 7px 9px; font-size: 12px; }
}
