* {margin:0; padding:0; box-sizing:border-box; font-family:'Poppins', sans-serif;}
html {scroll-behavior:smooth;}
body {color:#333; background:#f7f9f8; padding-top:100px;}

header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:18px 40px;
  background:#fff;
  box-shadow:0 2px 15px rgba(0,0,0,0.08);
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:1000;
  flex-wrap:wrap;
}

header h1 {
  font-size:20px;
  color:#2a9d8f;
}

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

.header-brand img {
  width:44px;
  height:auto;
  display:block;
  border-radius:12px;
  object-fit:contain;
}

nav {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  justify-content:flex-end;
}

.menu-toggle {
  display:none;
  border:none;
  background:#ffffff;
  cursor:pointer;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  padding:0;
  border-radius:12px;
  transition:background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow:0 7px 18px rgba(0,0,0,0.08);
  border:1px solid rgba(42,157,143,0.12);
}

.menu-toggle:hover {
  background:rgba(242,255,250,1);
}

.menu-toggle {
  display:none;
  border:none;
  background:#ffffff;
  cursor:pointer;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  padding:0;
  border-radius:12px;
  transition:background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow:0 7px 18px rgba(0,0,0,0.08);
  border:1px solid rgba(42,157,143,0.12);
}

.menu-toggle:hover {
  background:rgba(242,255,250,1);
}

.menu-toggle .ct-icon {
  width:24px;
  height:18px;
  display:block;
}

.menu-toggle .ct-icon rect {
  fill:#2a9d8f;
  transition:transform 0.25s ease, fill 0.25s ease;
}

.menu-toggle.open {
  background:rgba(42,157,143,0.14);
}

.menu-toggle.open .ct-icon rect:nth-child(1) {
  transform: translateY(2px);
}

.menu-toggle.open .ct-icon rect:nth-child(2) {
  transform: translateX(1px);
}

.menu-toggle.open .ct-icon rect:nth-child(3) {
  transform: translateY(-2px);
}

nav a {
  margin:6px 10px;
  text-decoration:none;
  color:#555;
  font-weight:500;
  font-size:0.95rem;
}

nav a.active {color:#2a9d8f;}

.btn {
  background:#2a9d8f;
  color:#fff;
  padding:10px 18px;
  border-radius:10px;
  text-transform:capitalize;
}

.btn:hover {
  opacity:0.95;
}

.hero {
  height:100vh;
  background:url('Gambar/wisata/wediireng.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  padding:0 60px;
  margin-top:80px;
  position:relative;
}

.hero::after {
  content:'';
  position:absolute;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.4);
}

.hero-content,
.destination-hero .hero-overlay {
  position:relative;
  color:#fff;
  max-width:700px;
}

.destination-hero {
  min-height:80vh;
  background:url('Gambar/wisata/wediireng.jpg') top/cover no-repeat;
  display:flex;
  align-items:center;
  padding:100px 40px 80px;
  position:relative;
}

.destination-hero::after {
  content:'';
  position:absolute;
  top:0; left:0;
  width:100%; height:100%;
  background:linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.65));
}

.destination-hero .hero-overlay {
  z-index:1;
  max-width:620px;
}

.destination-hero h1 {
  font-size:42px;
  margin-bottom:18px;
}

.destination-hero p {
  max-width:100%;
  font-size:17px;
  line-height:1.85;
  margin-bottom:24px;
}

.destination-hero .eyebrow {
  color:#a8e7da;
  text-transform:uppercase;
  letter-spacing:0.18em;
  font-size:0.85rem;
  margin-bottom:16px;
}

.destination-hero h1 {
  font-size:48px;
  line-height:1.05;
  margin-bottom:20px;
}

.destination-hero p {
  max-width:520px;
  margin-bottom:28px;
  color:rgba(255,255,255,0.92);
}

.btn.btn-outline {
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.35);
  color:#fff;
  transition: all 0.25s ease;
}

