:root {
    /* Keep Travel Brand Colors */
    --kt-primary: #0e4fa3;        /* Deep ocean blue */
    --kt-primary-rgb: 14, 79, 163;
    --kt-accent: #f0a500;         /* Golden amber */
    --kt-accent-rgb: 240, 165, 0;
    --kt-teal: #00a8a8;           /* Tropical teal */
    --kt-dark: #0b1f3a;           /* Deep navy */
    --kt-light-bg: #f0f6ff;       /* Light blue-white */

    --bs-primary: #0e4fa3;
    --bs-primary-rgb: 14, 79, 163;
    --bs-body-bg: #ffffff;
    --bs-body-color: #1a2332;
    --bs-border-radius: 0.5rem;
    --bs-border-radius-lg: 0.875rem;
    --bs-border-radius-sm: 0.3rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(14, 79, 163, 0.08);
    --shadow-md: 0 4px 16px -2px rgba(14, 79, 163, 0.12), 0 2px 6px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 30px -4px rgba(14, 79, 163, 0.15), 0 6px 10px -2px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 22px 40px -6px rgba(14, 79, 163, 0.22), 0 10px 14px -4px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 2px 20px rgba(0,0,0,0.07);
}

body {
    -webkit-font-smoothing: antialiased;
    font-size: 0.875rem; /* 14px for compact B2B data density */
    font-family: "Inter", sans-serif;
    margin: 0;
    line-height: 1.5;
    background: #fff;
    color: var(--bs-body-color);
}

/* ============================================================
   BASE RESET & TYPOGRAPHY
   ============================================================ */
*, ::after, ::before { box-sizing: border-box; }

body {
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
    font-family: "Inter", sans-serif;
    margin: 0;
    line-height: 1.65;
    background: #fff;
    color: var(--bs-body-color);
}

img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--kt-dark);
    line-height: 1.25;
}

.small, small { font-size: 0.8125rem; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}
.text-balance { text-wrap: balance; }

.text-primary { color: var(--kt-primary) !important; }
.text-accent  { color: var(--kt-accent)  !important; }

.bg-primary-kt { background-color: var(--kt-primary) !important; }
.bg-accent-kt  { background-color: var(--kt-accent)  !important; }
.bg-dark  { background-color: var(--kt-dark)   !important; }
.bg-light-kt   { background-color: var(--kt-light-bg) !important; }

.text-white-50  { color: rgba(255,255,255,0.65) !important; }

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--kt-accent);
    margin-bottom: 0.5rem;
}

/* gradient text effect for big headings */
.gradient-text {
    background: linear-gradient(135deg, #fff 30%, #f0c060 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.kt-topbar {
    background: var(--kt-dark);
    color: rgba(255,255,255,0.72);
    font-size: 0.8125rem;
    padding: 0.35rem 0;
}
.kt-topbar a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    transition: color 0.15s;
}
.kt-topbar a:hover { color: #fff; }

/* ============================================================
   MAIN NAVBAR
   ============================================================ */
.kt-navbar {
    background: #fff;
    border-bottom: 1px solid rgba(14,79,163,0.08);
    box-shadow: 0 2px 12px rgba(14,79,163,0.07);
    padding: 0.6rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}
.navbar-logo {
    height: 52px;
    width: auto;
}
.kt-navbar .nav-link {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #1a2332;
    padding: 0.5rem 1.1rem;
    transition: color 0.15s;
    position: relative;
}
.kt-navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: -2px;
    height: 2px;
    background: var(--kt-accent);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}
.kt-navbar .nav-link:hover,
.kt-navbar .nav-link.active { color: var(--kt-primary); }
.kt-navbar .nav-link:hover::after,
.kt-navbar .nav-link.active::after { transform: scaleX(1); }

.kt-navbar .btn-cta {
    background: var(--kt-accent);
    color: var(--kt-dark);
    font-weight: 700;
    border: none;
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    box-shadow: 0 4px 14px rgba(240,165,0,0.35);
}
.kt-navbar .btn-cta:hover {
    background: #d9940a;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(240,165,0,0.45);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.kt-hero {
    background: linear-gradient(135deg, #0b1f3a 0%, #0e4fa3 55%, #1a74d8 100%);
    min-height: 82vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}
.kt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.kt-hero::after {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(240,165,0,0.08);
    pointer-events: none;
}
.kt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    border-radius: 50px;
    padding: 0.35rem 0.9rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
}
.kt-hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--kt-accent);
    border-radius: 50%;
    animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}
