.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
body {
    font-family: "Jost", sans-serif !important;
}
header {
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(10, 57, 79, 0.1) 0px 2px 4px -2px, rgba(10, 57, 79, 0.1) 0px 4px 6px -1px;
}
header span.elementor-icon-list-icon {
    height: 30px;
    width: 30px;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: #3554d147;
    border-radius: 50px;
}
.destination-card {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
}

.destination-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.destination-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 1px;
}

.destination-card:hover {
    transform: scale(1.02);
    transition: 0.3s ease;
}
.destination-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    color: #fff;
    padding: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.destination-card:hover .destination-overlay {
    opacity: 1;
    transform: translateY(0);
}

.destination-overlay h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.destination-overlay p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.view-more {
    display: inline-block;
    width: fit-content;
    padding: 8px 18px;
    border: 1px solid #fff;
    border-radius: 25px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.destination-card:hover {
    transform: scale(1.03);
}
.destination-card {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
}

/* FRONT TITLE (always visible) */
.destination-title-front {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* HOVER OVERLAY */
.destination-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 25px;
    opacity: 0;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 3;
}

/* Show overlay on hover */
.destination-card:hover .destination-overlay {
    opacity: 1;
}

/* Hide front title smoothly on hover (optional) */
.destination-card:hover .destination-title-front {
    opacity: 0;
}

/* Hover content styling */
.destination-overlay h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.destination-overlay p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.view-more {
    display: inline-block;
    width: fit-content;
    padding: 8px 18px;
    border: 1px solid #fff;
    border-radius: 25px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media(max-width: 992px){
    .destinations-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width: 576px){
    .destinations-grid { grid-template-columns: 1fr; }
}

.destination-hero {
    height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.45);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 80px;
    color: #fff;
	align-items:center
}

.hero-overlay h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-btn {
    background: #3554D1;
    color: #fff;
    padding: 12px 26px;
    width: fit-content;
    border-radius: 4px;
    text-decoration: none;
}

.breadcrumb-wrap {
    padding: 15px 80px;
    font-size: 14px;
}

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

.package-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.package-img {
    height: 220px;
    background-size: cover;
    position: relative;
}

.offer {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #3554D1;
    color: #fff;
    padding: 6px 10px;
    font-size: 13px;
}

.package-content {
    padding: 15px;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 30px 80px;
}

.package-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.package-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.offer {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #3554D1;
    color: #fff;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 4px;
}

.package-content {
    padding: 18px;
}

.package-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.view-btn {
    display: inline-block;
    background: #3554D1;
    color: #fff;
    padding: 8px 18px;
    border-radius:4px;
    font-size: 13px;
    text-decoration: none;
}
/* GRID */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 30px 80px;
}

/* CARD */
.package-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: transform .3s ease, box-shadow .3s ease;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

/* IMAGE */
.package-img {
    height: 230px;
    background-size: cover;
    background-position: center;
}

/* CONTENT */
.package-content {
    padding: 18px 20px 22px;
}

