body{
	
}

img{
    max-width:100%;
}



.header-transparent img {
    max-height: 100px;
}

.home-hero {
    position: relative;
    overflow: hidden;
}

/* Background Image */
.hero-bg img {
    width: 100%;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.1)
    );
    z-index: 1;
}

/* Content */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

/* Text Styling */
.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
}

.hero-content h1 span {
    color:#469FB8;
}

.hero-content p {
    font-size: 18px;
    max-width: 500px;
}

/* Form Box */
.hero-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-top:4rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.hero-form h3 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Base Button */
.water-btn {
    position: relative;
    overflow: hidden;
    padding: 10px 26px;
    font-weight: 600;
    border-radius: 30px;
    transition: color 0.4s ease;
    z-index: 1;
}

/* Water Layer */
.water-btn::before {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
    transition: bottom 0.45s ease;
    z-index: -1;
    border-radius: 50%;
}

/* Hover Animation */
.water-btn:hover::before {
    bottom: 0;
    border-radius: 0;
}
 .accent-bar {
      height: 4px;
      background: linear-gradient(90deg, #FD5806 0%, #8FCB21 50%, #359829 100%);
    }
 
    /* HEADER */
    .site-header {
      background: #fff;
      border-bottom: 2px solid #FD5806;
      padding: 0 2rem;
    }
 
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      /*flex-wrap: wrap;*/
      gap: 12px;
      padding: 14px 0;
    }
 
    /* LOGO */
    .logo a {
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }
 
    .logo-mark {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #FD5806, #8FCB21);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    .logo-mark svg {
      display: block;
    }
 
    .logo-text {
      font-size: 20px;
      font-weight: 700;
      color: #222;
      letter-spacing: -0.4px;
    }
 
    .logo-text span {
      color: #FD5806;
    }
 
    /* CONTACT STRIP */
    .contact-strip {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }
 
    .contact-item {
      display: flex;
      align-items: center;
      gap: 9px;
      text-decoration: none;
      transition: opacity 0.15s;
    }
 
    .contact-item:hover {
      opacity: 0.8;
    }
 
    .contact-icon {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
 
    .contact-icon.email-icon {
      background: #fff4ee;
      border: 1.5px solid #FD5806;
    }
 
    .contact-icon.phone-icon {
      background: #f2faeb;
      border: 1.5px solid #8FCB21;
    }
 
    .contact-label {
      display: flex;
      flex-direction: column;
      line-height: 1.35;
    }
 
    .contact-label .hint {
      font-size: 10px;
      color: #999;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      font-weight: 600;
    }
 
    .contact-label .value {
      font-size: 13px;
      font-weight: 600;
      color: #222;
    }
 
    .divider {
      width: 1px;
      height: 32px;
      background: #eee;
    }
 
    /* BOOK NOW BUTTON */
    .btn-book {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 9px 20px;
      background: #FD5806;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      border-radius: 8px;
      text-decoration: none;
      letter-spacing: 0.2px;
      border: none;
      cursor: pointer;
      transition: background 0.15s, transform 0.1s;
      white-space: nowrap;
    }
 
    .btn-book:hover {
      background: #e04a00;
    }
 
    .btn-book:active {
      transform: scale(0.97);
    }
 
    /* RESPONSIVE */
    @media (max-width: 640px) {
      .site-header {
        padding: 0 1rem;
      }
 
      .contact-strip {
        gap: 12px;
      }
 
      .contact-label .value {
        font-size: 12px;
      }
 
      .divider {
        display: none;
      }
    }
    
    .logo img{
        width:150px;
    }

/* Main Title */
.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
}

/* Price Highlight */
.hero-title span {
    display: inline-block;
    margin-top: 10px;
    color: #00e676;
    font-size: 46px;
}

/* Subtitle */
.hero-subtitle {
    font-size: 18px;
    margin-top: 15px;
    color: rgba(255,255,255,0.9);
}

/* Trust Points */
.hero-points {
    list-style: none;
    padding: 0;
    margin-top: 18px;
}

.hero-points li {
    font-size: 15px;
    margin-bottom: 6px;
    color: #fff;
}

/* Button spacing */
.hero-text .btn {
    padding: 14px 32px;
    border-radius: 50px;
}

.text-end{
    text-align:right;
}



.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;
    }
}


