body{
	
}

img{
    max-width:100%;
}

.header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
}



.header-transparent a,
.header-transparent .btn {
    color: #000;
    /*border:1px solid #4296BC;*/
}

.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;
}

/* TEXT COLOR CHANGE */
.water-btn:hover {
    color: #fff !important;
}

/* Light Button */
.water-light {
    color: #000;
    background: #fff;
    border: 2px solid #fff;
}

/* Green Button */
.water-green {
    color: #fff;
    background: #4296BC;
    border: 2px solid #469FB8;
}

/* Green hover water */
.water-green::before {
    background:#B5CD65;
}

/* Light hover water */
.water-light::before {
    background:#B5CD65;
}
\.hero-text {
    max-width: 620px;
}

/* 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;
}

/* 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;
}

/* IMAGE */
.services-div img {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: block;
    transition: all 0.4s ease;
}

/* TEXT */
.recommended-description h5 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.recommended-description p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    max-width: 260px;
    margin: 0 auto;
}

/* HOVER EFFECTS */
.services-div:hover {
    transform: translateY(-8px);
}

/* underline grows */
.services-div:hover::before {
    width: 70px;
    background: #1a7f5a;
}

/* glow appears */
.services-div:hover::after {
    width: 160px;
    height: 160px;
    opacity: 1;
}

/* image pop */
.services-div:hover img {
    transform: translateY(-6px) scale(1.08);
}

/* title color */
.services-div:hover h5 {
    color: #1a7f5a;
}

/* MOBILE TUNING */
@media (max-width: 767px) {
    .services-div {
        padding: 25px 15px;
    }

    .services-div::after {
        display: none;
    }
}

.home4_section_area2{
    padding:70px 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;
    }
}

/* Section wrapper relative for background */
.home4_section_area2 {
    position: relative;
    padding: 70px 0;
    overflow: hidden; /* hide shapes overflow */
    background: #f9fafb;
}

/* COMMON SHAPE STYLE */
.home4_section_area2 .bg-shape {
    position: absolute;
    border-radius: 50%; /* circle by default */
    opacity: 0.15;
    z-index: 0; /* behind content */
    animation: float 20s linear infinite;
}

/* FLOATING ANIMATION */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* DIFFERENT SHAPES */
.bg-shape.shape1 {
    width: 100px;
    height: 100px;
    background: #1a7f5a;
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}

.bg-shape.shape2 {
    width: 150px;
    height: 150px;
    background: #e0f2eb;
    top: 50%;
    left: 80%;
    animation-duration: 30s;
}

.bg-shape.shape3 {
    width: 80px;
    height: 80px;
    background: #1a7f5a;
    top: 70%;
    left: 30%;
    animation-duration: 22s;
}

.bg-shape.shape4 {
    width: 120px;
    height: 120px;
    background: #e0f2eb;
    top: 20%;
    left: 60%;
    animation-duration: 28s;
}

/* Ensure content is above shapes */
.home4_section_area2 .container,
.home4_section_area2 .row {
    position: relative;
    z-index: 1;
}

/* SECTION TITLE */
.offerpackage h1 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111;
}

/* PACKAGE CARD */
.offr {
    margin-bottom: 30px;
}

.fblock_thumb {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 15px;
    position: relative;
    min-height:635px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fblock_thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* IMAGE */
.fblock_thumb img {
    width: 100%;
    border-radius: 15px 15px 0 0;
    object-fit: cover;
}

/* DISCOUNT BADGE */
.offfmy {
    position: absolute;
    top: 15px;
    left: 15px;
    background:#4195BB;
    color: #fff;
    padding: 5px 12px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 14px;
}

/* TITLE */
.fblock_thumb h6 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 10px 0;
    color: #111;
}

/* RATINGS */
.artting {
    font-size: 14px;
    color: #4195BB;
    font-weight: 600;
}

.artting .red {
    color: #f39c12;
}

/* PRICE */
.artting2 {
    text-align: right;
    font-size: 14px;
}

.artting2 .cut {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.artting2 .peradult {
    font-weight: 600;
    color: #F16026;
}

/* CLOCK / LOCATION DETAILS */
.clock-ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    font-size: 13px;
    margin-bottom: 15px;
}

.clock-ul li p {
    margin: 0;
    display: flex;
    align-items: center;
    color: #555;
}

.clock-ul li p i {
    color: #4195BB;
    margin-right: 5px;
}

/* FACILITY ICONS */
.facilit-icon {
    text-align: center;
    margin-top: 10px;
}

.facilit-icon i {
    font-size: 20px;
    color: #BACE64;
    margin-bottom: 5px;
}

.facilit-icon p {
    font-size: 13px;
    margin: 0;
    color: #555;
}

/* BUTTON */
.fblock_thumb button {
    width: 100%;
    background: #BACE64;
    color: #fff;
    padding: 10px 0;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.fblock_thumb button:hover {
    background: #159153;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .clock-ul {
        flex-direction: column;
        gap: 8px;
    }

    .artting2 {
        text-align: left;
        margin-top: 5px;
    }

    .offr {
        margin-bottom: 20px;
    }
}




.about-section {
    background: linear-gradient(
        rgba(88, 170, 60, 0.35),
        rgba(88, 170, 60, 0.35)
    ),
    url('/wp-content/uploads/2024/01/kashmir-bg.jpg') center/cover no-repeat;
    min-height: 520px;
}

