body{
	
}

img{
    max-width:100%;
}

.home-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}
 
/* Dynamic BG image from PHP */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
 
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    animation: slowZoom 18s ease-in-out infinite alternate;
}
 
@keyframes slowZoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.07); }
}
 
/* Dark gradient overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        100deg,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.50) 50%,
        rgba(0,0,0,0.25) 100%
    );
}
 
.hero-content {
    position: relative;
    z-index: 2;
}

.navbar-brand img{
    width:90px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1337px !important;
    }
}
 
.hero-content .row {
    /*min-height: 100vh;*/
    padding: 40px 0;
}
 
/* =============================================
   LEFT — TEXT SIDE
   ============================================= */
.hero-text {
    padding-top: 20px;
    animation: fadeLeft 0.9s 0.1s ease both;
}
 
@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-28px); }
    to   { opacity: 1; transform: translateX(0); }
}
 
/* Promo pill */
.promo-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeDown 0.7s ease both;
}
 
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-14px); }
    to   { opacity: 1; transform: translateY(0); }
}
 
/* Main heading */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.18;
    color: #fff;
    margin-bottom: 0;
}
 
/* "Best Kashmir Tour Package" — green + yellow split */
.hero-title .title-line1 {
    display: block;
    margin-bottom: 4px;
}
 
.hero-title .title-green {
    color: #4caf50;
}
 
.hero-title .title-yellow {
    color: #FFD600;
}
 
/* "Book Your Dream Tour" */
.hero-title .title-line2 {
    display: block;
    color: #fff;
    margin-bottom: 4px;
}
 
/* "4N/5D Starting ₹12,500 only" */
.hero-title .title-line3 {
    display: block;
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
}
 
.hero-title .title-line3 .price {
    color: #4caf50;
}
 
/* Subtitle */
.hero-subtitle {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    margin-top: 14px;
    margin-bottom: 24px;
    max-width: 500px;
}
 
.hero-subtitle .highlight {
    color: #FFD600;
    font-weight: 600;
}
 
/* Divider line */
.hero-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 0 0 20px 0;
    max-width: 500px;
}
 
/* Trust badges grid */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-bottom: 22px;
    max-width: 420px;
}
 
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.92);
}
 
.trust-item .t-icon {
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}
 
.trust-item strong {
    color: #fff;
}
 
/* Star rating */
.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.88);
    margin-bottom: 28px;
}
 
.rating-row .stars {
    color: #FFC107;
    font-size: 17px;
    letter-spacing: 2px;
}
 
/* CTA Button */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff !important;
    background: #2e7d32 !important;
    border: none !important;
    border-radius: 8px;
    padding: 14px 32px;
    box-shadow: 0 4px 22px rgba(46,125,50,0.50);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
 
.btn-hero:hover {
    background: #388e3c !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(46,125,50,0.55);
}
 
/* =============================================
   RIGHT — FORM CARD
   ============================================= */
.hero-form-wrap {
    animation: fadeRight 0.9s 0.2s ease both;
}
 
@keyframes fadeRight {
    from { opacity: 0; transform: translateX(28px); }
    to   { opacity: 1; transform: translateX(0); }
}
 
.hero-form {
    background: #fff;
    border-radius: 16px;
    padding: 30px 28px 26px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.40);
}
 
.hero-form .form-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
}
 
/* CF7 field wrappers */
.hero-form .wpcf7-form p,
.hero-form .cf7-field {
    margin-bottom: 0px !important;
}
 
/* Labels */
.hero-form .field-label {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
    display: block;
}
 