/* Hide home hero on mobile */
@media (max-width: 767px) {
    .home-hero {
        display: none !important;
    }
}
/* Hide on desktop & tablet */
.home-heroo {
    display: none;
}

/* 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;
    }
    .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;
}



.innerproducts{
    padding:100px 0;
}



 :root {
       --orange: #028FCD;
      --lime:   #8FCB21;
      --green:  #69A95F;
      --dark:   #1a1a1a;
      --text:   #444;
      --muted:  #888;
      --border: #eaeaea;
      --bg:     #f7f9f4;
    }
 
    .ffk-hero-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      font-family: 'DM Sans', sans-serif;
    }
 
    /* BG */
    .ffk-hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .ffk-hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
 
    /* OVERLAY */
    .ffk-hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(105deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.52) 55%, rgba(0,0,0,0.28) 100%);
    }
    .ffk-hero-overlay::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--orange), var(--lime), var(--green));
    }
 
    /* BLOBS */
    .ffk-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      opacity: 0.14;
      animation: ffk-drift 12s ease-in-out infinite alternate;
      z-index: 1;
      pointer-events: none;
    }
    .ffk-blob-1 { width: 420px; height: 420px; background: var(--orange); top: -100px; left: -80px; animation-delay: 0s; }
    .ffk-blob-2 { width: 300px; height: 300px; background: var(--lime);   bottom: 40px; left: 30%; animation-delay: -4s; }
    .ffk-blob-3 { width: 260px; height: 260px; background: var(--green);  top: 20%; right: -60px; animation-delay: -8s; }
    @keyframes ffk-drift {
      from { transform: translateY(0) scale(1); }
      to   { transform: translateY(40px) scale(1.08); }
    }
 
    /* INNER */
    .ffk-hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 100px 0 70px;
    }
 
    .ffk-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
 
    .ffk-row {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
    }
 
    /* LEFT */
    .ffk-hero-content {
      flex: 1 1 420px;
      color: #fff;
    }
 
    .ffk-live-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(253,88,6,0.15);
      border: 1px solid rgba(253,88,6,0.4);
      color: #ffb38a;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 22px;
      animation: ffk-fadeup 0.6s ease both;
    }
    .ffk-live-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--orange);
      animation: ffk-pulse 1.4s ease-in-out infinite;
    }
    @keyframes ffk-pulse {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:0.5; transform:scale(1.5); }
    }
 
    .ffk-hero-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4.5vw, 3.4rem);
      font-weight: 900;
      line-height: 1.18;
      color: #fff;
      margin-bottom: 18px;
      animation: ffk-fadeup 0.7s 0.1s ease both;
    }
    .ffk-hero-heading .ffk-highlight {
      background: linear-gradient(90deg, var(--orange), #ffb300);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      margin-top: 6px;
      font-size: 0.72em;
    }
 
    .ffk-hero-description {
      font-size: 16px;
      line-height: 1.75;
      color: rgba(255,255,255,0.78);
      max-width: 500px;
      margin-bottom: 28px;
      animation: ffk-fadeup 0.7s 0.2s ease both;
    }
 
    .ffk-trust-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 32px;
      animation: ffk-fadeup 0.7s 0.3s ease both;
    }
    .ffk-pill {
      display: flex;
      align-items: center;
      gap: 7px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.16);
      backdrop-filter: blur(8px);
      color: rgba(255,255,255,0.9);
      font-size: 13px;
      font-weight: 500;
      padding: 7px 14px;
      border-radius: 100px;
    }
 
    .ffk-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      animation: ffk-fadeup 0.7s 0.4s ease both;
    }
 
    .ffk-btn-call {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px;
      background: linear-gradient(135deg, var(--orange), #e04a00);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      border-radius: 12px;
      text-decoration: none;
      box-shadow: 0 8px 28px rgba(253,88,6,0.4);
      transition: transform 0.15s, box-shadow 0.15s;
    }
    .ffk-btn-call:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(253,88,6,0.55); }
 
    .ffk-btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 24px;
      background: transparent;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      border-radius: 12px;
      text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.35);
      transition: background 0.15s, border-color 0.15s;
    }
    .ffk-btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
 
    .ffk-stat-strip {
      display: flex;
      gap: 28px;
      margin-top: 40px;
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,0.12);
      animation: ffk-fadeup 0.7s 0.5s ease both;
    }
    .ffk-stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    }
    .ffk-stat-number em { font-style: normal; color: var(--lime); }
    .ffk-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 500; }
    .ffk-stat-sep { width: 1px; background: rgba(255,255,255,0.12); align-self: stretch; }
 
    /* ENQUIRY BOX */
    .ffk-enquiry-box {
      flex: 0 1 390px;
      background: rgba(255,255,255,0.07);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 20px;
      padding: 32px 28px;
      animation: ffk-fadeup 0.8s 0.2s ease both;
    }
 
    .ffk-form-pill {
      display: inline-block;
      background: linear-gradient(90deg, var(--green), var(--lime));
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 12px;
    }
 
    .ffk-form-title {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }
 
    .ffk-form-sub {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      margin-bottom: 20px;
    }
 
    /* ── CF7 FIELD OVERRIDES ── */
    .ffk-enquiry-box .wpcf7-form p,
    .ffk-enquiry-box .wpcf7-form br { display: block; margin-bottom: 14px; }
 
    .ffk-enquiry-box .wpcf7-form label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.6);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 6px;
      font-family: 'DM Sans', sans-serif;
    }
 
    .ffk-enquiry-box .wpcf7-form input[type="text"],
    .ffk-enquiry-box .wpcf7-form input[type="email"],
    .ffk-enquiry-box .wpcf7-form input[type="tel"],
    .ffk-enquiry-box .wpcf7-form input[type="number"],
    .ffk-enquiry-box .wpcf7-form input[type="date"],
    .ffk-enquiry-box .wpcf7-form select,
    .ffk-enquiry-box .wpcf7-form textarea {
      width: 100%;
      padding: 11px 14px;
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 10px;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
      -webkit-appearance: none;
      appearance: none;
      box-sizing: border-box;
    }
 
    .ffk-enquiry-box .wpcf7-form input::placeholder,
    .ffk-enquiry-box .wpcf7-form textarea::placeholder {
      color: rgba(255,255,255,0.35);
    }
 
    .ffk-enquiry-box .wpcf7-form input:focus,
    .ffk-enquiry-box .wpcf7-form select:focus,
    .ffk-enquiry-box .wpcf7-form textarea:focus {
      border-color: var(--lime);
      background: rgba(255,255,255,0.13);
    }
 
    .ffk-enquiry-box .wpcf7-form select option {
      background: #1a3d20;
      color: #fff;
    }
 
    .ffk-enquiry-box .wpcf7-form textarea { resize: none; height: 80px; }
 
    .ffk-enquiry-box .wpcf7-form input[type="submit"] {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, var(--green), var(--lime));
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      letter-spacing: 0.3px;
      transition: opacity 0.15s, transform 0.15s;
      box-shadow: 0 6px 24px rgba(53,152,41,0.35);
    }
    .ffk-enquiry-box .wpcf7-form input[type="submit"]:hover { opacity: 0.9; transform: translateY(-1px); }
 
    /* CF7 validation */
    .ffk-enquiry-box .wpcf7-not-valid-tip {
      font-size: 12px;
      color: #ff8c6e;
      margin-top: 4px;
      display: block;
      font-family: 'DM Sans', sans-serif;
    }
    .ffk-enquiry-box .wpcf7-response-output {
      margin-top: 12px;
      padding: 10px 14px;
      border-radius: 8px;
      font-size: 13px;
      border: none !important;
      font-family: 'DM Sans', sans-serif;
    }
    .ffk-enquiry-box .wpcf7-mail-sent-ok {
      background: rgba(53,152,41,0.2);
      color: #a8e88a;
    }
    .ffk-enquiry-box .wpcf7-validation-errors,
    .ffk-enquiry-box .wpcf7-acceptance-missing {
      background: rgba(253,88,6,0.15);
      color: #ffb38a;
    }
 
    .ffk-form-guarantee {
      display: flex;
      align-items: center;
      gap: 7px;
      justify-content: center;
      margin-top: 14px;
      font-size: 12px;
      color: rgba(255,255,255,0.45);
      font-family: 'DM Sans', sans-serif;
    }
 
    /* ANIMATIONS */
    @keyframes ffk-fadeup {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    /* RESPONSIVE */
    @media (max-width: 900px) {
      .ffk-row { flex-direction: column; gap: 32px; }
      .ffk-hero-content { flex: 1 1 100%; }
      .ffk-enquiry-box { flex: 1 1 100%; width: 100%; }
      .ffk-hero-inner { padding: 90px 0 50px; }
    }
    @media (max-width: 560px) {
      .ffk-hero-heading { font-size: 1.85rem; }
      .ffk-stat-strip { gap: 12px; flex-wrap: wrap; }
      .ffk-stat-number { font-size: 20px; }
      .ffk-enquiry-box { padding: 24px 18px; border-radius: 14px; }
      .ffk-btn-call, .ffk-btn-outline { width: 100%; justify-content: center; }
    }
    

 
    /* ── SECTION ── */
    .ffk-packages {
      padding: 70px 0 80px;
      background: var(--bg);
    }
 
    .ffk-packages-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
 
    /* ── SECTION HEADER ── */
    .ffk-section-header {
      text-align: center;
      margin-bottom: 50px;
    }
 
    .ffk-section-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(143,203,33,0.12);
      border: 1px solid rgba(143,203,33,0.35);
      color: var(--green);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 14px;
    }
 
    .ffk-section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: var(--dark);
      line-height: 1.2;
    }
 
    .ffk-section-title span {
      background: linear-gradient(90deg, var(--orange), #ffb300);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
 
    .ffk-section-line {
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--orange), var(--lime));
      border-radius: 10px;
      margin: 16px auto 0;
    }
 
    /* ── GRID ── */
    .ffk-packages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
 
    /* ── CARD ── */
    .ffk-pkg-card {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .ffk-pkg-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.10);
    }
 
    /* IMAGE */
    .ffk-pkg-img {
      position: relative;
      overflow: hidden;
      /*height: 210px;*/
      flex-shrink: 0;
    }
    .ffk-pkg-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .ffk-pkg-card:hover .ffk-pkg-img img { transform: scale(1.06); }
 
    /* OFF BADGE */
    .ffk-off-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--orange);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 100px;
      letter-spacing: 0.4px;
    }
 
    /* RATING CHIP */
    .ffk-rating-chip {
      position: absolute;
      top: 14px;
      right: 14px;
      background: rgba(0,0,0,0.55);
      backdrop-filter: blur(6px);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 100px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .ffk-rating-chip i { color: #ffd234; font-size: 11px; }
 
    /* BODY */
    .ffk-pkg-body {
      padding: 20px 20px 0;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
 
    .ffk-pkg-title {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 12px;
      line-height: 1.35;
    }
 
    /* META ROW */
    .ffk-pkg-meta {
      display: flex;
      gap: 16px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }
    .ffk-meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--muted);
      font-weight: 500;
    }
    .ffk-meta-item i {
      color: var(--green);
      font-size: 13px;
      width: 14px;
      text-align: center;
    }
 
    /* DESCRIPTION */
    .ffk-pkg-desc {
      font-size: 13px;
      color: #777;
      line-height: 1.65;
      margin-bottom: 14px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .ffk-pkg-desc p { margin: 0; }
 
    /* PRICE ROW */
    .ffk-price-row {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 16px;
      padding: 12px 14px;
      background: #f7f9f4;
      border-radius: 10px;
      border: 1px solid var(--border);
    }
    .ffk-price-cut {
      font-size: 14px;
      color: #bbb;
      text-decoration: line-through;
      font-weight: 500;
    }
    .ffk-price-main {
      font-size: 22px;
      font-weight: 700;
      color: var(--green);
      font-family: 'Playfair Display', serif;
    }
    .ffk-price-pp {
      font-size: 12px;
      color: var(--muted);
      font-weight: 500;
    }
 
    /* AMENITIES */
    .ffk-amenities {
      display: flex;
      justify-content: space-between;
      padding: 14px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      margin-bottom: 18px;
    }
    .ffk-amenity {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }
    .ffk-amenity-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(143,203,33,0.1);
      border: 1px solid rgba(143,203,33,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .ffk-amenity-icon i {
      color: var(--green);
      font-size: 14px;
    }
    .ffk-amenity p {
      font-size: 11px;
      font-weight: 600;
      color: var(--muted);
      text-align: center;
    }
 /* ── SHORT ITINERARY ── */
.short-itenary ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.short-itenary ul li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(53,152,41,0.08);
  border: 1px solid rgba(53,152,41,0.22);
  color: #2a7a20;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}

.short-itenary ul li i {
  color: #359829;
  font-size: 11px;
}
    /* ACTION BUTTONS */
    .ffk-pkg-actions {
      display: flex;
      gap: 10px;
      padding: 0 0 10px;
    }
    .ffk-btn-call {
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 11px 16px;
      background: transparent;
      border: 1.5px solid var(--orange);
      color: var(--orange);
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 700;
      border-radius: 10px;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
    }
    .ffk-btn-call:hover {
      background: var(--orange);
      color: #fff;
    }
    .ffk-btn-quote {
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 11px 16px;
      background: linear-gradient(135deg, var(--green), var(--lime));
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 700;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      transition: opacity 0.15s, transform 0.1s;
      box-shadow: 0 4px 14px rgba(53,152,41,0.3);
    }
    .ffk-btn-quote:hover { opacity: 0.9; transform: translateY(-1px); }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      .ffk-packages-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    }
    @media (max-width: 580px) {
      .ffk-packages-grid { grid-template-columns: 1fr; gap: 18px; }
      .ffk-pkg-img { height: 200px; }
    }
    
    .home4_section_area2 {
  padding: 70px 0 80px;
  background: #f7f9f4;
  font-family: 'DM Sans', sans-serif;
}
 
/* SECTION TITLE */
.home4_section_area2 .centertitle {
  text-align: center;
  margin-bottom: 50px;
}
 
.home4_section_area2 .centertitle h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.3px;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
 
.home4_section_area2 .centertitle h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FD5806, #8FCB21);
  border-radius: 10px;
}
 
/* SERVICE CARD */
.home4_section_area2 .services-div {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 18px;
  padding: 32px 24px 28px;
  text-align: center;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
 
.home4_section_area2 .services-div::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FD5806, #8FCB21, #359829);
  opacity: 0;
  transition: opacity 0.25s;
}
 
.home4_section_area2 .services-div:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.09);
  border-color: #d0e8c0;
}
 
