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

body {
  background: #fbf7ee;
  color: #102340;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7%;
  background: rgba(251, 247, 238, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 35, 64, .08);
}

.brand strong {
  display: block;
  font-size: 1.25rem;
  letter-spacing: .5px;
}

.brand span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #b78324;
  font-weight: 800;
}

nav a {
  color: #102340;
  text-decoration: none;
  margin-left: 22px;
  font-weight: 800;
  font-size: .92rem;
}

.nav-cta {
  background: #102340;
  color: white;
  padding: 11px 18px;
  border-radius: 100px;
}

.hero {
  min-height: 100vh;
  padding: 135px 7% 80px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(to top, rgba(16,35,64,.82), rgba(16,35,64,.25)),
    url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?auto=format&fit=crop&w=1800&q=80') center/cover;
}

.hero-card {
  max-width: 820px;
  background: rgba(251, 247, 238, .94);
  padding: 48px;
  border-radius: 36px;
  box-shadow: 0 28px 70px rgba(0,0,0,.25);
}

.label {
  color: #b78324;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .75rem;
  font-weight: 900;
  margin-bottom: 12px;
}

h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .92;
  margin-bottom: 24px;
}

h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.hero-card p:not(.label) {
  max-width: 660px;
  font-size: 1.08rem;
  color: #36465f;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-block;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 900;
}

.primary {
  background: #b78324;
  color: white;
}

.outline {
  border: 1px solid #102340;
  color: #102340;
}

.section {
  padding: 92px 7%;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  min-height: 360px;
  padding: 26px;
  border-radius: 32px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,18,36,.92), rgba(7,18,36,.08));
}

.feature-card span,
.feature-card h3,
.feature-card p {
  position: relative;
}

.feature-card span {
  color: #ffd98a;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.japan { background-image: url('https://images.unsplash.com/photo-1493976040374-85c8e12f0c0e?auto=format&fit=crop&w=900&q=80'); }
.europe { background-image: url('https://images.unsplash.com/photo-1531572753322-ad063cecc140?auto=format&fit=crop&w=900&q=80'); }
.mexico { background-image: url('https://images.unsplash.com/photo-1518105779142-d975f22f1b0a?auto=format&fit=crop&w=900&q=80'); }
.central { background-image: url('https://images.unsplash.com/photo-1602088113235-229c19758e9f?auto=format&fit=crop&w=900&q=80'); }

.pilgrimage-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 46px;
  align-items: center;
  background: #102340;
  color: white;
}

.pilgrimage-text p:not(.label) {
  color: rgba(255,255,255,.82);
  max-width: 650px;
  margin-bottom: 26px;
}

.pilgrimage-box {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 32px;
  padding: 38px;
}

.pilgrimage-box ul {
  padding-left: 20px;
  margin-top: 18px;
}

.pilgrimage-box li {
  margin-bottom: 12px;
}

.categories {
  background: #f4ead6;
}

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

.category-grid div {
  background: #fbf7ee;
  padding: 30px;
  border-radius: 28px;
  box-shadow: 0 14px 35px rgba(16, 35, 64, .06);
}

.services-section {
  padding: 92px 7%;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-list p {
  background: white;
  padding: 24px;
  border-radius: 22px;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(16, 35, 64, .08);
}

.about {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 42px;
  align-items: center;
  background: #fff;
}

.about-card {
  background: #f4ead6;
  border-radius: 32px;
  padding: 38px;
}

.testimonial {
  padding: 90px 7%;
  background: #102340;
  color: white;
  text-align: center;
}

.testimonial p {
  max-width: 900px;
  margin: auto;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.1;
}

.contact {
  text-align: center;
}

.contact > p:not(.label) {
  max-width: 680px;
  margin: auto;
}

.contact-card {
  max-width: 540px;
  margin: 30px auto;
  padding: 30px;
  border-radius: 28px;
  background: white;
  text-align: left;
  box-shadow: 0 18px 45px rgba(16, 35, 64, .08);
}

.floating-viber {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  background: #6f3cc3;
  color: white;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 100px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(0,0,0,.25);
}

footer {
  background: #071529;
  color: white;
  padding: 28px 7%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1050px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  nav {
    display: none;
  }

  .hero-card {
    padding: 32px;
  }

  .pilgrimage-section,
  .services-section,
  .about {
    grid-template-columns: 1fr;
  }

  .featured-grid,
  .category-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}


/* Clickable tour cards + inquiry form */
.feature-card {
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0,0,0,.22);
}

.feature-card small {
  position: relative;
  margin-top: 14px;
  display: inline-block;
  background: #b78324;
  color: white;
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 900;
  width: fit-content;
}

.quick-inquiry {
  background: #ffffff;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(16, 35, 64, .18);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background: #fbf7ee;
  color: #102340;
}

.inquiry-form textarea {
  grid-column: 1 / -1;
  min-height: 130px;
  resize: vertical;
}

.inquiry-form button {
  width: fit-content;
  border: none;
  padding: 15px 24px;
  border-radius: 999px;
  background: #102340;
  color: white;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
}

@media (max-width: 850px) {
  .inquiry-form {
    grid-template-columns: 1fr;
  }
}