.kt-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.kt-hero-lead {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.82);
    max-width: 540px;
    margin-bottom: 2.2rem;
}
.kt-hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.kt-hero-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--kt-accent);
    line-height: 1;
}
.kt-hero-stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.2rem;
}

/* Hero Search Box */
.kt-hero-search {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 2rem;
    max-width: 520px;
}
.kt-hero-search h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}
.kt-hero-search .form-control,
.kt-hero-search .form-select {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    font-size: 0.9375rem;
    color: var(--kt-dark);
}
.kt-hero-search .form-control::placeholder { color: #94a3b8; }
.kt-hero-search .form-control:focus,
.kt-hero-search .form-select:focus {
    background: #fff;
    border-color: var(--kt-accent);
    box-shadow: 0 0 0 3px rgba(240,165,0,0.2);
}
.kt-hero-search .btn-search {
    background: var(--kt-accent);
    color: var(--kt-dark);
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 1.5rem;
    font-size: 0.9375rem;
    width: 100%;
    transition: background 0.18s, box-shadow 0.18s;
    box-shadow: 0 4px 14px rgba(240,165,0,0.4);
}
.kt-hero-search .btn-search:hover {
    background: #d9940a;
    box-shadow: 0 6px 20px rgba(240,165,0,0.5);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.kt-trust-strip {
    background: var(--kt-dark);
    padding: 1.2rem 0;
}
.kt-trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    font-weight: 500;
}
.kt-trust-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(240,165,0,0.18);
    display: flex; align-items: center; justify-content: center;
    color: var(--kt-accent);
    flex-shrink: 0;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.kt-section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.kt-section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--kt-dark);
    margin-bottom: 0.75rem;
}
.kt-section-header p {
    font-size: 1.0625rem;
    color: #637088;
    max-width: 600px;
    margin: 0 auto;
}
.kt-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--kt-primary), var(--kt-accent));
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

/* ============================================================
   TOUR CARDS
   ============================================================ */