/* TEXT */
.about-text {
    padding-left: 30px;
}

.small-title {
    font-style: italic;
    font-size: 16px;
    opacity: 0.9;
    color:#000;
}

.about-title {
    font-size: 36px;
     color:#000;
    font-weight: 700;
    line-height: 1.2;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
     color:#000;
    opacity: 0.95;
}

/* BUTTON */
.call-btn {
    background: #fff;
    color: #4c8f2f;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.call-btn:hover {
    background: #2f6f1f;
    color: #fff;
}

/* IMAGE */
.about-img img {
    border-radius: 24px;
}

/* ===== ANIMATED DOT LINES ===== */
.bg-line {
    position: absolute;
    border: 2px dashed rgba(255,255,255,0.4);
    border-radius: 50%;
    animation: floatLines 12s linear infinite;
}

.line-1 {
    width: 220px;
    height: 220px;
    top: 40px;
    left: 60px;
}

.line-2 {
    width: 320px;
    height: 320px;
    bottom: 30px;
    right: 120px;
    animation-duration: 16s;
}

.line-3 {
    width: 160px;
    height: 160px;
    top: 120px;
    right: 60px;
    animation-duration: 10s;
}

@keyframes floatLines {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.9;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.6;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .kh-info-icon{
        display:none !important;
    }
    .about-title {
        font-size: 28px;
    }
    .about-text {
        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;
    }
}

/* =========================
   FOOTER BASE
========================= */
.footer {
    position: relative;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    background-size: 300% 300%;
    animation: footerGradient 12s ease infinite;
    color: #eaeaea;
    overflow: hidden;
    font-size: 15px;
}

/* Animated Gradient */
@keyframes footerGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Light Dots */
.footer::before,
.footer::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatGlow 8s infinite alternate ease-in-out;
}

.footer::before {
    top: -100px;
    left: -100px;
}

.footer::after {
    bottom: -100px;
    right: -100px;
    animation-delay: 4s;
}

@keyframes floatGlow {
    from { transform: translateY(0); }
    to { transform: translateY(40px); }
}

/* =========================
   FOOTER TOP
========================= */
.footer-top {
    padding: 70px 0 40px;
    position: relative;
    z-index: 2;
}

/* Headings */
.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #F16026;
    position: absolute;
    left: 0;
    bottom: 0;
}

/* Text & Icons */
.footer p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer p i {
    color: #F16026;
    margin-right: 8px;
}

/* =========================
   FOOTER LINKS
========================= */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links {
    color: #dcdcdc;
    text-decoration: none;
    position: relative;
    padding-left: 18px;
    transition: all 0.3s ease;
}

/* Arrow Before Link */
.footer-links::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #F16026;
    transition: transform 0.3s ease;
}

.footer-links:hover {
    color: #ffffff;
    padding-left: 24px;
}

.footer-links:hover::before {
    transform: translateX(4px);
}

/* =========================
   SOCIAL ICONS
========================= */
.social-network {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 12px;
}

.social-network li a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 18px;
    transition: all 0.4s ease;
}

/* Hover Glow */
.social-network li a:hover {
    background: #3cb371;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(60,179,113,0.6);
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    background: rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

.template-name {
    color: #F16026;
    font-weight: 600;
}

/* =========================
   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 0 30px;
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-network {
        justify-content: center;
    }
}
/* 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;
    }
}

.package-actions .btn {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 30px;
    font-weight: 600;
}

/* Call button */
.btn-call {
    background: #4195BB;
    color: #fff;
    border: none;
}

/* Quote button */
.btn-quote {
    background: #ff6a00;
    color: #fff;
    border: none;
}

/* Hover */
.btn-call:hover,
.btn-quote:hover {
    opacity: 0.9;
}
@media (max-width: 767px) {

    /* Ratings + Price in one row */
    .fblock_thumb > .row {
        display: flex;
        flex-wrap: nowrap;
    }

    .fblock_thumb > .row > div {
        width: 50%;
    }

    .artting {
        font-size: 13px;
    }

    .artting2 {
        text-align: right;
        font-size: 13px;
    }
}

.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;
}

.footer p a{
    color:#fff;
}

.footer-line{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-line i{
    min-width: 18px;
    margin-top: 4px;
}

.footer-text *{
    margin: 0;
    padding: 0;
}
.innerproducts{
    padding:140px 0;
}

.footer-text a{
    color:#fff;
}






/* Floating buttons */
.kf-float-btns {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}
.kf-float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .2s;
}
.kf-float-btn:hover { transform: scale(1.1); }
.kf-float-call { background: #0051B8; }
.kf-float-wa   { background: #25D366; }


 
.kh-wrap {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: #fff;
    width: 100%;
    position: fixed;
    z-index: 999;
}
 
/* ══════════════════════════════════════════════
   TOP BAR (desktop only)
   ══════════════════════════════════════════════ */
.kh-topbar {
    background: #017ED2;
    display: none;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    padding: 6px 40px;
}
 
.kh-topbar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #093B59;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.2s;
}
 
.kh-topbar-item i { font-size: 13px; color: #093B59; }
.kh-topbar-item:hover { opacity: 0.78; }
 
.kh-topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(1, 38, 80, 0.35);
}
 
/* ══════════════════════════════════════════════
   MAIN HEADER ROW
   ══════════════════════════════════════════════ */
.kh-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    border-bottom: 1px solid rgba(206, 155, 47, 0.25);
}
 