.btn.btn-outline:hover {
  background:rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.gallery-grid {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
  grid-auto-rows:240px;
}

.gallery-card {
  position:relative;
  border-radius:24px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
  padding:24px;
  box-shadow:0 20px 45px rgba(0,0,0,0.16);
}

.gallery-card::before {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.72));
}

.gallery-card span {
  position:relative;
  z-index:1;
  color:#fff;
  font-size:22px;
  font-weight:700;
}

.gallery-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card:nth-child(2) {
  grid-column: span 1;
}

.destination-gallery .section-title {
  margin-bottom:30px;
}

.destination-gallery .section-title h2 {
  font-size:38px;
}

.destination-gallery .section-title p {
  max-width:700px;
  margin:0 auto;
}

@media (max-width: 1024px) {
  header {
    padding:16px 30px;
  }
  .destination-hero,
  .hero {
    padding:80px 30px 60px;
  }
  .destination-hero h1 {
    font-size:40px;
  }
  .gallery-grid {
    grid-template-columns:repeat(2, minmax(0, 1fr));
    grid-auto-rows:220px;
  }
  .gallery-card-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  nav {
    justify-content:center;
  }
}

@media (max-width: 768px) {
  header {
    padding:14px 20px;
  }
  .destination-hero,
  .hero {
    padding:80px 20px 50px;
  }
  .destination-hero h1 {
    font-size:32px;
  }
  .destination-hero p {
    font-size:16px;
  }
  .gallery-grid {
    grid-template-columns:1fr;
    grid-auto-rows:200px;
  }
  .gallery-card-large {
    grid-column: span 1;
    grid-row: span 1;
  }
  .scroll-section {
    padding:60px 20px;
  }
  .page-section {
    padding:60px 20px;
  }
  .cards {
    animation:none;
    flex-wrap:nowrap;
    justify-content:flex-start;
  }
  .card {
    min-width:260px;
  }
  nav a {
    margin:6px 8px;
    font-size:0.9rem;
  }
}

@media (max-width: 520px) {
  header {
    justify-content:center;
    text-align:center;
  }
  nav {
    width:100%;
    justify-content:center;
  }
  nav a {
    margin:6px 6px;
    font-size:0.88rem;
  }
  .destination-hero h1 {
    font-size:28px;
  }
  .section-title h2 {
    font-size:28px;
  }
  .card {
    min-width:220px;
  }
}

.hero h2 {
  font-size:48px;
  font-weight:700;
  margin-bottom:20px;
}

.hero p {
  font-size:16px;
  line-height:1.6;
}

section {
  padding:80px 40px;
  overflow:hidden;
}

.scroll-section {
  padding:80px 40px;
  overflow:hidden;
  max-width:1200px;
  margin:0 auto;
}

.page-section {
  padding:80px 40px;
  max-width:1200px;
  margin:0 auto;
}

.region-grid {
  display:grid;
  grid-template-columns:repeat(4, minmax(220px, 1fr));
  gap:24px;
  margin-top:40px;
}

.region-card {
  background:#fff;
  border-radius:24px;
  padding:28px 24px;
  box-shadow:0 18px 35px rgba(0,0,0,0.08);
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}

.region-card:hover {
  transform:translateY(-6px);
  box-shadow:0 24px 45px rgba(0,0,0,0.12);
}

.region-card h3 {
  margin-bottom:18px;
  color:#2a9d8f;
}

.region-card ul {
  list-style: none;
  padding-left: 0;
  color: #555;
  line-height: 1.9;
}

.region-card li {
  margin-bottom: 10px;
}

.section-title {
  text-align:center;
  margin-bottom:40px;
}

.section-title h2 {
  color:#2a9d8f;
  font-size:34px;
  margin-bottom:12px;
}

.section-title img {
  display:block;
  width:72px;
  height:auto;
  margin:0 auto 18px;
}

.section-title p {
  color:#555;
  line-height:1.8;
}

.social-section,
.map-section {
  background:#ffffff;
  border-radius:24px;
  padding:28px 24px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  margin-top:24px;
}

.social-links {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:16px;
}