.home4_section_area2 .services-div:hover::before {
  opacity: 1;
}
 
/* ICON / THUMBNAIL */
.home4_section_area2 .services-div img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  margin: 0 auto 20px;
  padding: 16px;
  background: rgba(143,203,33,0.10);
  border: 1.5px solid rgba(143,203,33,0.25);
  border-radius: 18px;
  transition: background 0.2s, transform 0.2s;
}
 
.home4_section_area2 .services-div:hover img {
  background: rgba(253,88,6,0.08);
  border-color: rgba(253,88,6,0.25);
  transform: scale(1.08);
}
 
/* TEXT */
.home4_section_area2 .recommended-description h5 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.3;
}
 
.home4_section_area2 .recommended-description p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin: 0;
}
 
/* RESPONSIVE */
@media (max-width: 767px) {
  .home4_section_area2 {
    padding: 50px 0 60px;
  }
  .home4_section_area2 .services-div {
    padding: 24px 18px 22px;
    margin-bottom: 16px;
  }
  .home4_section_area2 .services-div img {
    width: 60px;
    height: 60px;
  }
}

.about-section .bg-line {
  position: absolute;
  display: block;
  border-radius: 50%;
  border: 1.5px solid rgba(143,203,33,0.12);
  pointer-events: none;
  animation: ffk-spin 18s linear infinite;
}
 
