@charset "utf-8";

html,
body{
  margin:0;
  padding:0;
  max-width:100%;
  overflow-x:hidden;
}

.adventure-section{
  font-family:Arial,sans-serif;
  color:#163047;
  background:#ffffff;
  box-sizing:border-box;
}

.adventure-wrap,
.adventure-wrap *{
  box-sizing:border-box;
}

.dot-adventure-page{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  background:#ffffff;
}

.dot-adventure-wrap,
.dot-adventure-wrap *{
  box-sizing:border-box;
}

.dot-adventure-wrap{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:40px 20px 60px;
  overflow-x:hidden;
}

.dot-adventure-intro{
  text-align:center;
  margin-bottom:28px;
}

.dot-adventure-intro h2{
  margin:0 0 12px;
  font-size:34px;
  line-height:1.2;
  color:#0e3a5a;
}

.dot-adventure-intro p{
  max-width:920px;
  margin:0 auto;
  font-size:17px;
  line-height:1.75;
  color:#4f6477;
}

.dot-adventure-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  margin-bottom:36px;
  width:100%;
}

.dot-adventure-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  width:100%;
  background:#ffffff;
  border:1px solid #d6e4ee;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
}

.dot-adventure-card__image{
  width:100%;
  aspect-ratio:16 / 9;
  overflow:hidden;
  background:linear-gradient(135deg,#dcecf6 0%,#eef6fb 100%);
}

.dot-adventure-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.dot-adventure-card__body{
  display:flex;
  flex-direction:column;
  height:100%;
  min-width:0;
  padding:20px 20px 22px;
}

.dot-adventure-card__badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:14px;
}

.dot-adventure-badge{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:#f3f8fb;
  border:1px solid #d7e4ec;
  font-size:12px;
  font-weight:700;
  line-height:1;
  color:#35556b;
}

.dot-adventure-badge--highlight{
  background:#fff3cd;
  border-color:#f1d587;
  color:#7a5200;
}

.dot-adventure-badge--popular{
  background:#e9f7ef;
  border-color:#b7e4c7;
  color:#1b5e20;
}

.dot-adventure-card h3{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.3;
  color:#0e3a5a;
}

.dot-adventure-card p{
  margin:0 0 16px;
  font-size:15px;
  line-height:1.75;
  color:#4e6578;
}

.dot-adventure-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:16px;
}

.dot-adventure-meta span{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:#f7fafc;
  border:1px solid #dbe7ef;
  font-size:13px;
  font-weight:700;
  color:#35556b;
}

.dot-adventure-price{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-top:auto;
  margin-bottom:18px;
  padding:14px 16px;
  border-radius:14px;
  background:#dff5e3;
  color:#1b5e20;
}

.dot-adventure-price span{
  font-size:14px;
  line-height:1.5;
  color:#2f6b36;
}

.dot-adventure-price strong{
  font-size:24px;
  line-height:1;
  white-space:nowrap;
  color:#1b5e20;
}

.dot-adventure-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  width:100%;
}

.dot-adventure-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border-radius:14px;
  background:#dff5e3;
  color:#1b5e20;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  line-height:1.2;
  border:1px solid #c9e7cf;
  transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  box-shadow:0 6px 16px rgba(0,0,0,.10);
}

.dot-adventure-button:hover{
  transform:translateY(-2px);
  background:#d2efd8;
  box-shadow:0 10px 20px rgba(0,0,0,.14);
}

.dot-adventure-button--ghost{
  background:#ffffff;
  color:#2d8fcb;
  border:1px solid #9fc7df;
  box-shadow:none;
}

.dot-adventure-button--ghost:hover{
  background:#f4fbff;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.dot-adventure-faq{
  margin-bottom:36px;
  padding:28px 24px;
  background:linear-gradient(135deg,#f8fbfd 0%,#eef6fb 100%);
  border:1px solid #d9e7f0;
  border-radius:24px;
  box-shadow:0 10px 28px rgba(0,0,0,.05);
}

.dot-adventure-faq__head{
  text-align:center;
  margin-bottom:22px;
}

.dot-adventure-faq__head h2{
  margin:0 0 10px;
  font-size:30px;
  line-height:1.25;
  color:#0e3a5a;
}

.dot-adventure-faq__head p{
  max-width:820px;
  margin:0 auto;
  font-size:16px;
  line-height:1.75;
  color:#4f6477;
}

.dot-adventure-faq__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  width:100%;
}

.dot-adventure-faq__card{
  min-width:0;
  background:#ffffff;
  border:1px solid #d6e4ee;
  border-radius:18px;
  padding:20px 18px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.dot-adventure-faq__card h3{
  margin:0 0 10px;
  font-size:21px;
  line-height:1.35;
  color:#0e3a5a;
}

.dot-adventure-faq__card p{
  margin:0;
  font-size:15px;
  line-height:1.75;
  color:#4e6578;
}

.dot-adventure-cta{
  text-align:center;
  background:linear-gradient(135deg,#eef6fb 0%,#f8fbfd 100%);
  border:1px solid #d9e7f0;
  border-radius:24px;
  padding:28px 24px;
  box-shadow:0 10px 28px rgba(0,0,0,.05);
}

.dot-adventure-cta h2{
  margin:0 0 12px;
  font-size:30px;
  line-height:1.25;
  color:#0e3a5a;
}

.dot-adventure-cta p{
  max-width:860px;
  margin:0 auto 20px;
  font-size:16px;
  line-height:1.75;
  color:#4f6477;
}

@media (max-width:1120px){
  .dot-adventure-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px){
  .dot-adventure-wrap{
    padding:24px 14px 40px;
  }

  .dot-adventure-intro{
    margin-bottom:20px;
  }

  .dot-adventure-intro h2{
    font-size:28px;
  }

  .dot-adventure-intro p{
    font-size:16px;
  }

  .dot-adventure-grid{
    grid-template-columns:1fr;
    gap:14px;
    margin-bottom:24px;
  }

  .dot-adventure-card{
    border-radius:16px;
  }

  .dot-adventure-card__body{
    padding:16px 14px 18px;
  }

  .dot-adventure-card h3{
    font-size:21px;
  }

  .dot-adventure-card p{
    font-size:14px;
    line-height:1.7;
  }

  .dot-adventure-price{
    padding:12px 14px;
  }

  .dot-adventure-price strong{
    font-size:21px;
  }

  .dot-adventure-faq{
    margin-bottom:24px;
    padding:22px 14px;
    border-radius:18px;
  }

  .dot-adventure-faq__head{
    margin-bottom:18px;
  }

  .dot-adventure-faq__head h2{
    font-size:25px;
  }

  .dot-adventure-faq__head p{
    font-size:15px;
  }

  .dot-adventure-faq__grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .dot-adventure-faq__card{
    border-radius:16px;
    padding:16px 14px;
  }

  .dot-adventure-faq__card h3{
    font-size:19px;
  }

  .dot-adventure-faq__card p{
    font-size:14px;
    line-height:1.7;
  }

  .dot-adventure-cta{
    padding:22px 14px;
    border-radius:18px;
  }

  .dot-adventure-cta h2{
    font-size:25px;
  }

  .dot-adventure-cta p{
    font-size:15px;
  }

  .dot-adventure-actions,
  .dot-adventure-cta{
    width:100%;
  }

  .dot-adventure-button{
    width:100%;
  }
}