/* ── Row top (mobile wrapper for logo + book) ── */
.kh-row-top {
    display: flex;
    align-items: center;
}
 
/* ── Logo ── */
.kh-logo a { display: block; text-decoration: none; }
 
/* FIX: white background behind logo so it shows on dark header */
.kh-logo img {
    max-height: 90px;
    width: auto;
    display: block;
    background: #fff;
    padding: 4px 8px;
    border-radius: 6px;
}
 
/* ── Ornament ── */
.kh-ornament {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
 
.kh-ornament-diamond {
    width: 10px;
    height: 10px;
    background: #017ED2;
    transform: rotate(45deg);
}
 
.kh-ornament-line {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(206,155,47,0.5), transparent);
}
 
/* ══════════════════════════════════════════════
   RIGHT: Info + Book
   ══════════════════════════════════════════════ */
.kh-right {
    display: flex;
    align-items: center;
    gap: 24px;
}
 
.kh-info {
    display: flex;
    align-items: center;
    gap: 24px;
}
 
.kh-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
 
.kh-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #02388B;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(206, 155, 47, 0.07);
    transition: background 0.2s, border-color 0.2s;
}
 
.kh-info-item:hover .kh-info-icon {
    background: rgba(206, 155, 47, 0.18);
    border-color: #017ED2;
}
 
.kh-info-icon i { font-size: 15px; color: #017ED2; }
 
.kh-info-text span {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 1px;
}
 
.kh-info-text a {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #017ED2;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}
 
/*.kh-info-item:hover .kh-info-text a { color: #fff; }*/
 
.kh-divider {
    width: 1px;
    height: 32px;
    background: rgba(206, 155, 47, 0.22);
}
 
/* ══════════════════════════════════════════════
   BOOK NOW BUTTON
   ══════════════════════════════════════════════ */
.kh-book {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 24px;
    background: transparent;
    border: 1.5px solid #017ED2;
    color: #017ED2;
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.25s;
    flex-shrink: 0;
}
 
.kh-book::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #017ED2;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}
 
.kh-book:hover::before { transform: scaleX(1); }
.kh-book:hover { color: #093B59; }
.kh-book i, .kh-book span { position: relative; z-index: 1; }
.kh-book i { font-size: 15px; }
 
/* FIX: mobile book only shows on mobile, desktop book only on desktop */
.kh-book-mobile  { display: none; }
.kh-book-desktop { display: inline-flex; }
 
/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {
    .kh-topbar        { display: none; }
    .kh-inner         { padding: 12px 20px; flex-wrap: wrap; gap: 10px; }
    .kh-row-top       { justify-content: space-between; width: 100%; }
    .kh-ornament      { display: none; }
    .kh-right         { width: 100%; justify-content: center; }
    .kh-info          { justify-content: center; gap: 16px; }
    .kh-logo img      { max-height: 52px; }
 
    /* FIX: swap book visibility on mobile */
    .kh-book-mobile   { display: inline-flex; padding: 8px 14px; font-size: 10px; }
    .kh-book-desktop  { display: none; }
}
 
@media (max-width: 480px) {
    .kh-info    {  align-items: flex-start; gap: 26px; }
    .kh-divider { display: none; }
    .kh-right   { justify-content: flex-start; }
}

.kh-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}
 
/* Background image */
.kh-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
 
.kh-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
 
/* Dark base overlay */
.kh-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(1, 38, 80, 0.82) 0%,
        rgba(1, 38, 80, 0.65) 50%,
        rgba(1, 38, 80, 0.25) 100%
    );
}
 
/* Left edge vignette for text legibility */
.kh-hero__overlay2 {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        90deg,
        rgba(1, 38, 80, 0.55) 0%,
        transparent 60%
    );
}
 
/* Inner layout */
.kh-hero__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 0 50px;
}
 
.kh-hero__row {
    display: flex;
    align-items: center;
    gap: 48px;
    min-height: 100vh;
}
 
/* ══════════════════════════════════════════════
   LEFT — PREMIUM TEXT BLOCK
   ══════════════════════════════════════════════ */
.kh-hero__left {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
 
/* Eyebrow line */
.kh-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    /*margin-bottom: 28px;*/
}
 
.kh-eyebrow__line {
    width: 40px;
    height: 1px;
    background: #017ED2;
    flex-shrink: 0;
}
 
.kh-eyebrow__text {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #017ED2;
}
 
/* Main headline */
.kh-hero__title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(36px, 5vw, 46px);
    margin:0;
    font-weight: 700;
    line-height: 1.08;
    color: #ffffff;
    /*margin: 0 0 10px 0;*/
    letter-spacing: -0.01em;
}
 
/* Italic accent line */
.kh-hero__title em {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: #017ED2;
    font-size: clamp(32px, 4.2vw, 54px);
    line-height: 1.15;
}
 
/* Thin gold rule under title */
.kh-title-rule {
    width: 64px;
    height: 2px;
    background: #017ED2;
    margin: 10px 0 14px 0;
}
 
/* Subtext — one elegant sentence */
.kh-hero__sub {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    max-width: 440px;
    /*margin: 0 0 36px 0;*/
    font-style: italic;
}
 
/* Stat row */
.kh-stats {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 10px;
    border-left: 1px solid rgba(206, 155, 47, 0.35);
}
 
