/* TABIKAZE (旅風) — Travel Agency | dead-sun-937.css */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #fff;
  --primary: #000;
  --secondary: #333;
  --text: #1a1a1a;
  --accent: #e94560;
  --accent-dark: #c0304a;
  --muted: #666;
  --light-gray: #f5f5f5;
  --border: #e0e0e0;
  --white: #fff;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Noto Sans JP", sans-serif;
  --transition: 0.3s ease;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  height: 64px;
}

.site-header.scrolled {
  background: rgba(0,0,0,0.95);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.site-header.transparent {
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  height: 64px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo svg { width: 140px; height: auto; }

.header-nav { display: flex; align-items: center; gap: 0; }
.header-nav a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.header-nav a:hover, .header-nav a.active { color: var(--accent); }

.header-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 8px 22px !important;
  border-radius: var(--radius);
}
.header-cta:hover { background: var(--accent-dark); color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #111;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(245.64deg, rgba(24, 72, 114, 0.5) 0%, rgba(161, 205, 244, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 640px;
}

.hero p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.4);
  animation: scrollLine 1.6s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   SECTIONS — COMMON
   ============================================================ */

section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 580px;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ============================================================
   FEATURES
   ============================================================ */

.features { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: rgba(233, 69, 96, 0.08);
  border-radius: 50%;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--accent);
}

.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.feature-card p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   TOURS
   ============================================================ */

.tours { background: var(--light-gray); }
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tour-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.tour-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); }

.tour-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.tour-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tour-card:hover .tour-img img { transform: scale(1.05); }

.tour-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.tour-body { padding: 24px; }
.tour-body h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.tour-body p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.tour-meta { display: flex; align-items: center; justify-content: space-between; }
.tour-price { font-size: 20px; font-weight: 700; color: var(--accent); }
.tour-price span { font-size: 13px; font-weight: 400; color: var(--muted); }
.tour-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}
.tour-link:hover { color: var(--accent); }

/* ============================================================
   ABOUT SPLIT
   ============================================================ */

.about-split { background: var(--bg); }
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

.split-text .section-desc { max-width: none; margin-bottom: 32px; }

