/* ===== Tour Nurse Page — Bright / Clean / Medical ===== */
.tn-page {
  --bg: #ffffff;
  --bg-alt: #f7f5fa;
  --text: #2a2a3a;
  --text-muted: #6b6b80;
  --accent: #6c5ce7;
  --accent2: #a29bfe;
  --card-bg: #ffffff;
  background: var(--bg);
  color: var(--text);
}

.tn-page .nav {
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.tn-page .nav-logo { color: var(--text); }
.tn-page .nav-links a { color: var(--text-muted); }
.tn-page .nav-links a:hover { color: var(--accent); }
.tn-page .lang-toggle {
  border-color: var(--accent); color: var(--accent);
}
.tn-page .lang-toggle:hover {
  background: var(--accent); color: #fff;
}
.tn-page .nav-toggle span { background: var(--text); }
.tn-page .footer {
  background: #1a1a2e; color: #ccc;
}

/* Hero */
.tn-hero {
  position: relative; min-height: 75vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.tn-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 40%, #74b9ff 100%);
}
.tn-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; opacity: 0.35;
  mix-blend-mode: luminosity;
}
.tn-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.15); z-index: 1;
}
.tn-hero-content {
  position: relative; z-index: 2; padding: 0 24px;
  color: #fff;
}
.tn-hero-label {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; opacity: 0.85; margin-bottom: 16px;
}
.tn-hero-content h1 {
  font-size: 2.8rem; font-weight: 900; letter-spacing: 3px;
  margin-bottom: 20px; line-height: 1.3;
}
.tn-hero-sub {
  font-size: 1rem; max-width: 600px; margin: 0 auto 40px;
  line-height: 1.8; opacity: 0.9;
}
.tn-hero-scroll {
  display: inline-block; font-size: 1.5rem; color: #fff; opacity: 0.7;
  animation: bounce 2s infinite;
}

/* Sections */
.tn-section {
  padding: 80px 0;
}
.tn-section-alt {
  background: var(--bg-alt);
}
.tn-section-title {
  font-size: 1.8rem; font-weight: 900; text-align: center;
  margin-bottom: 48px; letter-spacing: 2px; color: var(--text);
}

/* Track Record */
.tn-record-lead {
  text-align: center; font-size: 1rem; color: var(--text-muted);
  max-width: 700px; margin: -24px auto 40px; line-height: 1.8;
}
.tn-record-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.tn-record-card {
  background: var(--card-bg); border-radius: 16px;
  padding: 32px 24px; text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.tn-record-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(108,92,231,0.12);
  border-color: rgba(108,92,231,0.2);
}
.tn-record-icon {
  font-size: 2.5rem; margin-bottom: 16px;
}
.tn-record-card h4 {
  font-size: 1rem; font-weight: 700; margin-bottom: 12px;
}
.tn-record-card p {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.8;
  margin-bottom: 16px;
}
.tn-record-tag {
  display: inline-block; padding: 5px 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; border-radius: 20px; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 1px;
}

/* About Photo */
.tn-about-photo {
  width: 100%; max-width: 320px; border-radius: 16px;
  margin: 20px 0; box-shadow: 0 8px 30px rgba(108,92,231,0.15);
  border: 3px solid rgba(108,92,231,0.2);
}