.kh-stat {
    padding: 6px 28px 6px 20px;
    border-right: 1px solid rgba(206, 155, 47, 0.25);
}
 
.kh-stat:last-child { border-right: none; }
 
.kh-stat__num {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 30px;
    font-weight: 700;
    color: #017ED2;
    line-height: 1;
    display: block;
}
 
.kh-stat__label {
    font-family: 'Arial', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-top: 4px;
}
 
/* Price pill */
.kh-price-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background: rgba(206, 155, 47, 0.12);
    border: 1px solid #02388B;
    padding: 10px 20px;
    margin-bottom: 28px;
}
 
.kh-price-pill__from {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
}
 
.kh-price-pill__amount {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 700;
    color: #017ED2;
}
 
.kh-price-pill__per {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    color: rgba(237, 202, 118, 0.6);
}
 
/* CTA button */
.kh-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 32px;
    background: #017ED2;
    color: #093B59;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background 0.25s, color 0.25s;
    align-self: flex-start;
}
 
.kh-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #093B59;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}
 
.kh-cta:hover::before { transform: scaleX(1); }
.kh-cta:hover { color: #017ED2; }
 
.kh-cta__icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
 
.kh-cta__icon i { font-size: 10px; color:#fff; }
.kh-cta__text { position: relative; z-index: 1;color:#fff; }
 
/* Trust strip */
.kh-trust-strip {
    display: flex;
    align-items: center;
    gap: 20px;
    /*margin-top: 28px;*/
    padding-top: 24px;
    border-top: 1px solid rgba(206, 155, 47, 0.18);
    flex-wrap: wrap;
}
 
.kh-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}
 
.kh-trust-item i { font-size: 13px; color: #017ED2; }
 
.kh-trust-sep {
    width: 3px;
    height: 3px;
    background: rgba(206, 155, 47, 0.35);
    border-radius: 50%;
    flex-shrink: 0;
}
 
/* ══════════════════════════════════════════════
   RIGHT — FORM
   ══════════════════════════════════════════════ */
.kh-form-wrap {
    padding:20px;
    flex: 0 0 420px;
    width: 420px;
        position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.32) 0%,
            rgba(255, 255, 255, 0.16) 35%,
            rgba(255, 255, 255, 0.08) 65%,
            rgba(255, 255, 255, 0.20) 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 22px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        inset 0 -1px 0 rgba(255, 255, 255, 0.12);

    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.kh-form-wrap label{
    color:#fff;
}

/* Premium glossy reflection */
.kh-form-wrap::before {
    content: "";
    position: absolute;
    top: -55%;
    left: -20%;
    width: 75%;
    height: 170%;

    background: linear-gradient(
        115deg,
        transparent 25%,
        rgba(255, 255, 255, 0.08) 40%,
        rgba(255, 255, 255, 0.42) 50%,
        rgba(255, 255, 255, 0.08) 60%,
        transparent 75%
    );

    transform: rotate(12deg);
    pointer-events: none;
}

/* Fine glossy edge */
.kh-form-wrap::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 21px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    pointer-events: none;
}
 
/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .kh-form-wrap { flex: 0 0 360px; width: 360px; }
    .kh-stat__num { font-size: 24px; }
}
 
@media (max-width: 900px) {
    .kh-hero__row {
        flex-direction: column;
        min-height: unset;
        padding: 100px 0 40px;
        gap: 36px;
    }
 
    .kh-hero__left { gap: 0; }
 
    .kh-form-wrap {
        flex: none;
        width: 100%;
    }
 
    .kh-hero__title { font-size: clamp(28px, 7vw, 44px); }
    .kh-hero__title em { font-size: clamp(24px, 6vw, 38px); }
 
    .kh-stats { flex-wrap: wrap; }
    .kh-stat { padding: 6px 20px 6px 16px; }
}
 
@media (max-width: 480px) {
    .kh-hero__inner { padding: 70px 0 40px; }
    .kh-stats { gap: 0; }
    .kh-trust-strip { gap: 12px; }
    .kh-trust-sep { display: none; }
    .kh-cta { width: 100%; justify-content: center; }
}

/* ============================================
   PACKAGES SECTION — Kashmir Tours
   Colors: #093B59 (navy), #017ED2 (gold), #017ED2 (light gold)
   ============================================ */

/* ---------- Section Wrapper ---------- */
.kp-section {
    background: #f7f5f0;
    padding: 80px 0;
}

/* ---------- Section Header ---------- */
.kp-head {
    text-align: center;
    margin-bottom: 52px;
}

.kp-head h1 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 700;
    color: #093B59;
    margin-bottom: 10px;
}