.hero-form .field-label .req { color: #e53935; }
.hero-form .field-label .opt { color: #999; font-weight: 400; }
 
/* All inputs */
.hero-form .wpcf7-form input[type="text"],
.hero-form .wpcf7-form input[type="email"],
.hero-form .wpcf7-form input[type="tel"],
.hero-form .wpcf7-form input[type="number"],
.hero-form .wpcf7-form select,
.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="tel"],
.hero-form input[type="number"] {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}
 
/* Textarea */
.hero-form .wpcf7-form textarea,
.hero-form textarea {
    width: 100%;
    height: 90px;
    padding: 12px 14px;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    resize: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
 
/* Focus */
.hero-form .wpcf7-form input:focus,
.hero-form .wpcf7-form textarea:focus,
.hero-form input:focus,
.hero-form textarea:focus {
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76,175,80,0.15);
    outline: none;
}
 
/* Placeholder */
.hero-form input::placeholder,
.hero-form textarea::placeholder {
    color: #bbb;
    font-size: 13px;
}
 
/* Submit button — CF7 */
.hero-form .wpcf7-form input[type="submit"],
.hero-form .wpcf7-submit,
.hero-form .btn-submit {
    width: 100%;
    background: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 20px rgba(46,125,50,0.40);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-top: 6px;
}
 
.hero-form .wpcf7-form input[type="submit"]:hover,
.hero-form .wpcf7-submit:hover,
.hero-form .btn-submit:hover {
    background: #388e3c;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(46,125,50,0.48);
}
 
/* CF7 validation */
.hero-form .wpcf7-not-valid-tip {
    font-size: 11px;
    color: #e53935;
    margin-top: 3px;
    display: block;
}
 
.hero-form .wpcf7-response-output {
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    padding: 10px 14px;
    margin-top: 10px;
    border: none !important;
}
 
.hero-form .wpcf7-mail-sent-ok {
    background: #e8f5e9;
    color: #2e7d32;
}
 
.hero-form .wpcf7-validation-errors {
    background: #fff3e0;
    color: #e65100;
}
 
/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .hero-title { font-size: 2.1rem; }
}
 
@media (max-width: 767px) {
    .hero-content .row { padding: 80px 0 40px; }
    .hero-title { font-size: 1.75rem; }
    .hero-subtitle { font-size: 14px; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 8px 14px; }
    .hero-form-wrap { margin-top: 30px; }
    .hero-form { padding: 24px 18px 22px; }
}
 
@media (max-width: 400px) {
    .trust-grid { grid-template-columns: 1fr; }
}

/* SERVICE WRAPPER */
.services-div {
    text-align: center;
    padding: 35px 20px;
    position: relative;
    transition: all 0.4s ease;
}

/* BEFORE – subtle base underline */
.services-div::before {
    content: "";
    width: 40px;
    height: 2px;
    background: #ddd;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
}

/* AFTER – glow accent (hidden initially) */
.services-div::after {
    content: "";
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(26, 127, 90, 0.12);
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}



/* ── Section Wrapper ── */
.home4_section_area2 {
  padding: 70px 0 80px;
  background: #f4f9f0;
}
 
/* ── Section Title ── */
.home4_section_area2 .centertitle {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}
 
.home4_section_area2 .centertitle h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0d1b2a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}
 
/* Green underline bar under heading */
.home4_section_area2 .centertitle h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #4caf22;
  border-radius: 4px;
}
 
/* ── Service Card ── */
.services-div {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px 28px;
  text-align: center;
  border: 1px solid #e4f0d9;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
 
.services-div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4caf22, #7dcc3a);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}
 
.services-div:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(76, 175, 34, 0.15);
}
 
.services-div:hover::before {
  opacity: 1;
}
 
/* ── Thumbnail / Icon Image ── */
.services-div img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: #eaf5e1;
  padding: 14px;
  margin-bottom: 20px;
  transition: transform 0.25s ease;
}
 
.services-div:hover img {
  transform: scale(1.1);
}
 
/* ── Card Text ── */
.recommended-description h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 10px;
  line-height: 1.3;
}
 
.recommended-description p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}
 
/* Strip default WordPress content margins inside card */
.recommended-description p:last-child {
  margin-bottom: 0;
}
 
/* ── Column spacing ── */
.home4_section_area2 .col-md-3,
.home4_section_area2 .col-sm-3,
.home4_section_area2 .col-6 {
  margin-bottom: 28px;
}
 
/* ── Responsive ── */
@media (max-width: 767px) {
  .home4_section_area2 {
    padding: 50px 0 60px;
  }
 
  .home4_section_area2 .centertitle h2 {
    font-size: 1.5rem;
  }
 
  .services-div {
    padding: 24px 18px 22px;
  }
 
  .services-div img {
    width: 60px;
    height: 60px;
  }
 
  .recommended-description h5 {
    font-size: 0.97rem;
  }
}
 
@media (max-width: 480px) {
  .home4_section_area2 .centertitle h2 {
    font-size: 1.3rem;
    letter-spacing: 0.02em;
  }
}

.reviews-section{
    padding:50px 0;
}



.centertitle {
    text-align: center;
    position: relative;
}

/* Title styling */
.centertitle h2 {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #111;
    position: relative;
    padding: 0 20px; /* spacing for the lines */
}