.tour-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* TEXT */
.tour-duration,
.tour-route {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.tour-duration span,
.tour-route span {
    font-weight: 600;
    color: #ff3d00;
}

/* BUTTONS */
.tour-actions {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.btn-outline {
    flex: 1;
    text-align: center;
    padding: 9px 0;
    border: 1px solid #3554D1;
    color: #3554D1;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
}

.btn-solid {
    flex: 1;
    text-align: center;
    padding: 9px 0;
    background: #3554D1;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .packages-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.package-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.package-content {
    padding: 18px;
}

.tour-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.tour-duration span,
.tour-route span {
    color: #3554D1;
    font-weight: 600;
}

.tour-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-outline {
    flex: 1;
    border: 1px solid #3554D1;
    color: #3554D1;
    padding: 8px;
    text-align: center;
    border-radius:4px;
    text-decoration: none;
}

.btn-solid {
    flex: 1;
    background: #3554D1;
    color: #fff;
    padding: 8px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
}
.tour-page {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.tour-left {
  width: 60%;
}

.tour-right {
  width: 40%;
  position: sticky;
  top: 120px;
}

.tour-title {
  font-size: 36px;
  font-weight: 700;
}

.tour-meta p {
  margin: 6px 0;
}

.price {
  color: red;
  font-size: 28px;
  margin: 15px 0;
}

.tour-tabs {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #ddd;
  margin: 30px 0;
}

.tour-tabs span {
  padding-bottom: 10px;
  font-weight: 600;
  cursor: pointer;
}

.tour-tabs .active {
  color: #3554D1;
  border-bottom: 3px solid #3554D1;
}
.tour-tabs button:hover,.tour-tabs button:focus {
    background: transparent;
}
.quote-box {
  background: #999;
  padding: 20px;
  border-radius: 6px;
}

.quote-box h3 {
  background: #ff7a4d;
  color: #fff;
  padding: 10px;
  margin: -20px -20px 20px;
  text-align: center;
}

.package-list {
  margin-top: 30px;
  background: #ff7a4d;
}

.package-list h4 {
  padding: 12px;
  color: #fff;
}

.package-list ul {
  background: #fff;
  padding: 10px;
}

.package-list li {
  padding: 8px;
  border-bottom: 1px dashed #ccc;
}
/* HERO FIX */
.tour-hero {
    height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* Elementor content spacing */
.tour-content-wrapper {
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

/* Prevent banner repetition */
body.single-tours {
    background-repeat: no-repeat;
}
.tour-hero{
  height:380px;
  background-size:cover;
  background-position:center;
  margin-bottom:30px;
}
.tour-hero-overlay{
  height:100%;
  background:rgba(0,0,0,.35);
}
/* ===== Sticky Enquiry Form ===== */
.tour-enquiry-sticky {
    position: sticky;
    top: 100px; /* header ke niche */
}

@media (max-width: 992px) {
    .tour-enquiry-sticky {
        position: static;
        margin-top: 30px;
    }
}
/* ===== Tour Enquiry Form Style ===== */
.tour-form {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.tour-form input,
.tour-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.tour-form input:focus,
.tour-form textarea:focus {
    border-color: #ff6b35;
    outline: none;
}

.tour-form textarea {
    min-height: 120px;
}

.tour-form input[type="submit"] {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.tour-form input[type="submit"]:hover {
    background: #e85a25;
}

/* Swiper main container */
.swiper {
  width: 100%;
  height: 550px; /* required */
}

/* Each slide */
.swiper-slide {
  overflow: hidden;
}

/* Image inside slide */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.n2-ss-slider,
.n2-ss-slide {
  height: 700px !important;
}

.n2-ss-slide-background img {
  object-fit: cover !important;
}
.tour-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.tour-card{
  height:420px;
  background-size:cover;
  border-radius:16px;
  position:relative;
  overflow:hidden;
	background-repeat: no-repeat;
    background-position: center top;
}

.badge{
  position:absolute;
  top:15px;
  padding:6px 14px;
  border-radius:20px;
  font-size:12px;
  color:#fff;
}
.badge.left{ left:15px; background:#2563EB; }
.badge.right{ right:15px; background:#E5F0FF; color:#2563EB; }

.tour-content{
  position:absolute;
  bottom:0;
  width:100%;
  padding:20px;
  background:linear-gradient(transparent,rgba(0,0,0,0.85));
  color:#fff;
}

.tour-content h3{ font-size:18px; margin:0; }
.location{ font-size:13px; color:#E5E7EB; }

.meta{
  display:flex;
  justify-content:space-between;
  font-size:14px;
}

.rating{ color:#FACC15; font-size:13px; }

.buttons{
  margin-top:10px;
  display:flex;
  gap:10px;
}
.btn{
  padding:8px 14px;
  border-radius:20px;
  font-size:13px;
  color:#fff;
}
.btn.road{ background:#F97316; }
.btn.heli{ background:#2563EB; }

@media(max-width:768px){
  .tour-grid{ grid-template-columns:1fr; }
}
.transport-icons{
  position:absolute;
  top:20px;
  right:20px;
  display:flex;
  gap:10px;
  z-index:5;
}

.transport-icons .icon{
  width:44px;
  height:44px;
  border-radius:50%;
  background:rgba(0,0,0,0.65);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:#fff;
  text-decoration:none;
  transition:all 0.3s ease;
}

.transport-icons .icon:hover{
  background:#2563EB;
  transform:scale(1.1);
}

.transport-icons .icon.road:hover{
  background:#F97316;
}
.we-recommend {
  padding: 90px 0;
  background: #fff;
  font-family: "Inter", sans-serif;
}

.container {
  margin: auto;
  padding: 0 20px;
}

.recommend-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ================= MEDIA SIDE ================= */
.recommend-media {
  position: relative;
  height: 520px;
}

.media-left,
.media-right {
  max-width: 278px;
  overflow: hidden;
}

.media-left img,
.media-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
	 width: 100%!important;
    border-radius: 100px 30px 100px 30px!important;
}

.media-right {
  position: absolute;
  right: 0;
  bottom: 0;
}

.media-center {
  width: 390px;
  height: 390px;
  border-radius: 50%;
  border: 15px solid #fff;
  box-shadow: 0 30px 40px rgba(0,0,0,.15);
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.media-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plane {
  position: absolute;
  top: -80px;
  right: 00px;
  animation: fly 6s infinite alternate ease-in-out;
}

@keyframes fly {
  from { transform: translateX(0); }
  to { transform: translateX(-40px); }
}

/* ================= CONTENT SIDE ================= */
.recommend-content h2 {
  font-size: 40px;
  line-height: 1.3;
	font-family:"Jost";
	color:#110F0F
}
.recommend-content{
font-family:"Jost";
	position: relative;
}
.recommend-content h2 span {
  color: #3554D1;
}

.desc {
  margin: 16px 0 30px;
  color: #555;
	font-size: 18px;
}

.features {
  display: grid;
  gap: 20px;
}

.feature-box {
  display: flex;
  gap: 15px;
  padding: 20px;
  border: 1px solid #e6f1ff;
  border-radius: 14px;
	align-items:center
}

.feature-box .icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.icon img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(57%) saturate(6000%) hue-rotate(220deg) brightness(95%) contrast(95%);
}
.bottom-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.btn {
    background: #3554D1;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.customers {
  display: flex;
  align-items: center;
  gap: 20px;
}
.customers span strong {
    color: #3554D1;
}
.avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50% !important;
    margin-left: -10px;
    border: 2px solid #fff !important;
}

/* Vertical Experience */
.experience {
    position: absolute;
    right: 0;
    text-align: center;
    width: 90px;
}
.trv-year-info {
    display: inline-flex;
    width: 340px;
    transform: rotate(-90deg);
    position: absolute;
    top: 0;
    transform-origin: 0 0;
    padding-left: 100px;
	text-align: left;
}
.experience strong {
    font-size: 77px;
    color: #f9a400;
    margin-right: 15px;
    text-shadow: 0px 4px 0px #3554D1;
    line-height: 1;
}
.experience span {
    color: #3554D1;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .recommend-grid {
    grid-template-columns: 1fr;
  }

  .experience {
    display: none;
  }
}
h2.intl-title {
    text-align: center;
    font-size: 40px;
    color: #110F0F;
}
p.intl-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}
.swiper-button-next, .swiper-button-prev {
    bottom: 0;
    top: auto !important;
    height: 56px !important;
    width: 56px !important;
    background: #3554d1 !important;
    border-radius: 50px;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 22px!important;
    color: #fff;
}
.swiper-button-next {
    right: calc(50% - 70px)!important;
}
.swiper-button-prev {
    left: calc(50% - 70px)!important;
}

/* CARD WRAPPER */
.tour-card-new{
  width:100%;
  max-width:300px;
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.15);
}

/* IMAGE PART */
.card-image{
  height:260px;
  background-size:cover;
  background-position:center;
  position:relative;
}

/* BADGE */
.badge{
  position:absolute;
  top:14px;
  left:14px;
  background:#0f766e;
  color:#fff;
  padding:6px 14px;
  font-size:13px;
  border-radius:18px;
  font-weight:600;
}

/* LOCATION STRIP */
.location-strip{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:14px 16px;
  background:rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  color:#fff;
  font-weight:500;
  font-size:25px;
}

/* INFO PART */
.card-info{
  padding:18px;
}

.price-row{
  display:flex;
  align-items:flex-end;
  gap:8px;
}
.price{
  font-size:24px;
  font-weight:700;
  color:#f59e0b;
}
.perday{
  font-size:13px;
  color:#666;
}

/* DESCRIPTION */
.desc{
  margin:12px 0 16px;
  color:#444;
  font-size:14px;
  line-height:1.4;
}

/* BOTTOM ROW */
.card-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* BUTTON */
.tour-card-new .btn-outline {
    padding: 8px 20px;
    border-radius: 22px;
    border: 2px solid #3554d1;
    color: #3554d1;
    text-decoration: none;
    font-weight: 600;
}
.btn-outline:hover{
  background:#3554d1;
  color:#fff;
}

/* RATING */
.rating{
  font-size:13px;
  color:#666;
  text-align:right;
}
.rating span{
  color:#f59e0b;
}
.card-bottom {
    gap: 20px;
}
.intl-title span {
    color: #3554D1;
}
.tour-card-new .card-info .desc {
    font-size: 18px;
    line-height: 1.4;
}
.tour-card-new .badge {
    background: #3554d1;
}

/* ===== POPUP OVERLAY ===== */
.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.popup-overlay.active{
  display:flex;
}
.popup-box{
  background: #fff;
  width: 90%;
  max-width: 900px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* Close button */
.popup-close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #3554D1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
}
/* ===== POPUP BOX ===== */
.tour-query-form{
  display:flex;
  max-width:900px;
}
.tq-left{
  width:45%;
  background:#fff;
  padding:25px;
}
.tq-left h3{color:#3554D1;}
.tq-left ul{padding-left:18px;}
.tq-left li{margin-bottom:10px;}
.tq-left .call{color:#3554D1;font-weight:bold;}

.tq-right{
  width:55%;
  background: #F4F6FB;
  padding:25px;
  color:#fff;
}
.tq-right label{
	 color: #374151;
}
.tq-right h3{color:#111827;margin-bottom:15px;font-weight:600}
.tq-right input, 
.tq-right select{
  width:100%;
  padding:10px;
  margin-bottom:12px;
	background-color: #FFFFFF;
  border: 1px solid #D1D5E2;
  border-radius: 6px;
  height: 44px;
}
.tq-right input[type="submit"]{
  background:#3554D1;
  border:none;
  color:#fff;
  padding:12px;
  cursor:pointer;
}
.two-col{
  display:flex;
  gap:12px;
}
.two-col > div{
  width:50%;
}
.two-col input{
  width:100%;
}
.tq-right p {
    margin: 0;
}
.card-info .desc{
    min-height: 100px;
}
span.wpcf7-list-item.first label {
    display: flex;
}
span.wpcf7-list-item input[type="radio"] {
    width: auto;
}
.wpcf7-list-item label {
    display: flex;
    gap: 10px;
}
.wpcf7-not-valid-tip {
  font-size: 13px;
}
.wpcf7-not-valid {
  border: 1px solid #E36B6B !important;
  background-color: #FFF5F5;
}
.wpcf7-response-output {
  background: rgba(255, 193, 193, 0.12);
  color: #FFD6D6;
  border: none;
  padding: 10px 14px;
  margin-top: 16px;
  font-size: 14px;
  border-radius: 6px;
}
.tq-right br {
    display: none;
}
span.wpcf7-form-control-wrap {
    display: block;
}
.popup-right input[type="radio"] {
    height: auto;
}
.tq-right label {
    color: #374151;
    font-weight: 500;
}
span.popup-close {
    background: #3554D1;
    height: 40px;
    width: 40px;
    position: absolute;
    right: -10px;
    border-radius: 50px;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -16px;
    font-size: 25px;
}

.popup-box {
    position: relative;
}
.wpcf7-response-output {
  background: rgba(255, 193, 193, 0.15);
  color: #FFD6D6;
  border: 1px solid rgba(255, 138, 138, 0.4);
  padding: 10px 14px;
  margin-top: 16px;
  font-size: 14px;
  border-radius: 6px;
}
.wpcf7-response-output {
    display: none;
}
.wpcf7-form-control-wrap.package-type.wpcf7-not-valid {
  border: none !important;
}

.popup-right input[type="radio"] {
  accent-color: #3554D1;
}
.wpcf7-not-valid input[type="radio"] {
  outline: 1px solid #E46A6A;
}
.call svg {
	width:18px
}
.wpcf7-form.submitting .wpcf7-submit {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

.wpcf7-form.submitting .wpcf7-submit::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  border-top-color: transparent;
  border-radius: 50%;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg) translateY(-50%); }
}
.cf7-success-message {
  background: #F0F7FF;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
}

.cf7-success-message h3 {
  color: #3554D1;
  margin-bottom: 8px;
}

.cf7-success-message p {
  color: #374151;
  font-size: 15px;
}
.wpcf7-response-output {
  display: block;
  background: #EAF2FF;
  color: #1E3A8A;
  padding: 12px;
  border-radius: 6px;
  margin-top: 12px;
  text-align: center;
  font-weight: 500;
}
.cf7-success-message{
  text-align:center;
  padding:40px 25px;
}
.wpcf7-response-output{
  display: none !important;
}
.cf7-success-message h3{
  color:#3554D1;
  margin-bottom:10px;
}

.cf7-success-message p{
  font-size:16px;
  color:#444;
}
/* hide default CF7 message */
.wpcf7-response-output{
  display:none !important;
}

/* success screen */
.cf7-success-message{
  text-align:center;
  padding:60px 30px;
	display:none
}


@media (max-width: 768px) {

  .tour-query-form {
    flex-direction: column;
  }

  .tq-left {
    display: none; /* Mobile pe sirf form */
  }

  .tq-right {
    width: 100%;
    padding: 20px;
  }

  .two-col {
    display: block;
  }

  .two-col > div {
    width: 100%;
    margin-bottom: 12px;
  }

  .wpcf7-submit {
    width: 100%;
    height: 50px;
    font-size: 16px;
  }
}

.floating-actions{
  position: fixed;
  right: 18px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  cursor: pointer;
  border: none;
}

/* WhatsApp */
.float-btn.whatsapp{
  background: #dcfce7;
}

.float-btn.whatsapp svg{
  width: 26px;
  height: 26px;
}

/* Book Now */
.float-btn.book-now{
  background: #ffedd5;
  color: #e69e1e;
}
.tour-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.tour-card-new {
  cursor: pointer;
}

/* Button ko card link se upar lao */
.book-now-btn {
  position: relative;
  z-index: 5;
}

.single-tour-wrapper {
  max-width: 1300px;
  margin: 40px auto;
  padding: 0px;
}

.tour-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.tour-gallery img {
  width: 100%;
  border-radius: 10px;
}

.tour-meta {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.tour-inclusions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.tab-head {
  display: flex;
  gap: 20px;
  cursor: pointer;
}

.tab-head li.active {
  border-bottom: 2px solid #3554d1;
}

.tab-body {
  display: none;
  margin-top: 20px;
}

.tab-body.active {
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.hero-left { grid-column: 1 / 2; grid-row: 1 / 3; }
.hero-top-1 { grid-column: 2 / 3; grid-row: 1 / 2; }
.hero-top-2 { grid-column: 3 / 4; grid-row: 1 / 2; }
.hero-bottom { grid-column: 2 / 4; grid-row: 2 / 3; }

.hero-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.tour-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.tour-gallery img {
  width: 100%;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.tour-gallery img:hover {
  transform: scale(1.05);
}
.itinerary-content h4{
    background: #f5f7fa;
    padding: 10px 15px;
    margin-bottom: 12px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: 0.3s;
    font-size: 16px;
}

.itinerary-content h4:hover{
    background:#e9eef5;
}

.itinerary-content h4::before{
    content: attr(data-day);
    display: inline-block;
    background: #eee7e7;
    color: #3554D1;
    padding: 4px 10px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 13px;
}

.itinerary-content h4::after{
    content:"▼";
    position:absolute;
    right:20px;
    transition:0.3s;
}

.itinerary-content h4.active::after{
    transform:rotate(180deg);
}

.itinerary-content .accordion-body{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
    background:#fff;
    padding:0 20px;
    border-radius:0 0 10px 10px;
}
.accordion-item {
    border-radius: 12px;
    margin-bottom: 18px;
    overflow: hidden;
    background: #f5f7fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.accordion-header .day {
    background: #3bb77e;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    margin-right: 15px;
}

.accordion-header span:nth-child(2) {
    flex: 1;
    margin-left: 15px;
}

.accordion-header .arrow {
    transition: transform 0.3s ease;
    font-size: 20px;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}

.accordion-body {
    display: none;
    padding: 20px 22px;
    background: #fff;
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid #eee;
}

.accordion-item.active .accordion-body {
    display: block;
}
section.tour-main-wrapper {
    margin-top: 30px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.tour-left {
  flex: 2;
  min-width: 0;
}

.tour-right {
  flex: 1;
  position: sticky;
  top: 100px;
}
.tour-price {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.primary-btn {
  display: block;
  text-align: center;
  background: #2e6cff;
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 12px;
  text-decoration: none;
  font-weight: 600;
}

.whatsapp-btn {
  display: block;
  text-align: center;
  background: #dcfce7;
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.tour-right {
    padding: 16px;
    border: 1px solid rgba(15, 29, 35, .1);
    box-shadow: 0px 40px 40px -40px rgba(0, 0, 0, .16);
    border-radius: 6px;
}
.enquiry-price {
    display: flex;
    align-items: center;
    gap: 10px;
}
a.primary-btn.book-now-btn {
    margin-bottom: 0;
    padding: 8px 15px;
    border-radius: 4px;
}
.enquiry-price a.whatsapp-btn {
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    width: 40px;
    padding: 0;
    justify-content: center;
}
.itinerary-switch {
  margin-bottom: 20px;
}

.iti-btn {
    padding: 4px 15px;
    border: none;
    background: #eee;
    cursor: pointer;
    margin-right: 10px;
    font-weight: 600;
    border-radius: 34px;
	color:#2e6cff
}

.iti-btn.active {
    background: #2e6cff;
    color: #fff;
}

.itinerary-box {
  display: none;
}

.itinerary-box.active {
  display: block;
}
span.day-badge {
    color: #2e6cff;
    border: 1px solid #2e6cff;
    border-radius: 4px;
    padding: 0px 10px;
}
.inc-exc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
}

.inc-column ul,
.exc-column ul {
  list-style: none;
  padding: 0;
}

.inc-column li,
.exc-column li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 15px;
}

.icon {
  margin-right: 10px;
  font-weight: bold;
}

.green { color: #28a745; }
.red { color: #dc3545; }
.inc-title,
.exc-title {
  margin-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 0;
}

.package-note {
  margin-top: 15px;
  padding: 12px;
  background: #f6f1df;
  border-left: 4px solid #28a745;
  font-size: 14px;
}

.red-note {
  border-left: 4px solid #dc3545;
}
@media(max-width:768px){
  .inc-exc-wrapper{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .tour-main-wrapper {
    flex-direction: column;
  }

  .tour-right {
    position: static;
  }
}

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

.review-card{
    background:#f9f9f9;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.review-text{
    font-size:15px;
    line-height:1.6;
    margin-bottom:20px;
}

.review-bottom{
    display:flex;
    align-items:center;
	gap:8px
}
h4.review-name {
    margin: 0;
}
.review-name{
    font-size:15px;
    font-weight:600;
}

.stars{
    color:#ffb400;
    font-size:14px;
}
img.review-avatar {
    width: 44px;
    border-radius: 50px!important;
    object-fit: cover!important;
    height: 44px!important;
}
.contact-from-last input.wpcf7-form-control.wpcf7-submit.has-spinner {
    color: #3554D1;
    border-color: #3554D1;
}

header .elementor-widget-navigation-menu .hfe-nav-menu-layout:not(.hfe-pointer__framed) .menu-item.parent a.hfe-menu-item:after {
    background-color: #3554D1!important;
}