.kp-head p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* ---------- Card ---------- */
.kp-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(1, 38, 80, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.kp-card:hover {
    box-shadow: 0 6px 24px rgba(1, 38, 80, 0.15);
    transform: translateY(-3px);
}

/* ---------- Image ---------- */
.kp-img {
    position: relative;
    overflow: hidden;
}

.kp-img img {
    width: 100%;
    /*height: 210px;*/
    object-fit: cover;
    display: block;
}

/* OFF Badge */
.kp-off {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #017ED2;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* ---------- Short Itinerary Strip (inside card, below image) ---------- */
.short-itenary {
    background:#02388B;
    padding: 8px 14px;
}

.short-itenary ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
}

.short-itenary ul li {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.short-itenary ul li i {
    color: #017ED2;
    font-size: 10px;
}

/* ---------- Card Body ---------- */
.kp-body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Title */
.kp-title {
    font-family: 'Georgia', serif;
    font-size: 17px;
    font-weight: 700;
    color: #093B59;
    margin: 0 0 10px;
    line-height: 1.35;
}

/* Meta: duration + location */
.kp-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.kp-meta span {
    font-size: 12.5px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
}

.kp-meta i {
    color: #017ED2;
    font-size: 12px;
}

/* Rating + Price Row */
.kp-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.kp-rating {
    background: #02388B;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.kp-rating i {
    color: #fff;
    font-size: 11px;
}

.kp-prices {
    text-align: right;
}

.kp-cut {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    line-height: 1;
    margin-bottom: 2px;
}

.kp-price {
    font-size: 20px;
    font-weight: 800;
    color: #093B59;
    line-height: 1;
}

.kp-price sub {
    font-size: 11px;
    font-weight: 600;
    color: #555;
    vertical-align: baseline;
}

/* Description */
.kp-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}

.kp-desc p {
    margin: 0;
}

/* ---------- Amenities ---------- */
.kp-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.kp-am {
    background: #f0f4f8;
    border: 1px solid #dde5ee;
    color: #093B59;
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.kp-am i {
    color: #017ED2;
    font-size: 11px;
}

/* ---------- Action Buttons ---------- */
.kp-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.kp-btn-call {
    background: #02388B;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background 0.2s ease;
    flex: 1;
    justify-content: center;
}

.kp-btn-call:hover {
    background: #017ED2;
    color: #fff !important;
    text-decoration: none;
}

.kp-btn-call i {
    font-size: 12px;
}

.kp-btn-quote {
    background: transparent;
    border: 2px solid #093B59;
    color: #093B59;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.kp-btn-quote:hover {
    background: #093B59;
    color: #fff;
}

.kp-btn-quote i {
    font-size: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
    .kp-section {
        padding: 48px 0;
    }

    .kp-head h1 {
        font-size: 24px;
    }

    .kp-actions {
        flex-direction: column;
    }

    .kp-btn-call,
    .kp-btn-quote {
        width: 100%;
        justify-content: center;
    }

    .short-itenary ul {
        gap: 6px 10px;
    }
}

/* ---------- Section Eyebrow ---------- */
.kp-head__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 600;
    color: #017ED2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.kp-head__eyebrow-line {
    width: 32px;
    height: 1px;
    background: #017ED2;
}

.kp-head__eyebrow-text {
    font-family: Arial, sans-serif;
}

.kp-head p {
    font-size: 15px;
    color: #666;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   WHY WE ARE THE BEST — SECTION
   Colors: #093B59 (navy), #017ED2 (gold), #017ED2 (light gold)
   ============================================ */

.kw-section {
    background: linear-gradient(160deg, #093B59 0%, #01396e 60%, #093B59 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative background pattern */
.kw-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 60px solid rgba(206, 155, 47, 0.06);
    pointer-events: none;
}

.kw-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 50px solid rgba(237, 202, 118, 0.05);
    pointer-events: none;
}

/* ---------- Section Header ---------- */
.kw-head {
    text-align: center;
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
}

.kw-head h2 {
    font-family: 'Georgia', serif;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

/* Gold underline accent on heading */
.kw-head h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #017ED2, #017ED2);
    border-radius: 2px;
    margin: 12px auto 0;
}

.kw-head p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    letter-spacing: 0.3px;
}

/* ---------- Card ---------- */
.kw-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(206, 155, 47, 0.25);
    border-radius: 12px;
    padding: 32px 22px 28px;
    text-align: center;
    position: relative;
    z-index: 1;
    height: 100%;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.kw-card:hover {
    background: rgba(206, 155, 47, 0.08);
    border-color: #017ED2;
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Gold top-border glow on hover */
.kw-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #017ED2, transparent);
    border-radius: 0 0 2px 2px;
    transition: transform 0.3s ease;
}

.kw-card:hover::before {
    transform: translateX(-50%) scaleX(1);
}

/* ---------- Icon ---------- */
.kw-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: rgba(206, 155, 47, 0.12);
    border: 1.5px solid rgba(206, 155, 47, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.kw-card:hover .kw-icon {
    background: rgba(206, 155, 47, 0.22);
    border-color: #017ED2;
}

.kw-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    /* Make white/dark icons appear gold using filter */
    filter: brightness(0) saturate(100%) invert(68%) sepia(55%) saturate(500%) hue-rotate(5deg) brightness(95%);
}

/* ---------- Card Title ---------- */
.kw-card h5 {
    font-family: 'Georgia', serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.35;
}

/* ---------- Card Description ---------- */
.kw-card p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.7;
    margin: 0;
}

.kw-card p p {
    margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
    .kw-section {
        padding: 52px 0;
    }

    .kw-head h2 {
        font-size: 26px;
    }

    .kw-card {
        padding: 24px 16px 22px;
    }

    .kw-icon {
        width: 60px;
        height: 60px;
    }

    .kw-icon img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .kw-card h5 {
        font-size: 15px;
    }
}

/* ============================================
   ABOUT / OFFER SECTION — ka-section
   Colors: #093B59 (navy), #017ED2 (gold), #017ED2 (light gold)
   ============================================ */