/* Record Photo */
.tn-record-photo-wrap {
  width: 100%; height: 160px; border-radius: 12px; overflow: hidden;
  margin-bottom: 16px;
}
.tn-record-photo {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.tn-record-card:hover .tn-record-photo {
  transform: scale(1.05);
}

/* Gallery */
.tn-gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-top: 48px;
}
.tn-gallery-img {
  width: 100%; height: 180px; object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.tn-gallery-img:hover {
  transform: scale(1.03);
}

/* About */
.tn-about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.tn-about-text h2 {
  font-size: 1.6rem; font-weight: 900; margin-bottom: 16px; color: var(--text);
}
.tn-about-lead {
  font-size: 1.2rem; font-weight: 700; color: var(--accent);
  margin-bottom: 20px; line-height: 1.6;
}
.tn-about-text > p:last-child {
  color: var(--text-muted); line-height: 2; font-size: 0.92rem;
}

.tn-about-points {
  display: flex; flex-direction: column; gap: 28px;
}
.tn-point {
  display: flex; gap: 20px; align-items: flex-start;
}
.tn-point-num {
  min-width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; border-radius: 50%; font-weight: 900; font-size: 0.85rem;
  letter-spacing: 1px;
}
.tn-point h4 {
  font-size: 0.95rem; font-weight: 700; margin-bottom: 4px;
}
.tn-point p {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.7;
}

/* Service Cards */
.tn-service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.tn-service-card {
  background: var(--card-bg); border-radius: 16px;
  padding: 32px 24px; text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.tn-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(108,92,231,0.12);
  border-color: rgba(108,92,231,0.2);
}
.tn-service-icon {
  font-size: 2.5rem; margin-bottom: 16px;
}
.tn-service-card h4 {
  font-size: 1rem; font-weight: 700; margin-bottom: 12px;
}
.tn-service-card p {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.8;
}

/* What We Provide */
.tn-provide-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.tn-provide-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 28px; background: var(--bg-alt); border-radius: 16px;
}
.tn-provide-icon {
  font-size: 2rem; min-width: 48px; text-align: center;
}
.tn-provide-item h4 {
  font-size: 0.95rem; font-weight: 700; margin-bottom: 6px;
}
.tn-provide-item p {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.8;
}

/* Pricing */
.tn-pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 48px;
}
.tn-pricing-card {
  background: #fff; border-radius: 20px;
  padding: 36px 28px; text-align: center;
  border: 2px solid rgba(108,92,231,0.15);
  box-shadow: 0 8px 40px rgba(108,92,231,0.08);
  width: 100%; transition: all 0.3s ease;
}
.tn-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(108,92,231,0.15);
}
.tn-pricing-featured {
  border-color: var(--accent);
  position: relative;
}
.tn-pricing-badge {
  display: inline-block; padding: 6px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; border-radius: 30px; font-size: 0.8rem;
  font-weight: 700; letter-spacing: 2px; margin-bottom: 24px;
}
.tn-pricing-price {
  margin-bottom: 8px;
}
.tn-price-amount {
  font-size: 3rem; font-weight: 900; color: var(--accent);
  letter-spacing: 2px;
}
.tn-price-unit {
  font-size: 0.9rem; color: var(--text-muted); display: block; margin-top: 4px;
}
.tn-pricing-note {
  font-size: 0.85rem; color: var(--accent); font-weight: 700; margin-bottom: 16px;
}

/* Multi-Day Discount */
.tn-multi-day {
  background: linear-gradient(135deg, rgba(108,92,231,0.06), rgba(162,155,254,0.08));
  border: 1px solid rgba(108,92,231,0.15);
  border-radius: 12px; padding: 14px 18px; margin-bottom: 24px;
}
.tn-multi-day-title {
  font-size: 0.8rem; font-weight: 900; color: var(--accent);
  letter-spacing: 2px; text-align: center; margin-bottom: 10px;
}
.tn-multi-day-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; font-size: 0.85rem;
}
.tn-multi-day-row span:last-child {
  font-weight: 700; color: var(--text); white-space: nowrap;
}
.tn-multi-day-row small {
  font-size: 0.7rem; color: #e17055; font-weight: 900;
}