.about-section .line-1 {
  width: 500px;
  height: 500px;
  top: -160px;
  right: -140px;
  animation-duration: 22s;
}
 
.about-section .line-2 {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: -80px;
  border-color: rgba(253,88,6,0.10);
  animation-duration: 16s;
  animation-direction: reverse;
}
 
.about-section .line-3 {
  width: 180px;
  height: 180px;
  top: 40%;
  left: 42%;
  border-color: rgba(143,203,33,0.08);
  animation-duration: 12s;
}
 
@keyframes ffk-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
 
/* ── IMAGE SIDE ── */
.about-section .about-img {
  position: relative;
}
 
.about-section .about-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}
 
.about-section .about-img img:hover {
  transform: scale(1.02);
}
 
/* decorative accent border behind image */
.about-section .about-img::before {
  content: '';
  position: absolute;
  inset: -10px -10px 10px 10px;
  border: 2px solid rgba(143,203,33,0.30);
  border-radius: 24px;
  z-index: 0;
}
 
/* orange dot accent */
.about-section .about-img::after {
  content: '';
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(253,88,6,0.35) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
 
/* ── CONTENT SIDE ── */
.about-section .about-text {
  color: #fff;
  padding-left: 20px;
}
 
.about-section .small-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253,88,6,0.15);
  border: 1px solid rgba(253,88,6,0.4);
  color: #ffb38a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
 
