

.tour-info-wrap{
  width: 100%; 
}

.tour-info-card{
  width: min(1100px, 100%);
  margin: 0 auto;  
  overflow: hidden;
}

.tour-info-head{
  margin-bottom: 18px;
}

.tour-info-badge{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37, 99, 235, .08);
  border: 1px solid rgba(37, 99, 235, .15);
  margin-bottom: 12px;
}

.tour-info-head h2{
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
  color: #111827;
  letter-spacing: -.03em;
}

.tour-info-head p{
  margin: 10px 0 0;
  color: #4b5563;
  max-width: 720px;
  font-size: 15px;
}

.tour-info-card input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tour-tab-bar{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.tour-tab-btn{
  cursor: pointer;
  user-select: none;
  padding: 13px 18px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  color: #374151;
  font-weight: 700;
  font-size: 14px;
  transition: all .22s ease;
}

.tour-tab-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, .22);
  box-shadow: 0 8px 18px rgba(0,0,0,.04);
}

#tab-basic:checked ~ .tour-tab-bar label[for="tab-basic"],
#tab-highlight:checked ~ .tour-tab-bar label[for="tab-highlight"],
#tab-details:checked ~ .tour-tab-bar label[for="tab-details"]{
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
  box-shadow: 0 10px 24px rgba(37, 99, 235, .18);
}

.tour-panel{
  display: none;
  animation: fadeUp .25s ease;
}

@keyframes fadeUp{
  from{opacity: 0; transform: translateY(8px);}
  to{opacity: 1; transform: translateY(0);}
}

#tab-basic:checked ~ .tour-panels .panel-basic,
#tab-highlight:checked ~ .tour-panels .panel-highlight,
#tab-details:checked ~ .tour-panels .panel-details{
  display: block;
}

.panel-grid,
.details-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.info-item,
.detail-card,
.content-box{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,.04);
}

.info-item{
  padding: 18px;
  transition: transform .2s ease, border-color .2s ease;
}

.info-item:hover,
.detail-card:hover{
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, .18);
}

.info-label{
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #2563eb;
  font-weight: 700;
}

.info-value{
  display: block;
  font-size: 15px;
  line-height: 1.55;
  color: #111827;
  font-weight: 600;
}

.content-box{
  padding: 5px;
}

.futuristic-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  align-items: flex-start;
  gap:6px;
}

.futuristic-list li{
    position:relative;
    padding:8px 10px 8px 44px;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:18px;
    font-size:14px;
    line-height:1.4;
    color:#374151;
    transition:all .3s ease;
    overflow:hidden;
}

.futuristic-list li::before{
    content:"✓";
    position:absolute;
    left:8px;
    top:20%; 
    width:25px;
    height:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:linear-gradient(135deg,#2563eb,#06b6d4);
    color:#fff;
    font-size:15px;
    font-weight:700;
    box-shadow:0 8px 20px rgba(37,99,235,.25);
}

.futuristic-list li::after{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:linear-gradient(to bottom,#2563eb,#06b6d4);
    opacity:0;
    transition:.3s;
}

.futuristic-list li:hover{
    transform:translateY(-4px);
    border-color:rgba(37,99,235,.18);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.futuristic-list li:hover::after{
    opacity:1;
}

.detail-card{
  padding: 18px;
}

.detail-title{
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 800;
  color: #2563eb;
}

.detail-card p{
  margin: 0;
  line-height: 1.7;
  color: #374151;
  font-size: 14px;
}

@media (max-width: 768px){
  .panel-grid,
  .details-grid{
    grid-template-columns: 1fr;
  }

  .tour-tab-btn{
    flex: 1 1 calc(33.333% - 10px);
    text-align: center;
    padding: 12px 10px;
  }
}

@media (max-width: 480px){

  .tour-tab-btn{
    flex: 1 1 100%;
  }

  .info-item,
  .detail-card,
  .content-box{
    border-radius: 14px;
  }
}


.review-section {
  padding:   0px;
  margin-top: 30px; 
  color: #1f2937;
}

.review-container {
  max-width: 1200px;
  margin: 0 auto;
}

.review-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.review-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #0f766e;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.review-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 10px;
  color: #0f172a;
}

.review-header p {
  margin: 0;
  max-width: 620px;
  color: #64748b;
  font-size: 16px;
}

.review-actions {
  display: flex;
  flex-direction: row;
  gap: 8px; 
}

.btn-secondary {
  background: #fff;
  color: #0f172a;
  border-color: #e2e8f0;
}

.btn-secondary:hover {
  border-color: #14b8a6;
  color: #0f766e;
  transform: translateY(-2px);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.review-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0px;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #14b8a6, #2563eb);
}

.review-top h3 {
  margin: 0;
  font-size: 18px;
  color: #0f172a;
}

.review-top span {
  font-size: 13px;
  color: #64748b;
}

.stars {
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: 7px;
  font-size: 16px;
}

.review-card p {
  margin: 0;
  color: #475569;
  line-height: 1.35;
  font-size: 15px;
}

.review-form-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,250,252,0.96));
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.form-head h3 {
  margin: 0 0 8px;
  font-size: 26px;
  color: #0f172a;
}