.social-links a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(42,157,143,0.12);
  color:#2a9d8f;
  text-decoration:none;
  padding:12px 18px;
  border-radius:999px;
  font-weight:600;
  transition:background 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  background:rgba(42,157,143,0.22);
  transform:translateY(-2px);
}

.icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 10px 0;
}

.info-grid,
.package-grid,
.team-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:24px;
}

.info-card,
.package-card,
.team-card,
.about-card {
  background:#fff;
  border-radius:20px;
  padding:24px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  display:flex;
  flex-direction:column;
  gap:18px;
}

.about-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:24px;
  margin-top:32px;
}

.about-highlight,
.map-section {
  background:#ffffff;
  border-radius:24px;
  padding:28px 24px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  margin-top:24px;
}

.about-highlight h3,
.map-section h3 {
  margin-bottom:16px;
  color:#2a9d8f;
}

.about-highlight p {
  line-height:1.8;
  color:#444;
}

.map-embed {
  min-height:280px;
  background:rgba(42,157,143,0.06);
  border:1px solid rgba(42,157,143,0.18);
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#555;
  text-align:center;
  padding:18px;
}

.documentation-card {
  padding:0;
  border:1px solid rgba(42,157,143,0.14);
  background:linear-gradient(180deg, rgba(241,250,247,0.95), #ffffff);
  position:relative;
  overflow:hidden;
}

.documentation-card .card-media {
  min-height:180px;
  background:linear-gradient(135deg, rgba(42,157,143,0.12), rgba(42,157,143,0.04));
  background-size:cover;
  background-position:center;
  overflow:hidden;
}

.documentation-card .card-media img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.documentation-card .card-content {
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.documentation-card:hover {
  transform: translateY(-6px);
  box-shadow:0 16px 35px rgba(0,0,0,0.12);
}

.documentation-card .card-icon {
  width:60px;
  height:60px;
  font-size:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:rgba(42,157,143,0.12);
  color:#2a9d8f;
}

.documentation-card:hover {
  transform: translateY(-6px);
  box-shadow:0 16px 35px rgba(0,0,0,0.12);
}

.documentation-card .card-icon {
  width:60px;
  height:60px;
  font-size:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:rgba(42,157,143,0.12);
  color:#2a9d8f;
  margin-bottom:18px;
}

.documentation-card h3,
.package-card h3,
.team-card h3 {
  margin-bottom:12px;
  color:#2a9d8f;
}

.card-link {
  display:inline-block;
  margin-top:18px;
  color:#2a9d8f;
  font-weight:700;
  text-decoration:none;
}

.card-link:hover {
  text-decoration:underline;
}

.package-card ul {
  list-style: none;
  padding-left: 0;
  margin: 16px 0;
}

.package-card li {
  margin-bottom: 10px;
  color: #555;
}

.price {
  display: inline-block;
  margin-top: 12px;
  color: #2a9d8f;
  font-weight: 700;
}

.price-list-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:24px;
  margin-top:32px;
}

.price-card {
  background:#fff;
  border-radius:24px;
  padding:28px 24px;
  box-shadow:0 18px 35px rgba(0,0,0,0.08);
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform:translateY(-5px);
  box-shadow:0 22px 40px rgba(0,0,0,0.12);
}

.price-card h3 {
  margin-bottom:18px;
  color:#2a9d8f;
}

.price-card h4 {
  margin:20px 0 10px;
  font-size:16px;
  color:#264653;
}

.price-card table {
  width:100%;
  border-collapse:collapse;
  margin-top:8px;
}

.price-card th,
.price-card td {
  padding:12px 14px;
  border:1px solid rgba(42,157,143,0.16);
  text-align:left;
  vertical-align:top;
}

.price-card thead th {
  background:#2a9d8f;
  color:#fff;
  text-transform:uppercase;
  font-size:14px;
  letter-spacing:.03em;
}

.price-card tbody tr:nth-child(odd) {
  background:rgba(42,157,143,0.05);
}

.price-subtable table {
  margin-top:8px;
}

.price-note {
  margin-top:16px;
  color:#555;
  font-size:14px;
  font-style:italic;
}

.rental-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:24px;
  margin-top:28px;
}