.centertitle h2::before {
    left: -70px; /* space from the title */
}

.centertitle h2::after {
    right: -70px; /* space from the title */
}

/* Responsive tuning */
@media (max-width: 767px) {
    .centertitle h2::before,
    .centertitle h2::after {
        width: 40px;
        left: -50px;
        right: -50px;
    }

    .centertitle h2 {
        font-size: 24px;
        padding: 0 15px;
    }
}





/* Sidebar Wrapper */
.siderbar {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* List Reset */
.siderbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List Item */
.siderbar ul li {
    position: relative;
    padding: 12px 15px 12px 30px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    background: #f9f9f9;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* BEFORE – Accent Line */
.siderbar ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #1b7f5a; /* Kashmir green */
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

/* AFTER – Hover Background Slide */
.siderbar ul li::after {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1b7f5a, #3cb371);
    z-index: -1;
    transition: left 0.4s ease;
}

/* Hover Effects */
.siderbar ul li:hover {
    color: #fff;
    transform: translateX(5px);
}

.siderbar ul li:hover::before {
    transform: scaleY(1);
}

.siderbar ul li:hover::after {
    left: 0;
}

/* Last Item Margin Fix */
.siderbar ul li:last-child {
    margin-bottom: 0;
}
/* Section Wrapper */
.home4_section_area {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Center Title */
.home4_section_area .centertitle {
    text-align: center;
    margin-bottom: 35px;
}

.home4_section_area .centertitle h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

/* Title Underline */
.home4_section_area .centertitle h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 60px;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Carousel Wrapper */
.home4_section_area .owl-carousel {
    padding: 20px 0;
}

/* Individual Logo Item */
.home4_section_area .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo Box */
.home4_section_area .owl-item img {
    max-height: 80px;
    width: auto;
    opacity: 0.8;
    transition: all 0.4s ease;
}

/* Hover Effect */
.home4_section_area .owl-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Owl Dots */
.home4_section_area .owl-dots {
    margin-top: 20px;
}

.home4_section_area .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.home4_section_area .owl-dot.active span {
    background: #1b7f5a;
    width: 20px;
    border-radius: 10px;
}

/* Mobile Optimisation */
@media (max-width: 767px) {
    .home4_section_area {
        padding: 40px 0;
    }

    .home4_section_area .centertitle h2 {
        font-size: 26px;
    }

    .home4_section_area .owl-item img {
        max-height: 60px;
    }
}


/* =========================
   MODAL ENHANCEMENT
========================= */
.modal-header {
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

.modal-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.modal-header h2,
.modal-header button {
    position: relative;
    z-index: 2;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 767px) {
    .footer-top {
        padding: 50px 20px 30px !important;
        /*text-align: center;*/
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-network {
        justify-content: center;
    }
}

/* Show only on mobile */
@media (max-width: 767px) {
    .home-heroo {
        display: block;
    }
    
    .hero-content h1{
        font-size:30px;
    }
    
    .hero-title span{
        font-size:35px;
    }
}

/* Hide form on desktop */
.mobile-hero-form {
    display: none;
}

/* Show form only on mobile */
@media (max-width: 767px) {
    .mobile-hero-form {
               display: block;
        margin-top: 3em;
    }
    .hero-overlay{
        /*background:transparent;*/
    }
    .water-btn{
        margin-bottom:5px;
    }
}



.thankyoudiv{
    padding:120px 0;
}

/* Modal Base */
.travel-offer-modal .modal-content {
  border-radius: 10px;
  overflow: hidden;
  border: none;
}

/* Header */
.travel-modal-header {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 40px 25px;
  color: #fff;
  text-align: center;
}

.travel-modal-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.travel-modal-header * {
  position: relative;
  z-index: 2;
}

.travel-modal-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.travel-modal-header h2 span {
  color: #ffd200;
}

.travel-modal-header p {
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* Close Button */
.travel-modal-close {
  color: #fff;
  opacity: 1;
  font-size: 28px;
}

/* Body */
.travel-modal-body {
  background: #f7f9fc;
  padding: 10px;
}

.travel-form-box {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.travel-form-box h3 {
  text-align: center;
  color: #004288;
  font-weight: 700;
  margin-bottom: 5px;
}

.travel-form-sub {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

/* Contact Form 7 Styling */
.travel-form-box input,
.travel-form-box textarea,
.travel-form-box select {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.travel-form-box input:focus,
.travel-form-box textarea:focus {
  border-color: #004288;
  box-shadow: none;
}

/* Submit Button */
.travel-form-box input[type="submit"] {
  background: #004288;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px;
  border-radius: 6px;
  transition: 0.3s;
}

.travel-form-box input[type="submit"]:hover {
  background: #002d5a;
}

/* Footer */
.travel-modal-footer {
  background: #fff;
  border-top: 1px solid #eee;
  text-align: center;
}

.privacy-points {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}

.privacy-points li {
  font-size: 13px;
  color: #666;
}

/* Close Button */
.travel-close-btn {
  background: #ddd;
  border-radius: 20px;
  padding: 6px 18px;
}

.modal-footer{
    display:flex !important;
    justify-content:space-between !important;
}

.offerpackage {
    padding: 60px 0;
    background: #f5f5f5;
    font-family: 'Poppins', sans-serif;
}
 
.offerpackage > .container > .row:first-child h1 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}
 
.offr {
    margin-bottom: 28px;
    padding: 0 10px;
}
 
/* =============================================
   CARD
   ============================================= */
.package-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
 
.package-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}
 
/* =============================================
   IMAGE + DURATION BADGE
   ============================================= */
.package-img {
    position: relative;
    width: 100%;
    /*height: 195px;*/
    overflow: hidden;
}
 
.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}
 
.package-card:hover .package-img img {
    transform: scale(1.04);
}
 
/* Duration badge — top right white pill */
.badge-duration {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.93);
    color: #222;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding: 5px 12px 5px 9px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    backdrop-filter: blur(3px);
}
 
.badge-duration i { font-size: 11px; color: #444; }
 
/* =============================================
   TITLE ROW
   ============================================= */
.package-title {
    display: flex;
    align-items: center;
   background: linear-gradient(135deg, #e6f4ea, #c7e9d5, #a8dcc2);
        margin: 5px 10px;
    border-radius: 30px;
    gap: 10px;
    padding: 13px 14px 11px;
}
 
.package-number {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: #4caf50;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}
 
.package-title h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}
 
/* =============================================
   FEATURES ROW
   Dark "INCLUDE" vertical strip + 4 emoji icon circles
   ============================================= */
.package-features {
    display: flex;
    align-items: stretch;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    min-height: 86px;
    background: #fff;
}
 
/* Vertical INCLUDE label — dark strip left side */
.package-features .include-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    background: #055129;
    color: #ffffff;
    font-size: 7.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    padding: 8px 4px;
    flex-shrink: 0;
    align-self: stretch;
}
 
/* 4 icons wrapper */
.package-features .features-icons {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex: 1;
    padding: 10px 6px;
}
 
/* Each icon column */
.package-features .feat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
}
 
/* Orange circle with emoji + red pin badge */
.package-features .feat-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #FF8C00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
    box-shadow: 0 2px 8px rgba(255,140,0,0.30);
    flex-shrink: 0;
}
 

 

 
/* Label text */
.package-features .feat-item p {
    font-size: 11px;
    color: #444;
    margin: 0;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    line-height: 1.2;
}
 
/* =============================================
   PACKAGE INCLUSION — vertical scrollable
   ============================================= */
.package-inclusion {
    padding: 12px 14px 10px;
    border-bottom: 1px dashed #ddd;
}
 
.package-inclusion h6 {
    font-size: 13px;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}
 
/* Scrollable with blue right scrollbar — exact like screenshot */
.package-inclusion .inclusion-inner {
    max-height: 95px;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: #1565C0 #e8eaf6;
}
 
.package-inclusion .inclusion-inner::-webkit-scrollbar { width: 4px; }
.package-inclusion .inclusion-inner::-webkit-scrollbar-track { background: #e8eaf6; border-radius: 4px; }
.package-inclusion .inclusion-inner::-webkit-scrollbar-thumb { background: #1565C0; border-radius: 4px; }
 
/* List items with red >> arrow */
.package-inclusion .inclusion-inner ul,
.package-inclusion ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
 
.package-inclusion .inclusion-inner ul li,
.package-inclusion ul li {
    font-size: 13px;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.45;
    font-family: 'Poppins', sans-serif;
}
 
.package-inclusion .inclusion-inner ul li::before,
.package-inclusion ul li::before {
    content: '»»';
    color: #e53935;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
    line-height: 1.45;
}
 
/* If ACF outputs plain <p> tags */
.package-inclusion .inclusion-inner p,
.package-inclusion > p {
    font-size: 13px;
    color: #333;
    margin: 0 0 5px 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.45;
    /*display: flex;*/
    gap: 6px;
    align-items: flex-start;
}
 
/* =============================================
   PACKAGE HIGHLIGHTS — horizontal scroll pills
   ============================================= */
.package-highlights {
    padding: 10px 14px 6px;
    border-bottom: 1px dashed #ddd;
}
 
.package-highlights h6 {
    font-size: 13px;
    font-weight: 700;
    color: #e53935;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}
 
/* Horizontal scrollable pills row */
.package-highlights .highlights-row {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: #bbb #f0f0f0;
    -webkit-overflow-scrolling: touch;
}
 
.package-highlights .highlights-row::-webkit-scrollbar { height: 3px; }
.package-highlights .highlights-row::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 3px; }
.package-highlights .highlights-row::-webkit-scrollbar-thumb { background: #bbb; border-radius: 3px; }
 
/* Pill tag */
.package-highlights .htag {
    display: inline-block;
    white-space: nowrap;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #444;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    padding: 5px 13px;
    flex-shrink: 0;
}
 
/* =============================================
   PRICE
   ============================================= */
.package-price {
    padding: 12px 14px 6px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}
 
.package-price > span {
    font-size: 13.5px;
    color: #444;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}
 
.package-price h4 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
 
.package-price h4 small {
    font-size: 12px;
    font-weight: 400;
    color: #777;
    font-family: 'Poppins', sans-serif;
}
 
/* =============================================
   ACTION BUTTONS
   ============================================= */
.package-actions {
    padding: 8px 10px 14px;
    margin: 0;
    margin-top: auto;
}
 
.package-actions .col-4 { padding: 0 4px; }
 
.btn-call {
    background: #FF8F00;
    color: #fff !important;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding: 9px 4px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    line-height: 1.2;
}
.btn-call:hover { background: #E65100; color: #fff !important; transform: translateY(-1px); text-decoration: none; }
 
.btn-whatsapp {
    background: #25D366;
    color: #fff !important;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding: 9px 4px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    line-height: 1.2;
}
.btn-whatsapp:hover { background: #128C7E; color: #fff !important; transform: translateY(-1px); text-decoration: none; }
 
.btn-offer {
    background: #e53935;
    color: #fff !important;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding: 9px 4px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    transition: background 0.2s, transform 0.15s;
    line-height: 1.2;
    width: 100%;
    cursor: pointer;
}
.btn-offer:hover { background: #b71c1c; color: #fff !important; transform: translateY(-1px); }
 
/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 767px) {
    .offr { padding: 0 6px; margin-bottom: 20px; }
    /*.package-img { height: 175px; }*/
    .package-features .feat-icon { width: 40px; height: 40px; font-size: 17px; }
    .package-price h4 { font-size: 20px; }
    .btn-call, .btn-whatsapp, .btn-offer { font-size: 11px; padding: 8px 3px; }
}
.section-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
}

.destination-card {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.dest-img img {
    width: 100%;
    /*height: 200px;*/
    object-fit: cover;
    /*border-radius: 12px;*/
}

.dest-title {
    font-size: 16px;
    margin-top: 10px;
        background: linear-gradient(135deg, #e6f4ea, #c7e9d5, #a8dcc2);
    margin: 10px 0px;
    border-radius: 30px;
    display:flex;
    align-items:center;
    gap: 10px;
    padding:8px 12px;
    font-weight: 600;
}
.dest-title p{
    margin-bottom:0 !important;
}
.dest-title .dot {
    height: 20px;
    width: 20px;
    background: #28a745;
    display: inline-block;
    border-radius: 50%;
    margin-right: 6px;
}

.dest-desc {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
    min-height: 70px;
}

.dest-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.dest-actions .btn {
    flex: 1;
    font-size: 13px;
    padding: 6px;
    border-radius: 6px;
}

.call-btn {
    background: #f39c12;
    color: #fff;
}

.whatsapp-btn {
    background: #28a745;
    color: #fff;
}

.offer-btn {
    background: #e74c3c;
    color: #fff;
}

/* Owl Nav */
.owl-nav button {
    position: absolute;
    top: 40%;
    background: #fff !important;
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

.owl-nav .owl-prev { left: -15px; }
.owl-nav .owl-next { right: -15px; }

   .section-wrapper {
      background: #ffffff;
      border-radius: 20px;
      padding: 48px 40px 40px;
      /*max-width: 900px;*/
      width: 100%;
    }
 
    .section-title {
      font-size: 2.1rem;
      font-weight: 800;
      color: #0d1b2a;
      margin-bottom: 8px;
    }
 
    .section-subtitle {
      color: #6c757d;
      font-size: 1rem;
      margin-bottom: 36px;
    }
 
    .season-card {
      background: #f4f9f0;
      border-radius: 14px;
      padding: 26px 24px 24px;
      height: 100%;
      border: none;
    }
 
    .season-badge {
      display: inline-block;
      background: #c8e6a0;
      color: #2d6a0a;
      font-weight: 700;
      font-size: 0.82rem;
      border-radius: 30px;
      padding: 5px 16px;
      margin-bottom: 16px;
    }
 
    .season-dates {
      font-weight: 700;
      font-size: 1.05rem;
      color: #0d1b2a;
      margin-bottom: 10px;
    }
 
    .season-desc {
      color: #444;
      font-size: 0.92rem;
      line-height: 1.65;
      margin: 0;
    }
 
    .btn-plan {
      background: #4caf22;
      color: #ffffff;
      font-weight: 700;
      font-size: 1rem;
      border-radius: 50px;
      padding: 13px 42px;
      border: none;
      margin-top: 36px;
      letter-spacing: 0.01em;
      transition: background 0.2s ease;
    }
 
    .btn-plan:hover {
      background: #3d9118;
      color: #ffffff;
    }
 
    @media (max-width: 576px) {
      .section-wrapper {
        padding: 32px 20px 28px;
      }
      .section-title {
        font-size: 1.6rem;
      }
    }
    
    .about-section {
  padding: 80px 0;
  background: #fff;
}
 
/* ── LEFT: Image column ── */
.about-img {
  position: relative;
  padding-left: 24px;
  padding-bottom: 24px;
}
 
/* Dark green square block behind the card */
.about-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 52%;
  height: 82%;
  background: #2d6a0a;
  border-radius: 14px;
  z-index: 0;
}
 
/* The thumbnail WordPress outputs */
.about-img img.img-fluid {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 14px !important;
  display: block;
  object-fit: cover;
}
 
/* ── RIGHT: Text column ── */
.about-text {
  color: #0d1b2a !important; /* override text-white from markup */
}
 
.about-text .small-title {
  display: inline-block;
  background: #c8e6a0;
  color: #2d6a0a;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 4px 16px;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
 
.about-text .about-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.2;
}
 
/* Content paragraphs rendered by WordPress */
.about-text .about-content p {
  font-size: 0.97rem;
  color: #444;
  line-height: 1.78;
  margin-bottom: 16px;
}
 
.about-text .about-content strong {
  color: #0d1b2a;
}
 
/* ── Call / CTA button ── */
.about-text .call-btn {
  display: inline-block;
  background: #2d6a0a;
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  padding: 13px 32px;
  border: none;
  text-decoration: none;
  transition: background 0.2s ease;
}
 
.about-text .call-btn:hover {
  background: #1e4c07;
  color: #fff !important;
  text-decoration: none;
}
 
/* ── Responsive ── */
@media (max-width: 767px) {
  .about-img::before {
    width: 38%;
    height: 78%;
  }
 
  .about-text {
    margin-top: 16px;
  }
 
  .about-text .about-title {
    font-size: 1.8rem;
  }
}
 .keywords-section {
  padding: 60px 0 50px;
  background: #fff;
  text-align: center;
}
 
/* ── Section Pre-title (small text above heading) ── */
.keywords-section .keywords-pretitle {
  display: block;
  font-size: 1rem;
  color: #6c757d;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
 
/* ── Section Main Heading ── */
.keywords-section .keywords-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 10px;
  line-height: 1.2;
}
 
/* ── Section Subtitle ── */
.keywords-section .keywords-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 36px;
}
 
/* ── Keywords Sidebar / Wrapper ── */
.keywords-sidebar {
  display: flex;
  justify-content: center;
}
 
/* ── Keywords List ── */
.keywords-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
 
/* ── Individual Keyword Pill ── */
.keyword-item {
  display: inline-block;
  background: #fff;
  color: #333;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid #d6d6d6;
  cursor: default;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
 
.keyword-item:hover {
  border-color: #4caf22;
  color: #2d6a0a;
  background: #f4f9f0;
}
 
/* ── Responsive ── */
@media (max-width: 768px) {
  .keywords-section .keywords-title {
    font-size: 1.7rem;
  }
 
  .keyword-item {
    font-size: 0.82rem;
    padding: 8px 16px;
  }
}
 
@media (max-width: 480px) {
  .keywords-section {
    padding: 40px 16px 36px;
  }
 
  .keywords-section .keywords-title {
    font-size: 1.4rem;
  }
}

.faq-section {
    background: #f6fbf7;
}

.faq-card {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    text-align: left;
    background: #e6f4ea;
    white-space:normal !important;
    color: #055129;
    font-weight: 500;
    padding: 15px;
    border: none;
    position: relative;
}

.faq-btn:hover {
    background: #d4edda;
}

.faq-btn::after {
    content: "\f107"; /* down arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
}

.faq-btn.collapsed::after {
    content: "\f105"; /* right arrow */
}

.card-body {
    background: #ffffff;
    color: #333;
    padding: 15px;
    border-left: 3px solid #28a745;
}

.contact-section {
    padding: 60px 0;
    background: #f6f7f9;
}

.contact-wrapper {
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* LEFT CARD */
.contact-card {
    padding: 30px;
    border-radius: 20px;
    margin-bottom:15px;
    color: #fff;
    background: linear-gradient(135deg, #0a7d2c, #c9a227);
}

.contact-card h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card .subtext {
    font-size: 14px;
    margin-bottom: 25px;
}

/* ITEMS */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.icon-box {
    width: 45px;
    height: 45px;
    /*background: rgba(255,255,255,0.2);*/
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

/* FORM SIDE */
.contact-form-box {
    padding-left: 20px;
}

.form-title {
    margin-bottom: 20px;
    font-weight: 500;
}

/* CF7 STYLE */
.wpcf7 input,
.wpcf7 textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.wpcf7-submit {
    width: 100%;
    background: linear-gradient(90deg, #0a7d2c, #38c172);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
}

.popular-places {
    padding: 30px 0;
    background: #f8f9fb;
}

/* TITLE */
.section-titleee {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    position: relative;
}

/* small underline */
.section-titleee::after {
    content: "";
    width: 60px;
    height: 2px;
    background: #ccc;
    position: absolute;
    left: 0;
    bottom: -5px;
}

/* TAG WRAPPER */
.places-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* TAG STYLE */
.place-tag {
    padding: 8px 14px;
    border: 1px dashed #ccc;
    border-radius: 25px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER EFFECT */
.place-tag:hover {
    background: #0a7d2c;
    color: #fff;
    border-color: #0a7d2c;
    transform: translateY(-2px);
}

.footer {
    background: #f8f9fb;
    padding-top: 50px;
    color: #333;
}
.navbar-light .navbar-nav .nav-link{
    color:#000 !important;
    padding:10px 30px;
}

/* LOGO */
.footer-logo {
    max-width: 121px;
    height:109px !important;
    margin-bottom: 15px;
}

/* TEXT */
.footer-about p {
    font-size: 14px;
    line-height: 1.6;
}

/* HEADINGS */
.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-heading::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #ccc;
    position: absolute;
    left: 22px;
    bottom: -6px;
}

/* LINKS */
.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.footer-links-list a:hover {
    color: #0a7d2c;
    padding-left: 5px;
}

/* CONTACT */
.footer p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer i {
    margin-right: 8px;
    color: #0a7d2c;
}

/* SOCIAL */
.footer-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border: 1px solid #ddd;
    border-radius: 50%;
    text-align: center;
    margin-right: 8px;
    color: #0a7d2c;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #0a7d2c;
    color: #fff;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 15px 0;
    margin-top: 20px;
    font-size: 14px;
}

.custom-modal {
    border-radius: 15px;
    padding: 20px;
    border: none;
}

.custom-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    background: none;
    border: none;
    outline: none;
}

.modal-title {
    font-weight: 600;
    font-size: 18px;
}

/* Contact Form Styling */
.wpcf7 input,
.wpcf7 textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 12px;
    font-size: 14px;
}

.wpcf7 textarea {
    height: 100px;
}

/* BUTTON */
.wpcf7-submit {
    width: 100%;
    background: linear-gradient(90deg, #28a745, #4cd137);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.wpcf7-submit:hover {
    opacity: 0.9;
}