/* AquaRide Jetski Club — water-sport-cyan palette */
:root {
  --cyan: #00c8e0;
  --cyan-dark: #0099b0;
  --cyan-light: #b3f0f8;
  --navy: #003850;
  --navy-dark: #001f30;
  --sky: #e0f8fd;
  --wave: #80e0f0;
  --accent: #ff6b00;
  --accent-light: #ff9a40;
  --white: #ffffff;
  --text: #0d2b38;
  --text-muted: #4a7080;
  --border: #b3e8f0;
  --card-bg: #f0fbfd;
  --shadow: 0 4px 24px rgba(0,72,100,0.13);
  --radius: 14px;
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

/* ===== DEMO BAR ===== */
.demo-bar {
  background: var(--navy-dark);
  color: #e0f4ff;
  font-size: 13px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.demo-bar span { font-weight: 600; letter-spacing: 0.05em; color: var(--cyan); }
.demo-bar a {
  color: #b3f0f8;
  text-decoration: underline;
  font-weight: 500;
  white-space: nowrap;
}
.demo-bar a:hover { color: var(--white); }
.demo-bar .btn-pesan {
  background: var(--accent);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.demo-bar .btn-pesan:hover { background: var(--accent-light); }

/* ===== NAV ===== */
header {
  background: var(--navy);
  position: sticky;
  top: 37px;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--cyan), var(--wave));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text { color: var(--white); font-size: 1.15rem; font-weight: 800; line-height: 1.1; }
.logo-text small { display: block; font-size: 0.65rem; font-weight: 400; color: var(--cyan-light); letter-spacing: 0.08em; }

/* checkbox hack mobile nav */
#nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}
nav ul li a {
  color: #c8eaf0;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
nav ul li a:hover, nav ul li a.active {
  background: var(--cyan-dark);
  color: var(--white);
}
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  border-radius: 20px !important;
  padding: 7px 18px !important;
}
.nav-cta:hover { background: var(--accent-light) !important; }

@media (max-width: 768px) {
  .nav-toggle-label { display: flex; }
  nav {
    position: absolute;
    top: 62px;
    left: 0; right: 0;
    background: var(--navy-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  #nav-toggle:checked ~ nav { max-height: 320px; }
  nav ul {
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 4px;
    align-items: flex-start;
  }
  nav ul li { width: 100%; }
  nav ul li a { display: block; width: 100%; padding: 10px 14px; }
}

/* ===== HERO (index) ===== */
.hero {
  min-height: 92vh;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 45%, #005a78 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' d='M0,60 C360,120 1080,0 1440,60 L1440,120 L0,120 Z'/%3E%3C/svg%3E") center/cover no-repeat;
}
.hero-content { max-width: 720px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(0,200,224,0.18);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--cyan);
}
.hero p {
  color: #a8dce8;
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: var(--navy-dark);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,200,224,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0,200,224,0.45); }
.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }

/* wave SVG divider */
.wave-top {
  background: var(--navy);
  line-height: 0;
}
.wave-top svg { display: block; }

/* ===== SECTIONS ===== */
.section { padding: 72px 20px; }
.section-sm { padding: 48px 20px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .label {
  display: inline-block;
  color: var(--cyan-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.section-header p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CARDS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--cyan), var(--wave));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { fill: var(--navy); }
.card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.2s;
  position: relative;
}
.price-card.featured {
  border-color: var(--cyan);
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  color: var(--white);
  box-shadow: 0 8px 40px rgba(0,200,224,0.25);
}
.price-card.featured h3, .price-card.featured .price-amount { color: var(--white); }
.price-card.featured .price-desc { color: #a8dce8; }
.price-card.featured ul li { color: #c8eaf0; }
.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.price-amount { font-size: 2.2rem; font-weight: 900; color: var(--cyan-dark); line-height: 1; margin: 14px 0 4px; }
.price-amount span { font-size: 0.95rem; font-weight: 500; }
.price-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.price-card ul { list-style: none; text-align: left; margin-bottom: 28px; }
.price-card ul li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.price-card ul li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--cyan);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23003850' d='M6.5 11.5L3 8l1-1 2.5 2.5 5-5 1 1z'/%3E%3C/svg%3E");
  background-size: cover;
}
.price-card .btn-primary { width: 100%; text-align: center; }
.price-card .btn-outline {
  display: block;
  background: transparent;
  border: 2px solid var(--cyan-dark);
  color: var(--cyan-dark);
  padding: 11px 20px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  text-align: center;
}
.price-card .btn-outline:hover { background: var(--cyan-dark); color: var(--white); }

/* ===== GALLERY GRID ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy), #005a78);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.gallery-item svg { opacity: 0.18; }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,24,40,0.85));
  color: var(--white);
  padding: 16px 14px 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  text-align: center;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 20px;
  border: 1px solid var(--border);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--navy));
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}
.team-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); }
.team-card p { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.team-cert {
  display: inline-block;
  background: var(--cyan-light);
  color: var(--cyan-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* ===== FORM ===== */
.form-wrap { max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--cyan); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  border: none;
  border-radius: 30px;
  color: var(--navy-dark);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.88; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--cyan-dark), var(--navy));
  padding: 48px 20px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-num { font-size: 2.4rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--cyan-light); margin-top: 6px; font-weight: 500; }