/* Badge color variants */
.tn-badge-school {
  background: linear-gradient(135deg, #00b894, #55efc4);
}
.tn-badge-welfare {
  background: linear-gradient(135deg, #e17055, #fab1a0);
}

/* Hazky-exclusive feature highlight */
.tn-feature-special {
  color: var(--accent); font-weight: 700;
  position: relative;
}
.tn-feature-special::before {
  content: '★ '; color: var(--accent); font-size: 0.7rem;
}
.tn-pricing-features {
  list-style: none; text-align: left;
}
.tn-pricing-features li {
  padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem; color: var(--text);
  padding-left: 24px; position: relative;
}
.tn-pricing-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}

/* Options */
.tn-options-wrap {
  max-width: 800px; margin: 0 auto 48px;
}
.tn-options-title {
  font-size: 1.2rem; font-weight: 700; text-align: center;
  margin-bottom: 24px;
}
.tn-options-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.tn-option {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; background: #fff; border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.06);
}
.tn-option-label {
  font-size: 0.85rem; font-weight: 600;
}
.tn-option-price {
  font-size: 1rem; font-weight: 900; color: var(--accent);
  white-space: nowrap;
}
.tn-option-price span {
  font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
}

/* Example Pricing */
.tn-example {
  max-width: 700px; margin: 0 auto;
}
.tn-example h4 {
  font-size: 1.2rem; font-weight: 700; text-align: center;
  margin-bottom: 24px;
}
.tn-example-case {
  background: #fff; border-radius: 16px; padding: 28px;
  border: 1px solid rgba(0,0,0,0.06); margin-bottom: 20px;
}
.tn-example-title {
  font-size: 0.95rem; font-weight: 700; color: var(--accent);
  margin-bottom: 16px;
}
.tn-example-calc {
  display: flex; flex-direction: column; gap: 0;
}
.tn-calc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.9rem;
}
.tn-calc-row span:last-child {
  font-weight: 700; white-space: nowrap;
}
.tn-calc-total {
  border-bottom: none; border-top: 2px solid var(--accent);
  margin-top: 8px; padding-top: 14px;
}
.tn-calc-total span {
  font-size: 1.1rem; font-weight: 900; color: var(--accent);
}

/* Flow */
.tn-flow-steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.tn-flow-step {
  flex: 1; min-width: 180px; max-width: 220px;
  text-align: center; padding: 24px 16px;
  background: var(--bg-alt); border-radius: 16px;
}
.tn-flow-num {
  width: 44px; height: 44px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; border-radius: 50%; font-weight: 900; font-size: 1.1rem;
}
.tn-flow-step h4 {
  font-size: 0.9rem; font-weight: 700; margin-bottom: 8px;
}
.tn-flow-step p {
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.7;
}
.tn-flow-arrow {
  display: flex; align-items: center; font-size: 1.5rem;
  color: var(--accent2); font-weight: 300; padding-top: 40px;
}

/* CTA */
.tn-cta {
  text-align: center; padding: 48px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 20px; color: #fff;
}
.tn-cta h3 {
  font-size: 1.5rem; margin-bottom: 12px;
}
.tn-cta > p {
  opacity: 0.9; font-size: 0.95rem; margin-bottom: 28px; line-height: 1.8;
}
.tn-cta-btn {
  display: inline-block; padding: 14px 40px;
  background: #fff; color: var(--accent); border-radius: 30px;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 2px;
  transition: all 0.3s ease; text-decoration: none;
}
.tn-cta-btn:hover {
  background: rgba(255,255,255,0.9); transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  color: var(--accent);
}
.tn-cta-email {
  margin-top: 12px; font-size: 0.85rem; opacity: 0.8; letter-spacing: 1px;
}

/* Disclaimer */
.tn-disclaimer {
  text-align: center; max-width: 700px; margin: 0 auto;
}
.tn-disclaimer p {
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.8;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .tn-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .tn-record-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .tn-gallery { grid-template-columns: repeat(2, 1fr); }
  .tn-service-grid { grid-template-columns: repeat(2, 1fr); }
  .tn-provide-grid { grid-template-columns: 1fr; }
  .tn-pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .tn-options-grid { grid-template-columns: 1fr; }
  .tn-flow-arrow { display: none; }
  .tn-flow-steps { gap: 16px; }
  .tn-flow-step { max-width: none; }
}

@media (max-width: 600px) {
  .tn-hero-content h1 { font-size: 1.8rem; }
  .tn-hero-sub { font-size: 0.85rem; }
  .tn-section { padding: 60px 0; }
  .tn-section-title { font-size: 1.4rem; }
  .tn-service-grid { grid-template-columns: 1fr; }
  .tn-pricing-card { padding: 32px 24px; }
  .tn-price-amount { font-size: 2.2rem; }
  .tn-gallery { grid-template-columns: repeat(2, 1fr); }
  .tn-gallery-img { height: 140px; }
  .tn-flow-steps { flex-direction: column; align-items: center; }
  .tn-flow-step { max-width: 100%; width: 100%; }
}