.about-section .small-title::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FD5806;
  display: inline-block;
  animation: ffk-pulse 1.4s ease-in-out infinite;
}
 

 
.about-section .about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #000;
  line-height: 1.25;
  margin-bottom: 18px;
}
 
/* gradient word highlight — wrap key words in <span> inside title if desired */
.about-section .about-title span {
  background: linear-gradient(90deg, #FD5806, #ffb300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
 
/* content paragraphs from WP */
.about-section .about-content {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
 
.about-section .about-content p {
  margin-bottom: 12px;
  color:#000;
}
 
.about-section .about-content ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 12px;
}
 
.about-section .about-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 8px;
  padding-left: 4px;
}
 
.about-section .about-content ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8FCB21;
  flex-shrink: 0;
  margin-top: 6px;
}
 
/* ── CALL BUTTON ── */
.about-section .call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: linear-gradient(135deg, #FD5806, #e04a00);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(253,88,6,0.40);
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.2px;
}
 
.about-section .call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(253,88,6,0.55);
  color: #fff;
}
 
/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .about-section {
    padding: 60px 0;
  }
 
  .about-section .about-text {
    /*padding-left: 0;*/
    margin-top: 12px;
  }
 
  .about-section .about-img::before {
    display: none;
  }
 
  .about-section .about-img::after {
    display: none;
  }
 
  .about-section .call-btn {
    width: 100%;
    justify-content: center;
  }
}