/* ===== TESTIMONIAL ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 640px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 22px;
  box-shadow: 0 2px 16px rgba(0,56,80,0.08);
}
.testimonial-card p { color: var(--text); font-size: 0.95rem; line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.testimonial-author { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* ===== EVENTS TABLE ===== */
.event-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.event-table th {
  background: var(--navy);
  color: var(--cyan-light);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 14px 18px;
  text-align: left;
  letter-spacing: 0.05em;
}
.event-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text);
  vertical-align: middle;
}
.event-table tr:last-child td { border-bottom: none; }
.event-table tr:nth-child(even) td { background: var(--sky); }
.badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.badge-open { background: #d1fae5; color: #065f46; }
.badge-full { background: #fee2e2; color: #991b1b; }
.badge-coming { background: var(--cyan-light); color: var(--cyan-dark); }

/* ===== SAFETY / ACCORDION ===== */
.accordion input[type="checkbox"] { display: none; }
.accordion-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.accordion-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--card-bg);
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.97rem;
  user-select: none;
}
.accordion-label::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--cyan-dark);
  transition: transform 0.25s;
  line-height: 1;
}
.accordion input:checked + .accordion-label::after { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--white);
}
.accordion input:checked ~ .accordion-body { max-height: 400px; }
.accordion-body p {
  padding: 16px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== ALERT BOX ===== */
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.92rem;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-info { background: var(--sky); border-left: 4px solid var(--cyan); color: var(--navy); }
.alert-warn { background: #fff7ed; border-left: 4px solid var(--accent); color: #7c2d12; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 64px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23f0fbfd' d='M0,30 C360,60 1080,0 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") center/cover no-repeat;
}
.page-hero .label { display: inline-block; color: var(--cyan); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p { color: #a8dce8; font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ===== BG VARIANT ===== */
.bg-sky { background: var(--sky); }
.bg-navy { background: var(--navy); }
.bg-white { background: var(--white); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  color: #a8ccd4;
  padding: 52px 20px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin-top: 12px; max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: 0.92rem; font-weight: 700; margin-bottom: 14px; letter-spacing: 0.04em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #8bb5c0; text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; margin-bottom: 10px; }
.footer-contact-item svg { fill: var(--cyan); min-width: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: #5a8090;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-24 { margin-bottom: 24px; }

/* ===== SCHEDULE page tabs ===== */
.tab-wrap input[type="radio"] { display: none; }
.tab-labels { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.tab-label {
  padding: 8px 22px;
  border-radius: 24px;
  background: var(--card-bg);
  border: 2px solid var(--border);
  cursor: pointer;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.tab-content { display: none; }
#tab1:checked ~ .tab-labels label[for="tab1"],
#tab2:checked ~ .tab-labels label[for="tab2"],
#tab3:checked ~ .tab-labels label[for="tab3"] {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
  color: var(--white);
}
#tab1:checked ~ .tab-contents #content1,
#tab2:checked ~ .tab-contents #content2,
#tab3:checked ~ .tab-contents #content3 { display: block; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 { color: var(--navy); font-size: 1.3rem; font-weight: 800; margin-bottom: 20px; }
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--cyan), var(--wave));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { fill: var(--navy); }
.contact-item-body h4 { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.contact-item-body p { color: var(--text-muted); font-size: 0.88rem; margin-top: 2px; }

/* ===== LOCATION MAP PLACEHOLDER ===== */
.map-placeholder {
  background: linear-gradient(135deg, var(--navy-dark), #005a78);
  border-radius: var(--radius);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--cyan-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 28px;
  border: 2px dashed var(--cyan-dark);
}