.rental-card {
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 16px 36px rgba(0,0,0,0.08);
  transition:transform 0.25s ease, box-shadow 0.25s ease;
  display:flex;
  flex-direction:column;
}

.rental-card:hover {
  transform:translateY(-5px);
  box-shadow:0 22px 44px rgba(0,0,0,0.12);
}

.rental-card img {
  width:100%;
  height:220px;
  object-fit:cover;
}

.rental-card h3 {
  margin:18px 24px 10px;
  color:#2a9d8f;
}

.rental-card p {
  margin:0 24px;
  color:#555;
  line-height:1.8;
}

.rental-card .detail {
  display:block;
  margin:16px 24px 24px;
  color:#555;
  font-weight:600;
}

.review-form {
  display:grid;
  gap:16px;
  max-width:780px;
  margin:0 auto 40px;
}

.rating-input {
  display:flex;
  align-items:center;
  gap:14px;
  color:#555;
}

.rating-stars {
  display:flex;
  gap:6px;
}

.rating-stars input {
  display:none;
}

.rating-stars label {
  cursor:pointer;
  font-size:28px;
  color:#ddd;
  transition: color 0.2s ease;
}

.rating-stars input:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
  color:#f1c40f;
}

.review-form textarea {
  width:100%;
  min-height:110px;
  padding:16px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,0.12);
  resize:vertical;
  font-family:'Poppins', sans-serif;
}

.review-list {
  display:grid;
  gap:18px;
}

.review-card {
  background:#fff;
  border-radius:20px;
  padding:22px;
  box-shadow:0 10px 26px rgba(0,0,0,0.08);
}

.review-rating {
  margin-bottom:12px;
  color:#f1c40f;
  font-size:18px;
}

.review-card p {
  color:#444;
  line-height:1.7;
}

.review-time {
  display:inline-block;
  margin-top:12px;
  color:#888;
  font-size:13px;
}

.empty-note {
  color:#555;
  text-align:center;
  padding:20px 12px;
  background:rgba(42,157,143,0.08);
  border-radius:16px;
}

.cards {
  display:flex;
  gap:20px;
  align-items:stretch;
  overflow-x:auto;
  padding-bottom:10px;
  scroll-snap-type:x mandatory;
}

.card {
  flex:0 0 320px;
  min-width:320px;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 4px 15px rgba(0,0,0,0.1);
  background:#fff;
  scroll-snap-align:center;
}

.card img {
  width:100%;
  height:200px;
  object-fit:cover;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .scroll-section {
    padding:60px 30px;
  }

  .card {
    flex:0 0 280px;
    min-width:280px;
  }
}

@media (max-width: 768px) {
  header {
    flex-wrap:wrap;
    padding:16px 30px;
    position:relative;
  }

  .menu-toggle {
    display:flex;
  }

  nav {
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:0 20px;
    border-bottom-left-radius:20px;
    border-bottom-right-radius:20px;
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:max-height 0.3s ease, opacity 0.3s ease;
    box-shadow:0 16px 30px rgba(0,0,0,0.08);
    z-index:900;
  }

  nav.open {
    max-height:520px;
    opacity:1;
    padding:18px 20px 22px;
  }

  nav a {
    margin:10px 0;
    width:100%;
    text-align:left;
    font-size:1rem;
  }

  .hero {
    padding:0 30px;
  }

  .scroll-section {
    padding:50px 20px;
    max-width:100%;
  }

  .cards {
    gap:16px;
  }

  .card {
    flex:0 0 240px;
    min-width:240px;
  }
}

@media (max-width: 520px) {
  .card {
    flex:0 0 220px;
    min-width:220px;
  }

  header {
    padding:14px 18px;
  }

  nav a {
    font-size:0.95rem;
  }
}

.card-body {
  padding:15px;
}

.card-body h3 {
  margin-bottom:10px;
}

footer {
  text-align:center;
  padding:20px;
  background:#2a9d8f;
  color:#fff;
}