.reviews-section {
  padding: 70px 0 80px;
  font-family: 'DM Sans', sans-serif;
  position: relative;
  overflow: hidden;
}
 
.bgcolor3a {
  background: #f7f9f4;
}
 
/* subtle bg decoration */
.reviews-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143,203,33,0.10) 0%, transparent 70%);
  pointer-events: none;
}
 
.reviews-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,88,6,0.08) 0%, transparent 70%);
  pointer-events: none;
}
 
/* ── SECTION TITLE ── */
.reviews-section .centertitle {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
 
.reviews-section .centertitle h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a1a1a;
  display: inline-block;
  position: relative;
  padding-bottom: 16px;
}
 
.reviews-section .centertitle h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FD5806, #8FCB21);
  border-radius: 10px;
}
 
/* ── OWL CAROUSEL WRAPPER ── */
.reviews-section .owl-carousel .owl-item {
  padding: 8px 10px;
}
 
/* ── REVIEW CARD (targets common owl item structure) ── */
.reviews-section .owl-carousel .item,
.reviews-section .owl-carousel > div {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
 
.reviews-section .owl-carousel .item:hover,
.reviews-section .owl-carousel > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
}
 
/* bottom accent bar on hover */
.reviews-section .owl-carousel .item::after,
.reviews-section .owl-carousel > div::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FD5806, #8FCB21, #359829);
  opacity: 0;
  transition: opacity 0.25s;
}
 
.reviews-section .owl-carousel .item:hover::after,
.reviews-section .owl-carousel > div:hover::after {
  opacity: 1;
}
 
/* ── QUOTE MARK ── */
.reviews-section .owl-carousel .item::before,
.reviews-section .owl-carousel > div::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: rgba(143,203,33,0.18);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
}
 
/* ── STARS ── */
.reviews-section .owl-carousel .item .stars,
.reviews-section .star-rating,
.reviews-section [class*="star"] {
  color: #ffd234;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  display: block;
}
 
/* ── REVIEW TEXT ── */
.reviews-section .owl-carousel .item p,
.reviews-section .owl-carousel .item .review-text,
.reviews-section .owl-carousel .item .content {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  margin-bottom: 18px;
}
 
/* ── REVIEWER NAME / META ── */
.reviews-section .owl-carousel .item h5,
.reviews-section .owl-carousel .item .reviewer-name,
.reviews-section .owl-carousel .item strong,
.reviews-section .owl-carousel .item .name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 3px;
}
 
.reviews-section .owl-carousel .item span,
.reviews-section .owl-carousel .item .reviewer-location,
.reviews-section .owl-carousel .item .location {
  font-size: 12px;
  color: #aaa;
  font-weight: 500;
}
 
/* ── OWL NAV BUTTONS ── */
.reviews-section .owl-nav button {
  background: #fff !important;
  border: 1.5px solid #eaeaea !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  color: #359829 !important;
  font-size: 18px !important;
  transition: background 0.15s, border-color 0.15s !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}
 