.stats-row { display: flex; gap: 40px; margin-top: 40px; }
.stat { }
.stat-num { font-size: 40px; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-num sup { font-size: 20px; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ============================================================
   SERVICE PLANS PREVIEW
   ============================================================ */

.plans-preview { background: #0a0a0a; padding: 100px 0; }
.plans-preview .section-title { color: var(--white); }
.plans-preview .section-label { }
.plans-preview .section-desc { color: rgba(255,255,255,0.6); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.plan-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 32px 24px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.plan-card:hover { border-color: var(--accent); background: rgba(233, 69, 96, 0.06); transform: translateY(-4px); }
.plan-card.featured {
  border-color: var(--accent);
  background: rgba(233, 69, 96, 0.1);
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.plan-price { font-size: 32px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.plan-price span { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.5); }
.plan-unit { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 24px; }
.plan-features { margin-bottom: 28px; }
.plan-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-features li i { color: var(--accent); font-size: 12px; }

.btn-plan {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.btn-plan:hover, .plan-card.featured .btn-plan { background: var(--accent); color: var(--white); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials { background: var(--light-gray); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.testimonial-stars { color: #f5a623; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--secondary); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--muted);
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-loc { font-size: 12px; color: var(--muted); }

/* ============================================================
   CONTACT CTA
   ============================================================ */

.cta-section {
  background: linear-gradient(245.64deg, rgba(88, 117, 200, 0.9) 0%, rgba(24, 72, 114, 0.95) 100%);
  padding: 100px 0;
  text-align: center;
}
.cta-section h2 { font-size: 40px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer { background: #0a0a0a; padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); background: rgba(233,69,96,0.08); }

.footer-col h4 { font-size: 13px; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }

.footer-col address { font-style: normal; }
.footer-col address p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer-col address a { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-col address a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 30px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner.visible { display: flex; }
.cookie-text { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.5; max-width: 680px; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie-accept {
  padding: 10px 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-cookie-accept:hover { background: var(--accent-dark); }
.btn-cookie-decline {
  padding: 10px 24px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */

.page-hero {
  background: linear-gradient(245.64deg, rgba(24, 72, 114, 0.85) 0%, rgba(88, 117, 200, 0.7) 100%), #1a2540;
  padding: 120px 0 60px;
  text-align: center;
}
.page-hero h1 { font-size: 42px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-bottom: 20px; }
.breadcrumb a { font-size: 13px; color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ============================================================
   CONTENT / TEXT SECTIONS
   ============================================================ */

.content-section { padding: 80px 0; }
.content-section.gray { background: var(--light-gray); }
.content-section.dark { background: #0a0a0a; }

.content-box { max-width: 860px; margin: 0 auto; }
.content-box h2 { font-size: 28px; font-weight: 700; margin-bottom: 20px; margin-top: 40px; color: var(--primary); }
.content-box h2:first-child { margin-top: 0; }
.content-box h3 { font-size: 20px; font-weight: 600; margin-bottom: 14px; margin-top: 32px; color: var(--primary); }
.content-box p { font-size: 16px; line-height: 1.8; color: var(--secondary); margin-bottom: 18px; }
.content-box ul { margin-bottom: 20px; padding-left: 0; }
.content-box ul li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--secondary);
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.content-box ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

.contact-section { padding: 80px 0; background: var(--light-gray); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }

.contact-info h2 { font-size: 30px; font-weight: 700; margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail i { font-size: 18px; color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.contact-detail div p { margin-bottom: 2px; }
.contact-detail div strong { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); display: block; margin-bottom: 4px; }

.contact-form-box {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-title { font-size: 22px; font-weight: 700; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--secondary); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
}
.form-group textarea { min-height: 120px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 12px; margin-bottom: 20px; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font);
}
.btn-submit:hover { background: var(--accent-dark); }

/* ============================================================
   HISTORY PAGE
   ============================================================ */

.timeline { padding: 80px 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  margin-bottom: 48px;
  align-items: start;
}
.timeline-year {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  padding-top: 4px;
  text-align: right;
}
.timeline-body {
  border-left: 2px solid var(--border);
  padding-left: 32px;
  position: relative;
}
.timeline-body::before {
  content: '';
  position: absolute;
  left: -7px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
}
.timeline-body h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.timeline-body p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ============================================================
   MISSION / VALUES
   ============================================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--light-gray);
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}
.value-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   SERVICE PLANS PAGE
   ============================================================ */

.plans-full { background: var(--bg); padding: 80px 0; }
.plans-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.plan-full-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.plan-full-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.plan-full-card.featured { border-color: var(--accent); background: rgba(233, 69, 96, 0.02); }

.plan-full-header { margin-bottom: 28px; }
.plan-full-name { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.plan-full-tag { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; background: rgba(233,69,96,0.1); color: var(--accent); margin-bottom: 16px; }
.plan-full-price { font-size: 40px; font-weight: 700; color: var(--accent); line-height: 1; }
.plan-full-price span { font-size: 15px; font-weight: 400; color: var(--muted); }
.plan-full-unit { font-size: 13px; color: var(--muted); margin-top: 4px; }

.plan-divider { height: 1px; background: var(--border); margin: 24px 0; }
.plan-full-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.plan-full-features li:last-child { border-bottom: none; }
.plan-full-features li i { color: var(--accent); flex-shrink: 0; font-size: 13px; }
.plan-full-cta { margin-top: 28px; }

.plan-compare { padding: 60px 0; background: var(--light-gray); }
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.compare-table th, .compare-table td { padding: 14px 20px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); }
.compare-table th { background: #0a0a0a; color: var(--white); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.07em; }
.compare-table th:first-child { width: 220px; }
.compare-table td i.fa-check { color: var(--accent); }
.compare-table td i.fa-minus { color: var(--border); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(0,0,0,0.01); }

/* ============================================================
   SEND.PHP
   ============================================================ */

.send-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--light-gray); padding: 80px 30px; }
.send-box { background: var(--white); border-radius: 8px; padding: 48px; box-shadow: var(--shadow); text-align: center; max-width: 480px; width: 100%; }
.send-box i { font-size: 52px; color: var(--accent); margin-bottom: 20px; }
.send-box h1 { font-size: 26px; font-weight: 700; margin-bottom: 12px; }
.send-box p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1023px) {
  .hero h1 { font-size: 40px; }
  .section-title { font-size: 28px; }
  .features-grid, .tours-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .plans-full-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 13px; }
}

@media (max-width: 767px) {
  .header-nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: rgba(0,0,0,0.97); flex-direction: column; padding: 20px 0; }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 12px 30px; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .hamburger { display: flex; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .hero-buttons { flex-direction: column; }
  .features-grid, .tours-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .plans-full-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .plans-preview { padding: 60px 0; }
  .cta-section { padding: 60px 0; }
  .cta-section h2 { font-size: 28px; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 16px; }
  .stats-row { flex-wrap: wrap; gap: 24px; }
  .compare-table { display: none; }
}