.form-head p {
  margin: 0;
  color: #64748b;
}

.review-form {
  margin-top: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.input-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-box.full {
  grid-column: 1 / -1;
}

.input-box label {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.input-box input,
.input-box textarea {
  width: 100%;
  border: 1px solid #dbe3ee;
  background: #fff;
  color: #0f172a;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
}

.input-box textarea {
  resize: vertical;
  min-height: 140px;
}

.input-box input:focus,
.input-box textarea:focus {
  border-color: #14b8a6;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.checkbox-row {
  margin: 18px 0 24px;
}

.check-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #475569;
  cursor: pointer;
  user-select: none;
}

.check-label input {
  display: none;
}

.checkmark {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 2px solid #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: 0.3s ease;
  flex: 0 0 auto;
}

.check-label input:checked + .checkmark {
  background: linear-gradient(135deg, #14b8a6, #2563eb);
  border-color: transparent;
}

.check-label input:checked + .checkmark::after {
  content: "✓";
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.submit-btn {
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 15px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f766e, #2563eb);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.20);
  transition: 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.26);
}

@media (max-width: 992px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {

  .review-header {
    align-items: flex-start;
  }

  .review-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .review-form-wrap {
    padding: 22px;
    border-radius: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

.quick-nav-section{
    max-width:1080px;
    margin:auto; 
    margin-bottom: 10px;
}

.quick-nav-grid{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.quick-nav-btn{
    flex:1 1 calc(25% - 8px);
    min-width:0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:14px 10px;
    border-radius:14px;
    text-decoration:none;
    color:#111;
    background:#fff;
    border:1px solid #e5e7eb;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    transition:.25s;
}

.quick-nav-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 24px rgba(0,0,0,.12);
    background: linear-gradient(135deg, rgba(234, 0, 255, 0.232), rgba(0, 255, 145, 0.228));
}

.quick-nav-icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center; 
  flex:0 0 auto;
}

.quick-nav-icon svg{
  width:24px;
  height:24px;
  display:block;
}

.quick-nav-text{
    font-size:14px;
    font-weight:600;
}

/* Tablet */
@media (max-width:768px){
    .quick-nav-btn{
        flex:1 1 calc(50% - 5px);
    }
}

/* Small Mobile */
@media (max-width:480px){
    .quick-nav-grid{
        gap:8px;
    }

    .quick-nav-btn{
        flex:1 1 calc(50% - 4px);
        padding:12px 8px;
    }

    .quick-nav-text{
        font-size:13px;
    }

    .quick-nav-icon{
        font-size:16px;
    }
}

.map_sec {
  padding: 24px 16px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 15px;
}

.map_sec h3 {
  margin: 0 0 14px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.2px;
}

/* Modern map card */
.map_sec iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  overflow: hidden;
  background: #f3f4f6;
}

/* Hover interaction */
.map_sec iframe:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.20);
  filter: saturate(1.08) contrast(1.02);
}

/* Better on small screens */
@media (max-width: 768px) {
  .map_sec {
    padding: 18px 12px;
  }

  .map_sec iframe {
    height: 320px;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .map_sec h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .map_sec iframe {
    height: 250px;
    border-radius: 14px;
  }
}