/* CruiseNesia — Paket Cruise & Pelayaran Wisata */
/* Primary: #01579b | Accent: #80deea | Premium Maritime */

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

:root {
  --primary: #01579b;
  --primary-dark: #003c71;
  --primary-light: #0277bd;
  --accent: #80deea;
  --accent-dark: #4dd0e1;
  --accent-light: #b2ebf2;
  --gold: #ffd54f;
  --gold-dark: #ffb300;
  --white: #ffffff;
  --off-white: #f0f8ff;
  --text: #102a43;
  --text-light: #486581;
  --text-muted: #829ab1;
  --surface: #e8f4f8;
  --card-bg: #ffffff;
  --shadow: 0 4px 20px rgba(1, 87, 155, 0.12);
  --shadow-lg: 0 8px 40px rgba(1, 87, 155, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ============ DEMO BAR ============ */
.demo-bar {
  background: #1a1a2e;
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-family: system-ui, sans-serif;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.demo-bar a { color: #7dd3fc; text-decoration: none; }
.demo-bar a.cta { color: #fbbf24; font-weight: 600; }
.demo-bar a:hover { text-decoration: underline; }

/* ============ HEADER / NAV ============ */
header {
  background: var(--primary-dark);
  position: sticky;
  top: 33px;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--accent);
}

.logo-text span:last-child {
  font-size: 10px;
  color: var(--accent-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Checkbox hack nav */
#nav-toggle { display: none; }

.nav-toggle-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s;
  border-radius: 2px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

nav ul li a {
  color: var(--accent-light);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  display: block;
}

nav ul li a:hover,
nav ul li a.active {
  background: rgba(128, 222, 234, 0.15);
  color: var(--accent);
}

nav ul li a.nav-cta {
  background: var(--gold-dark);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 8px 18px;
  margin-left: 8px;
}

nav ul li a.nav-cta:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #0277bd 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 60%, rgba(128, 222, 234, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 30%, rgba(255, 213, 79, 0.06) 0%, transparent 60%);
}

/* Ocean wave decoration */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(128, 222, 234, 0.15);
  border: 1px solid rgba(128, 222, 234, 0.4);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero p {
  font-size: 18px;
  color: var(--accent-light);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  font-family: var(--font);
}

.btn-primary {
  background: var(--gold-dark);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 179, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--primary-dark);
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(128, 222, 234, 0.4);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

/* Ship illustration */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ship-scene {
  position: relative;
  width: 100%;
  max-width: 440px;
}

/* ============ STATS BAR ============ */
.stats-bar {
  background: var(--white);
  padding: 40px 20px;
  box-shadow: var(--shadow);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 16px;
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============ SECTIONS ============ */
section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto 48px; }

/* ============ FEATURE CARDS ============ */
.features-bg {
  background: var(--off-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(128, 222, 234, 0.2);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* ============ PACKAGE CARDS ============ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(1, 87, 155, 0.08);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  border: 2px solid var(--accent-dark);
}

.package-visual {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold-dark);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.package-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-route {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-light);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.package-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.package-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.package-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-muted);
}

.package-price {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-amount {
  display: flex;
  flex-direction: column;
}

.price-from {
  font-size: 11px;
  color: var(--text-muted);
}

.price-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.price-per {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============ TESTIMONIALS ============ */
.testimonials-bg {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(128, 222, 234, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
}

.stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--accent-light);
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.reviewer-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.reviewer-info span {
  font-size: 12px;
  color: var(--accent);
  opacity: 0.8;
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, #003c71 0%, var(--primary) 60%, #0277bd 100%);
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(128, 222, 234, 0.1) 0%, transparent 70%);
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  font-size: 18px;
  color: var(--accent-light);
  margin-bottom: 36px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ============ FOOTER ============ */
footer {
  background: var(--primary-dark);
  color: var(--accent-light);
  padding: 60px 20px 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(128, 222, 234, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}

.page-hero p {
  font-size: 17px;
  color: var(--accent-light);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

/* ============ PAKET PAGE ============ */
.packages-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pkg-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(1, 87, 155, 0.08);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.pkg-full-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pkg-full-card.featured {
  border: 2px solid var(--accent-dark);
  position: relative;
}

.pkg-full-card.featured::before {
  content: 'TERPOPULER';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-dark);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 20px;
  border-radius: 0 0 10px 10px;
  letter-spacing: 1px;
  z-index: 2;
}

.pkg-vis {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pkg-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--surface);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.pkg-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.pkg-duration {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.include-list, .exclude-list {
  list-style: none;
  margin-bottom: 14px;
}

.include-list li, .exclude-list li {
  font-size: 13px;
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-light);
}

.include-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--accent-dark);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23003c71'%3E%3Cpath d='M13.5 4L6 11.5 2.5 8' stroke='%23003c71' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: cover;
}

.exclude-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: #ffcdd2;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.pkg-price-row {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pkg-price-val {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.pkg-price-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============ DESTINASI PAGE ============ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dest-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 1px solid rgba(1, 87, 155, 0.08);
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dest-vis {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.dest-body {
  padding: 18px;
}

.dest-flag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--surface);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.dest-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.dest-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.highlight-tag {
  background: var(--surface);
  color: var(--primary-light);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ============ GALERI PAGE ============ */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.galeri-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.galeri-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.galeri-vis {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.galeri-item.large .galeri-vis { height: 280px; }

.galeri-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,30,60,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.galeri-item:hover .galeri-overlay {
  opacity: 1;
}

.galeri-overlay span {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

/* ============ KONTAK PAGE ============ */
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.kontak-info h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.info-text span {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.jam-ops {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.jam-ops h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.jam-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-light);
  padding: 4px 0;
  border-bottom: 1px solid rgba(1, 87, 155, 0.08);
}

.jam-row:last-child { border-bottom: none; }
.jam-row strong { color: var(--text); }

.map-placeholder {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Contact Form */
.kontak-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(128, 222, 234, 0.2);
}

.kontak-form-wrap h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
}

.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(--text);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dde8f0;
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(128, 222, 234, 0.2);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 87, 155, 0.35);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* ============ WHATSAPP FAB ============ */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 800;
  transition: all 0.25s;
}

.wa-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .packages-full-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .galeri-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle-label { display: flex; }

  nav ul {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-top: 1px solid rgba(128, 222, 234, 0.1);
  }

  #nav-toggle:checked ~ nav ul { display: flex; }

  nav ul li a.nav-cta { margin-left: 0; }

  header { position: relative; top: 0; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 60px 20px 80px; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .packages-full-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .galeri-grid { grid-template-columns: repeat(2, 1fr); }
  .kontak-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .kontak-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; }
  .galeri-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