.ka-section {
    background: #fff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* faint diagonal gold stripe in background */
.ka-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, #f7f5f0 0%, #eee9df 100%);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.ka-section .container {
    position: relative;
    z-index: 1;
}

/* ========== IMAGE SIDE ========== */
.ka-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.ka-img {
    width: 100%;
    /*height: 500px;*/
    object-fit: cover;
    border-radius: 4px 80px 4px 4px; /* signature corner cut */
    display: block;
    box-shadow: 16px 20px 48px rgba(1, 38, 80, 0.18);
}

/* Gold frame accent */
.ka-img-wrap::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    width: 60%;
    height: 60%;
    border: 3px solid #017ED2;
    border-radius: 4px 40px 4px 4px;
    z-index: -1;
    opacity: 0.55;
}

/* Experience badge */
.ka-img-badge {
    position: absolute;
    bottom: 30px;
    right: -18px;
    background: #093B59;
    color: #fff;
    border-radius: 10px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(1, 38, 80, 0.30);
    min-width: 110px;
    border: 2px solid rgba(206,155,47,0.4);
}

.ka-img-badge strong {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #017ED2;
    line-height: 1;
    font-family: 'Georgia', serif;
}

.ka-img-badge span {
    font-size: 11.5px;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
    display: block;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* ========== CONTENT SIDE ========== */
.ka-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #017ED2;
    margin-bottom: 14px;
}

.ka-small::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: #017ED2;
    border-radius: 2px;
}

.ka-title {
    font-family: 'Georgia', serif;
    font-size: 34px;
    font-weight: 700;
    color: #093B59;
    line-height: 1.3;
    margin-bottom: 18px;
}

.ka-content {
    font-size: 14.5px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 32px;
    border-left: 3px solid #017ED2;
    padding-left: 16px;
}

.ka-content p { margin: 0; }

/* ========== COUNTERS ========== */
.ka-counters {
    display: flex;
    gap: 0;
    margin-bottom: 36px;
    border: 1px solid #e4ddd0;
    border-radius: 10px;
    overflow: hidden;
}

.ka-counter {
    flex: 1;
    text-align: center;
    padding: 20px 12px;
    border-right: 1px solid #e4ddd0;
    background: #faf8f4;
    transition: background 0.25s ease;
}

.ka-counter:last-child {
    border-right: none;
}

.ka-counter:hover {
    background: #093B59;
}

.ka-counter:hover .ka-num,
.ka-counter:hover span {
    color: #017ED2;
}

.ka-counter:hover span {
    color: rgba(237,202,118,0.75);
}

.ka-num {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #093B59;
    font-family: 'Georgia', serif;
    line-height: 1;
    margin-bottom: 5px;
    transition: color 0.25s ease;
}

.ka-counter span {
    font-size: 11.5px;
    color: #888;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

/* ========== CTA BUTTON ========== */
.ka-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #017ED2;
    color: #fff !important;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 5px;
    text-decoration: none !important;
    box-shadow: 0 4px 18px rgba(206,155,47,0.35);
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.ka-cta:hover {
    background: #093B59;
    color: #017ED2 !important;
    box-shadow: 0 8px 28px rgba(1,38,80,0.25);
    transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .ka-section::before {
        display: none;
    }

    .ka-img {
        height: 380px;
        border-radius: 4px 50px 4px 4px;
    }

    .ka-img-badge {
        right: 10px;
        bottom: 20px;
    }

    .ka-title {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .ka-section {
        padding: 56px 0;
    }

    .ka-img {
        height: 280px;
        border-radius: 4px 30px 4px 4px;
    }

    .ka-img-wrap::before {
        display: none;
    }

    .ka-img-badge {
        right: 8px;
        bottom: 14px;
        padding: 12px 16px;
        min-width: 90px;
    }

    .ka-img-badge strong {
        font-size: 26px;
    }

    .ka-title {
        font-size: 22px;
    }

    .ka-num {
        font-size: 24px;
    }

    .ka-counter {
        padding: 14px 8px;
    }
}

.rv-section {
    background: linear-gradient(160deg, #093B59 0%, #01396e 55%, #093B59 100%);
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}
 
/* Ambient circles */
.rv-section::before,
.rv-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.rv-section::before {
    width: 400px; height: 400px;
    top: -120px; right: -100px;
    border: 70px solid rgba(206,155,47,0.05);
}
.rv-section::after {
    width: 280px; height: 280px;
    bottom: -80px; left: -80px;
    border: 50px solid rgba(237,202,118,0.04);
}
 
/* ========== HEADER ========== */
.rv-head {
    text-align: center;
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
}
 
.rv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #017ED2;
    margin-bottom: 14px;
}
 
.rv-eyebrow-line {
    display: inline-block;
    width: 30px;
    height: 1.5px;
    background: #017ED2;
    border-radius: 2px;
    opacity: 0.7;
}
 
.rv-head h2 {
    font-family: 'Georgia', serif;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
 
.rv-head p {
    font-size: 14.5px;
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
 
/* ========== SWIPER CONTAINER ========== */
.rv-swiper {
    position: relative;
    padding-bottom: 56px !important; /* space for pagination */
    z-index: 1;
}
 
/* ========== CARD ========== */
.rv-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(206,155,47,0.2);
    border-radius: 14px;
    padding: 32px 26px 28px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.3s ease, background 0.3s ease;
}
 
.rv-card:hover {
    border-color: rgba(206,155,47,0.55);
    background: rgba(206,155,47,0.06);
}
 
/* Large decorative quote */
.rv-quote {
    position: absolute;
    top: 14px;
    right: 22px;
    font-size: 80px;
    line-height: 1;
    color: rgba(206,155,47,0.18);
    font-family: 'Georgia', serif;
    pointer-events: none;
    user-select: none;
}
 
/* ========== STARS ========== */
.rv-stars {
    display: flex;
    gap: 4px;
}
 
.rv-stars i {
    color: #017ED2;
    font-size: 14px;
}
 
/* ========== REVIEW TEXT ========== */
.rv-text {
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    flex: 1;
}
 
.rv-text p { margin: 0; }
 
/* ========== PERSON ROW ========== */
.rv-person {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 6px;
    padding-top: 16px;
    border-top: 1px solid rgba(206,155,47,0.15);
}
 
.rv-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #017ED2;
    flex-shrink: 0;
}
 
.rv-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
 
.rv-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #017ED2;
    line-height: 1.3;
}
 
.rv-info span {
    font-size: 11.5px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.3px;
}
 
/* ========== NAVIGATION ARROWS ========== */
.rv-prev,
.rv-next {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #017ED2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: background 0.25s ease, transform 0.25s ease;
}
 
.rv-prev:hover,
.rv-next:hover {
    background: #017ED2;
    transform: translateY(-60%) scale(1.08);
}
 
.rv-prev { left: -18px; }
.rv-next { right: -18px; }
 
.rv-prev i,
.rv-next i {
    color: #093B59;
    font-size: 13px;
}
 
/* ========== PAGINATION DOTS ========== */
.rv-pagination {
    position: absolute;
    bottom: 0 !important;
    left: 0;
    right: 0;
    text-align: center;
}
 
.rv-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    opacity: 1;
    transition: background 0.25s ease, width 0.25s ease;
    border-radius: 4px;
}
 