.reviews-section .owl-nav button:hover {
  background: #359829 !important;
  border-color: #359829 !important;
  color: #fff !important;
}
 
/* ── OWL DOTS ── */
.reviews-section .owl-dots {
  text-align: center;
  margin-top: 20px;
}
 
.reviews-section .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background: #d0e8c0;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
  transition: background 0.2s, width 0.2s;
}
 
.reviews-section .owl-dots .owl-dot.active span {
  background: #FD5806;
  width: 24px;
  border-radius: 10px;
}
 
/* spacing between the two carousels */
.reviews-section .col-12.mb-4 {
  margin-bottom: 32px !important;
}
 
/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .reviews-section {
    padding: 50px 0 60px;
  }
 
  .reviews-section .owl-carousel .item,
  .reviews-section .owl-carousel > div {
    padding: 22px 18px;
  }
}

/* ── KEYWORDS SECTION ── */

.ffk-keywords-section {
  padding: 50px 0;
  background: #fff;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
  position: relative;
}

.ffk-keywords-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FD5806, #8FCB21, #359829);
}

/* ── WRAPPER ── */
.ffk-keywords-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── KEYWORD PILL ── */
.ffk-keyword-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #f7f9f4;
  border: 1.5px solid #d0e8c0;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #2a7a20;
  cursor: default;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  position: relative;
}

.ffk-keyword-item::before {
  content: '\f3c5';               /* fa-map-marker-alt */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  color: #FD5806;
}

.ffk-keyword-item:hover {
  background: #359829;
  border-color: #359829;
  color: #fff;
  transform: translateY(-2px);
}

.ffk-keyword-item:hover::before {
  color: #fff;
}

/* alternate pill color every 3rd item */
.ffk-keyword-item:nth-child(3n+2) {
  background: #fff4ee;
  border-color: rgba(253,88,6,0.30);
  color: #c94300;
}

.ffk-keyword-item:nth-child(3n+2)::before {
  color: #FD5806;
}

.ffk-keyword-item:nth-child(3n+2):hover {
  background: #FD5806;
  border-color: #FD5806;
  color: #fff;
}

.ffk-keyword-item:nth-child(3n) {
  background: rgba(143,203,33,0.10);
  border-color: rgba(143,203,33,0.35);
  color: #5a8a10;
}

.ffk-keyword-item:nth-child(3n):hover {
  background: #8FCB21;
  border-color: #8FCB21;
  color: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 576px) {
  .ffk-keywords-section {
    padding: 36px 0;
  }

  .ffk-keyword-item {
    font-size: 12px;
    padding: 8px 14px;
  }
}

.footer-top {
  background-color: var(--dark);
  color: #ccc;
  padding: 60px 30px 0;
  font-family: 'Segoe UI', sans-serif;
}

/* ── Section Headings ── */
.footer-heading {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

/* ── Contact Block ── */
.footer-col .footer-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-col .footer-line i {
  color: var(--orange);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-col .footer-text,
.footer-col .footer-text * {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ── Important Links ── */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
  padding-left: 14px;
  position: relative;
}

.footer-links-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--lime);
}

.footer-links {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links:hover {
  color: var(--orange);
  padding-left: 4px;
}

/* ── Social Icons ── */
.social-network {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-network li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: #bbb;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.social-network li a:hover {
  background-color: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* Per-icon accent colors on hover (optional) */
.icoFacebook:hover  { background-color: #3b5998 !important; border-color: #3b5998 !important; }
.icoInstagram:hover { background-color: #e1306c !important; border-color: #e1306c !important; }
.icoGoogle:hover    { background-color: #dd4b39 !important; border-color: #dd4b39 !important; }
.icoLinkedin:hover  { background-color: #0077b5 !important; border-color: #0077b5 !important; }

/* ── Footer Bottom Bar ── */
.footer-bottom {
  margin-top: 40px;
  padding: 16px 30px;
  background-color: rgba(0,0,0,0.35);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom .template-name {
  color: var(--lime);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .footer-top {
    padding: 40px 20px 0;
  }

  

  .social-network {
    justify-content: left !important;
  }

  .footer-links-list li {
    padding-left: 0;
  }

  .footer-links-list li::before {
    display: none;
  }
}

.footer{
    background:var(--dark);
}