.tour-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-card);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}
.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    color: inherit;
}
.tour-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.tour-card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tour-card:hover .tour-card-img-wrap img {
    transform: scale(1.08);
}
.tour-card-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--kt-accent);
    color: var(--kt-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    letter-spacing: 0.04em;
}
.tour-card-flag {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 32px; height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.tour-card-body {
    padding: 1.25rem 1.375rem 1.5rem;
}
.tour-card-dest {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--kt-primary);
    margin-bottom: 0.35rem;
}
.tour-card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--kt-dark);
    margin-bottom: 0.6rem;
    line-height: 1.35;
}
.tour-card-meta {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.8125rem;
    color: #637088;
    margin-bottom: 1rem;
}
.tour-card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.tour-card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    padding-top: 0.875rem;
}
.tour-card-from { font-size: 0.75rem; color: #637088; }
.tour-card-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--kt-primary);
}
.tour-card-btn {
    background: var(--kt-primary);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 0.4rem 1rem;
    transition: background 0.18s;
}
.tour-card-btn:hover { background: #0b3d84; color: #fff; }

/* ============================================================
   DESTINATION CARDS
   ============================================================ */
.dest-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: block;
    height: 260px;
    text-decoration: none;
}
.dest-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,31,58,0.85) 0%, rgba(11,31,58,0.1) 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}
.dest-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}
.dest-card-count {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.75);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.kt-feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
}
.kt-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.kt-feature-icon {
    width: 68px; height: 68px;
    border-radius: 18px;
    background: var(--kt-light-bg);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--kt-primary);
    font-size: 1.75rem;
    transition: background 0.25s, color 0.25s;
}
.kt-feature-item:hover .kt-feature-icon {
    background: var(--kt-primary);
    color: #fff;
}
.kt-feature-item h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--kt-dark);
}
.kt-feature-item p {
    font-size: 0.9rem;
    color: #637088;
    margin: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.kt-testimonial-card {
    border-radius: 16px;
    background: #fff;
    padding: 1.75rem;
    box-shadow: var(--shadow-card);
    height: 100%;
    border-left: 4px solid var(--kt-accent);
}
.kt-testimonial-stars { color: var(--kt-accent); margin-bottom: 0.75rem; }
.kt-testimonial-text {
    font-size: 0.9375rem;
    color: #374151;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.kt-testimonial-author { font-weight: 700; color: var(--kt-dark); font-size: 0.9375rem; }
.kt-testimonial-location { font-size: 0.8125rem; color: #637088; }
.kt-testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--kt-light-bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--kt-primary);
    border: 2px solid var(--kt-accent);
    flex-shrink: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.kt-cta {
    background: linear-gradient(135deg, var(--kt-primary) 0%, #1a74d8 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}
.kt-cta::before {
    content: '✈';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(-30deg);
    font-size: 8rem;
    color: rgba(255,255,255,0.06);
    pointer-events: none;
}
.kt-cta h2 { color: #fff; font-weight: 800; margin-bottom: 0.75rem; }
.kt-cta p  { color: rgba(255,255,255,0.8); font-size: 1.0625rem; margin-bottom: 0; }
.kt-cta .btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    transition: background 0.18s, color 0.18s;
}
.kt-cta .btn-accent {
    background: var(--kt-accent);
    color: var(--kt-dark);
    font-weight: 700;
    border: none;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(240,165,0,0.4);
    transition: background 0.18s, box-shadow 0.18s;
}
.kt-cta .btn-accent:hover { background: #d9940a; box-shadow: 0 6px 22px rgba(240,165,0,0.55); }

/* ============================================================
   CATEGORY PAGE
   ============================================================ */
.kt-category-hero {
    background: linear-gradient(135deg, #0b1f3a 0%, #0e4fa3 100%);
    padding: 3.5rem 0 3rem;
}
.kt-category-hero h1 { color: #fff; font-weight: 800; }
.kt-category-hero p  { color: rgba(255,255,255,0.78); font-size: 1.0625rem; }
.kt-category-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.kt-category-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.kt-category-hero .breadcrumb-item a:hover { color: #fff; }
.kt-category-hero .breadcrumb-item.active { color: rgba(255,255,255,0.9); }

/* ============================================================
   TOUR DETAIL / PAGE CONTENT
   ============================================================ */
.kt-tour-detail-header {
    background: linear-gradient(135deg, #0b1f3a 0%, #0e4fa3 100%);
    padding: 3rem 0 2.5rem;
}
.kt-tour-detail-header h1 { color: #fff; font-weight: 800; }
.kt-tour-detail-header p { color: rgba(255,255,255,0.95); }
.kt-tour-detail-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.45); }
.kt-tour-detail-header .breadcrumb-item a { color: rgba(255,255,255,0.9); text-decoration: none; }
.kt-tour-detail-header .breadcrumb-item a:hover { color: #fff; }
.kt-tour-detail-header .breadcrumb-item.active { color: #fff; }

.tour-gallery-main img {
    width: 100%;
    min-height: 280px;
    max-height: 520px;
    object-fit: cover;
}

.tour-thumb-btn {
    border: 2px solid transparent;
    background: transparent;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    width: 84px;
    height: 84px;
    cursor: pointer;
    transition: border-color 0.16s ease, transform 0.16s ease;
}

.tour-thumb-btn:hover,
.tour-thumb-btn.active {
    border-color: var(--kt-primary);
    transform: translateY(-1px);
}

.tour-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.kt-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    border-radius: 50px;
    padding: 0.3rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 500;
}
.kt-price-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--kt-accent);
    position: sticky;
    top: 80px;
}
.kt-price-card .price-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--kt-primary);
    line-height: 1;
}
.kt-price-card .price-from {
    font-size: 0.875rem;
    color: #637088;
}
.kt-include-list li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.kt-include-list li:last-child { border-bottom: none; }
.kt-include-list .check { color: #22c55e; }
.kt-include-list .cross { color: #ef4444; }
.kt-inquiry-btn {
    background: linear-gradient(135deg, var(--kt-primary), #1a74d8);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(14,79,163,0.3);
}
.kt-inquiry-btn:hover {
    box-shadow: 0 8px 24px rgba(14,79,163,0.45);
    transform: translateY(-2px);
    color: #fff;
}
.kt-whatsapp-btn {
    background: #25d366;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    transition: background 0.18s;
}
.kt-whatsapp-btn:hover { background: #1fb357; color: #fff; }

/* Content typography */
.page-content p { margin-bottom: 1.1rem; }
.page-content h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.page-content h3 { font-size: 1.25rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.page-content ul, .page-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.1rem;
}

/* ============================================================
   ITINERARY ACCORDION
   ============================================================ */
.kt-itinerary .accordion-button {
    font-weight: 700;
    color: var(--kt-dark);
    background: #f8fafc;
    border-radius: 8px !important;
}
.kt-itinerary .accordion-button:not(.collapsed) {
    color: var(--kt-primary);
    background: var(--kt-light-bg);
    box-shadow: none;
}
.kt-itinerary .accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.kt-day-badge {
    display: inline-block;
    background: var(--kt-accent);
    color: var(--kt-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    margin-right: 0.6rem;
}

/* ============================================================
   CARDS GENERAL
   ============================================================ */
.card {
    border: none;
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    background-color: #fff;
    overflow: hidden;
    border-radius: var(--bs-border-radius-lg);
}
a.text-decoration-none .card:hover, .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.card-body { padding: 1.25rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.475rem 1.1rem;
    font-size: 0.9375rem;
    transition: all 0.2s;
}
.btn-primary {
    background-color: var(--kt-primary);
    border-color: var(--kt-primary);
    box-shadow: 0 4px 14px rgba(14,79,163,0.25);
}
.btn-primary:hover {
    background-color: #0b3d84;
    border-color: #0a3575;
    box-shadow: 0 6px 18px rgba(14,79,163,0.38);
}
.btn-accent {
    background: var(--kt-accent);
    color: var(--kt-dark);
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(240,165,0,0.3);
}
.btn-accent:hover {
    background: #d9940a;
    color: var(--kt-dark);
    box-shadow: 0 6px 18px rgba(240,165,0,0.45);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #f7fbff !important;
    border-top: 1px solid #dfe9f6;
}
footer h5 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #3e4f66;
    margin-bottom: 1.1rem !important;
}
footer a, footer li a { color: #4f617a; text-decoration: none; transition: color 0.15s; }
footer a:hover { color: var(--kt-primary); }
footer .footer-brand-desc {
    color: #60738f;
    font-size: 0.9rem;
    line-height: 1.65;
}
.social-icon-btn {
    width: 36px; height: 36px;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid #c9d8ea;
    color: #34506f;
    background: #fff;
}
.social-icon-btn:hover {
    border-color: #0e4fa3;
    color: #0e4fa3;
    background: #f3f8ff;
}
.footer-divider {
    border-color: #d8e4f1 !important;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 18px rgba(37,211,102,0.45), 0 2px 6px rgba(0,0,0,0.15);
    z-index: 1050;
    text-decoration: none;
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}
.whatsapp-float:hover {
    background: #1fb357;
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}
.whatsapp-float-icon { width: 34px; height: 34px; }

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 767.98px) {
    .kt-hero { min-height: 60vh; padding: 3.5rem 0 3rem; }
    .kt-hero h1 { font-size: 2.1rem; }
    .kt-hero-stats { gap: 1.5rem; }
    .kt-hero-search { padding: 1.25rem; }
    .kt-cta { padding: 2.5rem 1.5rem; }
    .dest-card { height: 200px; }
}
@media (max-width: 575.98px) {
    .kt-hero h1 { font-size: 1.875rem; }
    .tour-card-img-wrap { height: 180px; }
}

/* Misc */
.filter-sidebar {
    top: 80px;
    background: #fff;
    padding: 1.25rem;
    border-radius: var(--bs-border-radius-lg);
    box-shadow: var(--shadow-card);
}