.rv-pagination .swiper-pagination-bullet-active {
    background: #017ED2;
    width: 24px;
}
 
/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .rv-prev { left: 0; }
    .rv-next { right: 0; }
}
 
@media (max-width: 767px) {
    .rv-section { padding: 60px 0 70px; }
    .rv-head h2 { font-size: 26px; }
    .rv-prev, .rv-next { display: none; }
    .rv-card { padding: 24px 18px 22px; }
}

/* ============================================
   KEYWORDS / TAGS SECTION — ks-section
   Colors: #093B59 (navy), #017ED2 (gold), #017ED2 (light gold)
   ============================================ */

.ks-section {
    background: #f7f5f0;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle warm diagonal accent */
.ks-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(206,155,47,0.07) 0%, transparent 65%);
    pointer-events: none;
}

/* ========== SIDEBAR WRAPPER ========== */
.ks-sidebar {
    background: #fff;
    border-radius: 14px;
    padding: 36px 36px 32px;
    box-shadow: 0 4px 24px rgba(1,38,80,0.08);
    border: 1px solid rgba(1,38,80,0.07);
    position: relative;
    z-index: 1;
}

/* Gold left border accent */
.ks-sidebar::before {
    content: '';
    position: absolute;
    top: 24px; left: 0;
    width: 4px;
    height: calc(100% - 48px);
    background: linear-gradient(180deg, #017ED2, #017ED2, #017ED2);
    border-radius: 0 3px 3px 0;
}

/* ========== HEADER ========== */
.ks-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ede8de;
}

.ks-head i {
    width: 40px;
    height: 40px;
    background: #093B59;
    color: #017ED2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.ks-head h3 {
    font-family: 'Georgia', serif;
    font-size: 18px;
    font-weight: 700;
    color: #093B59;
    margin: 0;
}

/* ========== TAGS CLOUD ========== */
.ks-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ks-tag {
    display: inline-block;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #093B59;
    background: #f0f4f8;
    border: 1.5px solid #dde5ee;
    border-radius: 30px;
    cursor: default;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.2px;
}

.ks-tag:hover {
    background: #093B59;
    border-color: #093B59;
    color: #017ED2;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(1,38,80,0.18);
}

/* Alternate gold style for every 3rd tag */
.ks-tag:nth-child(3n+2) {
    background: rgba(206,155,47,0.08);
    border-color: rgba(206,155,47,0.35);
    color: #8a6510;
}

.ks-tag:nth-child(3n+2):hover {
    background: #017ED2;
    border-color: #017ED2;
    color: #093B59;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 767px) {
    .ks-section {
        padding: 40px 0;
    }

    .ks-sidebar {
        padding: 24px 20px 22px;
    }

    .ks-tag {
        font-size: 12px;
        padding: 6px 13px;
    }
}
 
 
 /* ============================================
   FOOTER — kf-footer
   Colors: #093B59 (navy), #017ED2 (gold), #017ED2 (light gold)
   ============================================ */

/* ========== WRAPPER ========== */
.kf-footer {
    font-family: Arial, sans-serif;
}

/* ========== TOP SECTION ========== */
.kf-top {
    background: linear-gradient(160deg, #011e40 0%, #093B59 60%, #01396e 100%);
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
}

/* Ambient glow */
.kf-top::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 380px; height: 380px;
    border-radius: 50%;
    border: 70px solid rgba(206,155,47,0.05);
    pointer-events: none;
}

/* ========== COLUMN HEADINGS ========== */
.kf-heading {
    font-family: 'Georgia', serif;
    font-size: 17px;
    font-weight: 700;
    color: #017ED2;
    margin-bottom: 22px;
    padding-bottom: 12px;
    position: relative;
}

.kf-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 36px; height: 2px;
    background: linear-gradient(90deg, #017ED2, #017ED2);
    border-radius: 2px;
}

/* ========== CONTACT ITEMS ========== */
.kf-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 16px;
}

.kf-contact-item i {
    width: 34px;
    height: 34px;
    background: rgba(206,155,47,0.12);
    border: 1px solid rgba(206,155,47,0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #017ED2;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

.kf-contact-text,
.kf-contact-text * {
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin: 0;
}

/* ========== LINKS ========== */
.kf-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kf-links li {
    margin-bottom: 11px;
    padding-left: 14px;
    position: relative;
}

.kf-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px; height: 5px;
    background: #017ED2;
    border-radius: 50%;
}

.kf-links li a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.kf-links li a:hover {
    color: #017ED2;
    padding-left: 4px;
}

/* ========== SOCIAL ========== */
.kf-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.kf-soc {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(206,155,47,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65) !important;
    font-size: 14px;
    text-decoration: none !important;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.kf-soc:hover {
    background: #017ED2;
    border-color: #017ED2;
    color: #093B59 !important;
    transform: translateY(-3px);
}

/* ========== BOTTOM BAR ========== */
.kf-bottom {
    background: #010f1f;
    padding: 16px 0;
    text-align: center;
    border-top: 1px solid rgba(206,155,47,0.15);
}

.kf-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.kf-brand {
    color: #017ED2;
    font-weight: 700;
}

/* ============================================
   POPUP MODAL
   ============================================ */

.travel-offer-modal .travel-modal-dialog {
    margin-top: 60px;
}

.travel-offer-modal .travel-modal-content {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

/* Header with BG image */
.travel-modal-header {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    padding: 48px 30px 40px;
    text-align: center;
    border-bottom: none;
}

.travel-modal-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(1,38,80,0.55) 0%, rgba(1,38,80,0.80) 100%);
}

.travel-modal-header > * { position: relative; z-index: 1; }

.travel-modal-close {
    position: absolute;
    top: 12px; right: 16px;
    color: #fff !important;
    opacity: 0.8;
    font-size: 22px;
    z-index: 2;
}

.travel-modal-close:hover { opacity: 1; }

.travel-modal-header h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.travel-modal-header h2 span {
    color: #017ED2;
}

.travel-modal-header p {
    font-size: 14px;
    color: rgba(255,255,255,0.80);
    margin: 0;
    letter-spacing: 0.5px;
}

/* Body */
.travel-modal-body {
    padding: 28px 28px 20px;
    background: #fff;
}

.travel-form-box h3 {
    font-family: 'Georgia', serif;
    font-size: 18px;
    font-weight: 700;
    color: #093B59;
    margin-bottom: 4px;
}

.travel-form-sub {
    font-size: 13px;
    color: #888;
    margin-bottom: 18px;
}

/* CF7 form styling */
.travel-modal-body .wpcf7-form input[type="text"],
.travel-modal-body .wpcf7-form input[type="email"],
.travel-modal-body .wpcf7-form input[type="tel"],
.travel-modal-body .wpcf7-form textarea,
.travel-modal-body .wpcf7-form select {
    width: 100%;
    border: 1.5px solid #dde5ee;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13.5px;
    color: #333;
    margin-bottom: 12px;
    outline: none;
    transition: border-color 0.2s ease;
}

.travel-modal-body .wpcf7-form input:focus,
.travel-modal-body .wpcf7-form textarea:focus {
    border-color: #017ED2;
}

.travel-modal-body .wpcf7-form input[type="submit"] {
    width: 100%;
    background: #017ED2;
    color: #093B59;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    transition: background 0.25s ease;
    margin-bottom: 0;
}

.travel-modal-body .wpcf7-form input[type="submit"]:hover {
    background: #093B59;
    color: #017ED2;
}

/* Footer */
.travel-modal-footer {
    background: #f7f5f0;
    border-top: 1px solid #ede8de;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.privacy-points {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.privacy-points li {
    font-size: 11.5px;
    color: #777;
}

.travel-close-btn {
    background: transparent;
    border: 1.5px solid #093B59;
    color: #093B59;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 5px;
    transition: background 0.2s ease, color 0.2s ease;
}

.travel-close-btn:hover {
    background: #093B59;
    color: #017ED2;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */

.kf-float-btns {
    position: fixed;
    bottom: 24px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.kf-float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.kf-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

.kf-float-call {
    background: #093B59;
    border: 2px solid rgba(206,155,47,0.5);
}

.kf-float-call:hover {
    background: #017ED2;
    border-color: #017ED2;
}

.kf-float-wa {
    background: #25D366;
    border: 2px solid rgba(255,255,255,0.2);
}

.kf-float-wa:hover {
    background: #1ebe5d;
}

/* Pulse ring on WhatsApp */
.kf-float-wa::after {
    content: '';
    position: absolute;
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: wa-pulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes wa-pulse {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 767px) {
    .kf-top { padding: 48px 0 36px; }

    .travel-modal-header h2 { font-size: 24px; }

    .travel-modal-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .kf-float-btns {
        bottom: 16px;
        right: 14px;
    }

    .kf-float-btn {
        width: 44px;
        height: 44px;
    }
}