* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

:root {
    --bs-primary: #1e3a5f;
    --bs-secondary: #4a90e2;
    --bs-success: #22c55e;
    --bs-info: #30d5c8;
    --bs-body-font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #1e3a5f;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-link i {
    color: #fff;
}

.separator {
    color: #fff;
    opacity: 0.5;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    font-size: 18px;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

.sign-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s;
}

.sign-link:hover {
    opacity: 0.7;
}

/* Header / Bootstrap Navbar */
.header.navbar {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transition: background 0.3s;
    padding: 0;
}

.header.navbar.scrolled {
    background: rgba(30, 58, 95, 0.95);
    position: fixed;
    top: 0;
}

.header.navbar .container {
    padding: 15px 20px;
}

/* Bootstrap Navbar Brand / Logo */
.navbar-brand.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
    margin-right: 0;
}

.navbar-brand.logo:hover,
.navbar-brand.logo:focus {
    text-decoration: none;
}

.logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1e3a5f;
    border: 2px solid #4a90e2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.logo-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

/* Bootstrap Navbar Nav */
/* Center navbar collapse content */
.navbar-collapse {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .navbar-collapse {
        flex-direction: row;
        justify-content: center;
    }
}

.navbar-nav.main-nav {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.navbar-nav.main-nav .nav-item {
    list-style: none;
}

.navbar-nav.main-nav .nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    padding: 8px 0;
    border: none;
}

.navbar-nav.main-nav .nav-link:hover,
.navbar-nav.main-nav .nav-link:focus {
    color: #fff;
    opacity: 0.9;
}

.navbar-nav.main-nav .nav-link.active {
    color: #fff;
    opacity: 1;
}

.navbar-nav.main-nav .nav-link i.fa-paper-plane {
    margin-left: 5px;
    font-size: 12px;
}

/* Bootstrap Navbar Toggler / Mobile Menu Toggle */
.navbar-toggler.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 0;
    z-index: 1003;
    position: relative;
    transition: opacity 0.3s ease;
    box-shadow: none;
    align-items: stretch;
}

.navbar-toggler.mobile-menu-toggle:hover {
    opacity: 0.8;
}

.navbar-toggler.mobile-menu-toggle:focus {
    outline: 2px solid rgba(255,255,255,0.5);
    outline-offset: 2px;
    border-radius: 4px;
    box-shadow: none;
}

.navbar-toggler.mobile-menu-toggle:focus-visible {
    outline: 2px solid rgba(255,255,255,0.5);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Hamburger lines (shown when OPEN) */
.navbar-toggler.mobile-menu-toggle .icon-line {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    display: block;
    position: relative;
    opacity: 0;
    transform: scaleX(0);
}

/* Close icon (shown when CLOSED) */
.navbar-toggler.mobile-menu-toggle .icon-close {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
}

.navbar-toggler.mobile-menu-toggle .icon-close i {
    display: block;
    font-size: 20px;
}

/* When expanded (OPEN) - show hamburger lines, hide close icon */
.navbar-toggler.mobile-menu-toggle[aria-expanded="true"] .icon-line {
    opacity: 1;
    transform: scaleX(1);
}

.navbar-toggler.mobile-menu-toggle[aria-expanded="true"] .icon-close {
    display: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

/* Hide default Bootstrap navbar toggler icon */
.navbar-toggler.mobile-menu-toggle .navbar-toggler-icon {
    display: none;
}

.header-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

@media (min-width: 992px) {
    .header-actions {
        align-items: flex-end;
    }
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.phone-icon {
    width: 40px;
    height: 40px;
    background: #1e3a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.phone-number {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.support-text {
    color: #fff;
    font-size: 11px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 420px;
    overflow: hidden;
    margin-top: 0;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.carousel-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-content p {
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #fff;
    border: none;
    padding: 20px;
    font-size: 28px;
    cursor: pointer;
    z-index: 3;
    transition: opacity 0.3s;
    font-weight: bold;
}

.carousel-prev:hover, .carousel-next:hover {
    opacity: 0.7;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Banner Search Bar */
.banner-search {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 90%;
    max-width: 800px;
}

.search-container {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.search-input {
    flex: 1;
    padding: 18px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.search-category {
    padding: 18px 15px;
    border: none;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    outline: none;
    background: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 35px;
}

.search-btn {
    padding: 18px 40px;
    background: #1e3a5f;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 0 8px 8px 0;
}

.search-btn:hover {
    background: #2a4d75;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #fff;
}

/* Andaman intro + callback section */
.andaman-intro-section {
    padding: 40px 0 36px;
    background: #fff;
}

.andaman-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
    gap: 32px;
    align-items: stretch;
}

.andaman-intro-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.andaman-intro-content p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 10px;
}

.andaman-intro-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1e3a5f;
    text-decoration: none;
}

.andaman-intro-link i {
    font-size: 12px;
}

.andaman-intro-link:hover {
    text-decoration: underline;
}

.andaman-intro-cta {
    background: #1e3a5f;
    border-radius: 16px;
    padding: 22px 22px 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

.andaman-intro-cta h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 14px;
    line-height: 1.4;
}

.andaman-intro-cta h3 span {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

.andaman-callback-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.andaman-form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.andaman-form-group label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #e5e7eb;
}

.andaman-form-group input {
    border-radius: 999px;
    border: none;
    padding: 10px 14px;
    font-size: 13px;
    outline: none;
    color: #111827;
}

.andaman-form-group input::placeholder {
    color: #9ca3af;
}

.andaman-phone-group .andaman-phone-wrapper {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 999px;
    overflow: hidden;
}

.andaman-country {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0 10px;
    border-right: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 12px;
    color: #111827;
}

.andaman-flag {
    font-size: 14px;
}

.andaman-dial {
    font-weight: 500;
}

.andaman-phone-wrapper input {
    flex: 1;
    border-radius: 0 999px 999px 0;
    border: none;
    padding-left: 12px;
}

.andaman-cta-btn {
    margin-top: 4px;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    background: #22c55e;
    color: #fff;
    cursor: pointer;
    text-transform: none;
    align-self: flex-start;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.andaman-cta-btn:hover {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(21, 128, 61, 0.45);
}

.andaman-cta-btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

/* Popular Tours – compact */
.popular-tours {
    padding: 40px 0 36px;
    background: #fff;
    margin-top: 0;
}

.popular-tours .section-header {
    margin-bottom: 24px;
}

.popular-tours .section-header h2 {
    color: #1e3a5f;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
}

.popular-tours .section-header h2 i {
    color: #1e3a5f;
    font-size: 18px;
}

.popular-tours .section-header p {
    color: #666;
    font-size: 13px;
    margin-top: 4px;
}

.tours-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 12px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.tours-carousel {
    display: flex;
    gap: 12px;
    flex: 1;
    padding: 6px 0;
    width: 100%;
    overflow: hidden;
    justify-content: space-between;
}

.tour-card {
    position: relative;
    width: calc((100% - 36px) / 4);
    aspect-ratio: 2 / 3;
    min-height: 200px;
    max-height: 220px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    flex-grow: 0;
}

.tour-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.tour-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.tour-card:hover img {
    transform: scale(1.05);
}

.tour-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0) 100%);
    padding: 20px 14px 14px;
    color: #fff;
    z-index: 1;
}

.tour-card-overlay h3 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.25;
    letter-spacing: 0.2px;
}

.tours-carousel-prev,
.tours-carousel-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8e8e8;
    border: none;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Show navigation buttons only on mobile when scrolling is needed */
@media (max-width: 768px) {
    .tours-carousel-prev,
    .tours-carousel-next {
        display: flex;
    }
}

.tours-carousel-prev:hover,
.tours-carousel-next:hover {
    background: #d5d5d5;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.tours-carousel-prev:active,
.tours-carousel-next:active {
    transform: scale(0.95);
}

/* Top Destination Section – compact */
.top-destination-section {
    position: relative;
    padding: 48px 0 64px;
    background: #f8f9fa;
    overflow: hidden;
    min-height: 360px;
    margin-top: 24px;
}

.top-dest-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.cityscape-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: bottom center;
    z-index: 1;
    min-height: 180px;
    max-height: 280px;
    opacity: 0.9;
}

/* Parachute Icons */
.parachute-icon {
    position: absolute;
    top: 0.5rem;
    z-index: 10;
    width: 36px;
    height: 36px;
}

.parachute-left {
    left: 0.5rem;
}

.parachute-right {
    right: 0.5rem;
}

/* Top Destination Content */
.top-dest-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-dest-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 24px 0 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.top-dest-header {
    position: relative;
    margin-bottom: 12px;
    text-align: center;
    display: inline-block;
}

.top-dest-header h4 {
    font-size: 22px;
    color: #1e3a5f;
    font-weight: 700;
    display: inline-block;
    margin: 0;
}

.book-flight-icon {
    position: absolute;
    top: 0;
    right: -1.3rem;
    width: 1.4rem;
    height: 1.4rem;
    z-index: 1;
}

.top-dest-content h3 {
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.35;
}

.top-dest-content h3 b {
    font-weight: 700;
}

.top-dest-content p {
    font-size: 12px;
    color: #666;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.5;
    text-align: center;
}

/* Call to Action Box */
.top-dest-cta {
    position: relative;
    z-index: 3;
    background: #1e3a5f;
    border-radius: 8px;
    padding: 20px;
    margin-top: 24px;
    text-align: left;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    overflow: hidden;
}

.top-dest-cta h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.top-dest-cta p {
    font-size: 12px;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.5;
    max-width: 75%;
}

.btn-contact-support {
    display: inline-block;
    padding: 6px 18px;
    background: #00d4aa;
    color: #1e3a5f;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-contact-support:hover {
    background: #00b894;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,212,170,0.4);
}

/* Illustration Image */
.cta-illustration-img {
    position: absolute;
    right: 0;
    bottom: 10%;
    width: 5rem;
    height: 5rem;
    z-index: 1;
    object-fit: contain;
}

/* Top Selling Packages – compact */
.top-selling-packages {
    padding: 40px 0 36px;
    background: #f3f4fb;
}

.top-selling-packages .section-header {
    margin-bottom: 24px;
}

.top-selling-packages .section-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 22px;
}

.top-selling-packages .section-header h2 i {
    color: #4a90e2;
    font-size: 16px;
    margin-left: 4px;
}

.top-selling-packages .section-header p {
    font-size: 13px;
    margin-top: 4px;
}

/* Andaman listing layout (filters + cards) */
.andaman-packages-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: flex-start;
}

.andaman-filter-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 16px 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    border: 1px solid #e5e7eb;
    font-size: 13px;
}

.andaman-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    font-weight: 600;
    color: #111827;
}

.andaman-filter-header i {
    margin-right: 4px;
    color: #1e3a5f;
}

.andaman-filter-clear {
    border: none;
    background: transparent;
    font-size: 12px;
    color: #2563eb;
    cursor: pointer;
}

.andaman-filter-group {
    padding-top: 10px;
    margin-top: 8px;
    border-top: 1px solid #e5e7eb;
}

.andaman-filter-group h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
    margin-bottom: 8px;
}

.andaman-filter-group label {
    display: block;
    margin-bottom: 5px;
    color: #374151;
    font-size: 13px;
    cursor: pointer;
}

.andaman-filter-group input[type="radio"] {
    margin-right: 6px;
}

.andaman-filter-group input[type="text"] {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 8px 10px;
    font-size: 13px;
    outline: none;
}

.andaman-filter-group input[type="text"]::placeholder {
    color: #9ca3af;
}

.andaman-filter-group--date {
    padding-top: 8px;
    margin-top: 6px;
}

.andaman-filter-group--date h4 {
    margin-bottom: 6px;
}

.andaman-filter-group input[type="date"],
.andaman-filter-group .andaman-date-input,
.andaman-date-input {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 6px 8px;
    font-size: 12px;
    line-height: 1.3;
    outline: none;
    color: #374151;
    background-color: #fff;
    box-sizing: border-box;
}

.andaman-filter-group input[type="date"]:focus,
.andaman-date-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.andaman-packages-main {
    background: transparent;
}

.andaman-packages-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.andaman-packages-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
}

.andaman-packages-header p {
    font-size: 12px;
    color: #6b7280;
}

.andaman-sort-view {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.andaman-sort-select {
    display: flex;
    align-items: center;
    gap: 4px;
}

.andaman-sort-select label {
    color: #6b7280;
}

.andaman-sort-select select {
    border-radius: 999px;
    border: 1px solid #d1d5db;
    padding: 6px 10px;
    font-size: 12px;
    background: #ffffff;
    outline: none;
}

.andaman-view-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    padding: 6px 10px;
    background: #ffffff;
    cursor: pointer;
    font-size: 12px;
    color: #111827;
}

.andaman-view-toggle i {
    font-size: 12px;
}

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

.andaman-package-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.andaman-package-card:hover {
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.16);
    transform: translateY(-2px);
}

.andaman-package-card.is-hidden {
    display: none !important;
}

.andaman-card-image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
}

.andaman-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.andaman-discount-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ef4444;
    color: #ffffff;
    padding: 6px 26px 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 75% 100%, 0 100%);
}

.andaman-card-body {
    padding: 14px 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.andaman-card-body h4 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.andaman-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: #6b7280;
    gap: 8px;
}

.andaman-duration i {
    margin-right: 4px;
}

.andaman-meta-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.andaman-stars {
    display: inline-flex;
    gap: 1px;
    color: #fbbf24;
}

.andaman-stars i {
    font-size: 11px;
}

.andaman-review-count {
    font-size: 11px;
    color: #9ca3af;
}

.andaman-price-card {
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.andaman-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.andaman-price-label {
    font-size: 11px;
    color: #6b7280;
}

.andaman-price-values {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.andaman-price-old {
    font-size: 12px;
    color: #9ca3af;
    text-decoration: line-through;
}

.andaman-price-new {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.andaman-agent-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px dashed #e5e7eb;
}

.andaman-agent {
    display: flex;
    align-items: center;
    gap: 6px;
}

.andaman-agent-avatar {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #e5f0ff;
    color: #1e3a5f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.andaman-agent-name {
    font-size: 12px;
    color: #374151;
}

.andaman-wishlist-btn {
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    padding: 7px 14px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #374151;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    outline: none;
}

.andaman-wishlist-btn i {
    font-size: 12px;
}

.andaman-card-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.andaman-card-actions a,
.andaman-card-actions button {
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    padding: 8px 10px;
    text-align: center;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.andaman-btn-secondary {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #374151;
}

.andaman-call-btn {
    background: #111827;
    border-color: #111827;
    color: #ffffff;
}

.andaman-details-btn {
    background: #10b981;
    border-color: #10b981;
    color: #ffffff;
}

.andaman-btn-outline {
    background: #ffffff;
    border-color: #2563eb;
    color: #2563eb;
}

.andaman-btn-primary {
    background: #10b981;
    border-color: #10b981;
    color: #ffffff;
}

.andaman-no-more {
    margin-top: 18px;
    font-size: 12px;
    color: #6b7280;
    text-align: center;
}

.package-category {
    margin-bottom: 32px;
}

.package-category h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 14px;
    padding-bottom: 6px;
    text-align: left;
    position: relative;
    font-weight: 600;
}

.package-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 200px;
    height: 1px;
    background: #ddd;
}

.packages-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 36px;
    margin: 0 auto;
}

.packages-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    flex: 1;
    padding: 6px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    width: 100%;
}

.packages-slider:active {
    cursor: grabbing;
}

.packages-slider::-webkit-scrollbar {
    display: none;
}

.packages-slider-prev,
.packages-slider-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: absolute;
}

.packages-slider-prev:hover,
.packages-slider-next:hover {
    background: #f5f5f5;
    transform: scale(1.08);
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}

.packages-slider-prev {
    left: 0;
}

.packages-slider-next {
    right: 0;
}

.package-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
    width: 260px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.package-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    display: block;
}

.package-info {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-info h4 {
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 36px;
    font-weight: 500;
    height: 36px;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.package-meta span {
    color: #666;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.package-meta span i {
    color: #999;
    font-size: 10px;
}

.price {
    color: #1e3a5f;
    font-weight: 700;
    font-size: 14px;
}

.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 8px;
    background: #1e3a5f;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    transition: background 0.3s, transform 0.2s;
    margin-top: auto;
}

.btn-call:hover {
    background: #2a4d75;
    transform: translateY(-1px);
}

.btn-call i {
    font-size: 12px;
    margin-right: 2px;
}

/* Themes Section – compact */
.themes-section {
    padding: 40px 0 36px;
    background: #fff;
}

.themes-section .section-header {
    margin-bottom: 24px;
}

.themes-section .section-header h2 {
    color: #1e3a5f;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.themes-section .section-header h2 i {
    color: #1e3a5f;
    font-size: 18px;
}

.themes-section .section-header p {
    color: #999;
    font-size: 13px;
    margin-top: 4px;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.theme-card {
    text-align: center;
    transition: transform 0.3s;
    cursor: pointer;
}

.theme-card:hover {
    transform: translateY(-4px);
}

.theme-card img {
    width: 88px;
    height: 88px;
    margin: 0 auto 10px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

.theme-card h4 {
    color: #000;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 14px;
}

.theme-card span {
    color: #999;
    font-size: 12px;
}

@media (max-width: 1200px) {
    .themes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .themes-section .section-header h2 {
        font-size: 20px;
    }
    
    .themes-section .section-header h2 i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .themes-grid {
        gap: 12px;
    }
    
    .theme-card img {
        width: 72px;
        height: 72px;
        margin-bottom: 8px;
    }
    
    .theme-card h4 {
        font-size: 13px;
    }
    
    .theme-card span {
        font-size: 11px;
    }
}

/* Package picks from State Wise – compact */
.state-wise-section {
    padding: 40px 0 36px;
    background: #fff;
    position: relative;
}

.state-wise-section .state-wise-header {
    margin-bottom: 24px;
}

.state-wise-section .state-wise-header h2 {
    color: #1e3a5f;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.state-wise-section .state-wise-header h2 i {
    color: #1e3a5f;
    font-size: 18px;
}

.state-wise-section .state-wise-header p {
    color: #71797e;
    font-size: 13px;
    margin-top: 4px;
}

.state-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 0 8px;
}

.state-tab {
    padding: 8px 14px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #000;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.state-tab:hover {
    border-color: #b0b0b0;
}

.state-tab.active {
    background: #30d5c8;
    color: #fff;
    border-color: #30d5c8;
}

.state-tabpanels {
    margin-top: 0;
}

.state-tabpanel {
    display: none;
}

.state-tabpanel.active {
    display: block;
}

.state-packages-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 36px;
    margin: 0 auto;
}

.state-packages-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    flex: 1;
    padding: 6px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    width: 100%;
}

.state-packages-slider:active {
    cursor: grabbing;
}

.state-packages-slider::-webkit-scrollbar {
    display: none;
}

.state-packages-prev,
.state-packages-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: absolute;
}

.state-packages-prev:hover,
.state-packages-next:hover {
    background: #f5f5f5;
    transform: scale(1.08);
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}

.state-packages-prev {
    left: 0;
}

.state-packages-next {
    right: 0;
}

.state-package-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 1px 1px 4px 1px rgba(0,0,0,0.18);
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
    width: 240px;
    min-width: 240px;
    display: flex;
    flex-direction: column;
}

.state-package-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.14);
}

.state-package-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.state-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.state-package-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.state-package-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}

.state-package-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.state-package-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #666;
    font-size: 12px;
}

.state-package-duration i {
    color: #666;
    font-size: 12px;
}

.state-package-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1e3a5f;
    color: #fff;
    padding: 10px 12px;
    border-radius: 6px;
    margin-top: auto;
}

.state-package-price {
    font-weight: 600;
    font-size: 13px;
    color: #fff;
}

.state-package-call {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.2s;
}

.state-package-call:hover {
    color: #fff;
    opacity: 0.9;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 32px;
}

.feature-card h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Budget Kashmir Package Promo Banner */
.promo-banner {
    padding: 60px 0;
}

.promo-banner-inner {
    display: block;
    position: relative;
    min-height: 360px;
    border-radius: 12px;
    overflow: hidden;
    background-image: url('https://alleppeyboat.in/uploads/0000/1/2023/02/22/img-20230220-wa0085.jpg');
    background-size: cover;
    background-position: center;
    text-decoration: none;
    color: inherit;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
}

.promo-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px 50px;
    z-index: 1;
}

.promo-line {
    width: 4px;
    align-self: stretch;
    min-height: 120px;
    background: #fff;
    border-radius: 2px;
    margin-right: 24px;
    flex-shrink: 0;
}

.promo-text {
    text-align: right;
    max-width: 380px;
}

.promo-title {
    font-size: 36px;
    font-weight: 700;
    color: #facc15;
    line-height: 1.2;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.promo-subtitle {
    font-size: 18px;
    color: #fff;
    margin: 0 0 6px 0;
    font-weight: 500;
}

.promo-meta {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 20px 0;
}

.promo-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #facc15;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
}

.promo-banner-inner:hover .promo-btn {
    background: #fde047;
    transform: translateY(-2px);
}

/* What makes us the best Tour and Travel Agency – compact */
.why-choose-section {
    padding: 40px 0 36px;
    background: #fff;
}

.why-choose-section .why-choose-header {
    margin-bottom: 24px;
}

.why-choose-section .why-choose-header h2 {
    color: #1e3a5f;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.why-choose-section .why-choose-header h2 i {
    color: #1e3a5f;
    font-size: 18px;
}

.why-choose-section .why-choose-header p {
    color: #71797e;
    font-size: 13px;
    margin-top: 4px;
}

.choose-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 0;
}

@media (min-width: 768px) {
    .choose-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .choose-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.choose-feature-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.choose-feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22b8cf;
    font-size: 18px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .choose-feature-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        font-size: 22px;
    }
}

.choose-feature-text {
    flex: 1;
    min-width: 0;
}

.choose-feature-text h5 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

@media (min-width: 1024px) {
    .choose-feature-text h5 {
        font-size: 16px;
    }
}

.choose-feature-text p {
    font-size: 12px;
    color: #71797e;
    line-height: 1.45;
    margin: 0;
}

@media (min-width: 1024px) {
    .choose-feature-text p {
        font-size: 13px;
    }
}

/* Kashmir Tour Packages New Year Banner */
.kashmir-banner-section {
    padding: 60px 0;
    background: #fff;
}

.kashmir-banner {
    position: relative;
    width: 100%;
    min-height: 200px;
    padding: 36px 40px;
    background: url('assets/travel-banner.png') center center no-repeat;
    background-size: cover;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .kashmir-banner {
        min-height: 220px;
        flex-direction: row;
        justify-content: center;
        text-align: left;
        gap: 48px;
        padding: 44px 48px;
    }
}

.kashmir-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 1;
}

@media (min-width: 768px) {
    .kashmir-banner-content {
        flex-direction: row;
    }
}

.kashmir-banner-title {
    font-family: "Bebas Neue", serif;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 400;
    color: #1e3a5f;
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .kashmir-banner-title {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .kashmir-banner-title {
        font-size: 48px;
    }
}

.kashmir-banner-subtitle {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.kashmir-banner-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #1e3a5f;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .kashmir-banner-btn {
        padding: 14px 32px;
        font-size: 16px;
    }
}

.kashmir-banner-btn:hover {
    background: #152a47;
    transform: translateY(-2px);
}

/* Best Selling Customizable Tour Packages */
.customizable-packages-section {
    padding: 50px 0 56px;
    background: #fff;
    position: relative;
}

.customizable-packages-section .customizable-header h2 {
    color: #1e3a5f;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.customizable-packages-section .customizable-header h2 i {
    color: #22b8cf;
    font-size: 20px;
}

.customizable-packages-section .customizable-header p {
    color: #71797e;
    font-size: 13px;
    margin-top: 8px;
}

.customizable-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 36px;
    margin: 0 auto;
}

.customizable-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    flex: 1;
    padding: 6px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    width: 100%;
}

.customizable-slider:active {
    cursor: grabbing;
}

.customizable-slider::-webkit-scrollbar {
    display: none;
}

.customizable-slider-prev,
.customizable-slider-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: absolute;
}

.customizable-slider-prev:hover,
.customizable-slider-next:hover {
    background: #f5f5f5;
    transform: scale(1.08);
}

.customizable-slider-prev {
    left: 0;
}

.customizable-slider-next {
    right: 0;
}

.customizable-package-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
    width: 260px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
}

.customizable-package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.customizable-card-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.customizable-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.customizable-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    background: #1e3a5f;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 4px;
    z-index: 2;
}

.customizable-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
    z-index: 1;
}

.customizable-tagline {
    font-size: 10px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2px;
}

.customizable-dest {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.customizable-label {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 10px;
    background: rgba(255,255,255,0.95);
    color: #333;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    z-index: 2;
}

.customizable-card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}

.customizable-card-title {
    font-size: 13px;
    font-weight: 600;
    color: #1e3a5f;
    margin: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.customizable-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #71797e;
    font-size: 12px;
}

.customizable-duration i {
    color: #71797e;
}

.customizable-price-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1e3a5f;
    color: #fff;
    padding: 10px 12px;
    border-radius: 0 0 10px 10px;
    margin: 0 -12px -12px -12px;
    margin-top: auto;
}

.customizable-price {
    font-weight: 700;
    font-size: 15px;
    color: #fff;
}

.customizable-call {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.customizable-call:hover {
    color: rgba(255,255,255,0.9);
}

/* How it works */
.how-it-works-section {
    padding: 50px 0 56px;
    background: #fff;
    position: relative;
}

.how-it-works-inner {
    position: relative;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 32px;
}

.how-it-works-title-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
}

.how-it-works-label {
    font-size: 16px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.how-it-works-label i {
    color: #1e3a5f;
    font-size: 18px;
}

.how-it-works-heading {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
}

@media (min-width: 768px) {
    .how-it-works-heading {
        font-size: 32px;
    }
}

.how-it-works-subtitle {
    font-size: 13px;
    color: #71797e;
    margin: 0;
}

@media (min-width: 768px) {
    .how-it-works-subtitle {
        font-size: 14px;
    }
}

.how-it-works-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 8px;
}

@media (min-width: 640px) {
    .how-it-works-steps {
        flex-direction: row;
        justify-content: center;
        gap: 18px;
    }
}

@media (min-width: 1024px) {
    .how-it-works-steps {
        gap: 0;
    }
}

.how-it-works-step {
    display: flex;
    align-items: flex-start;
    flex: 0 0 auto;
}

@media (min-width: 1024px) {
    .how-it-works-step {
        flex: 0 0 auto;
    }
}

.how-step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.how-step-illus {
    width: 96px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 184, 207, 0.12);
    border-radius: 16px;
    margin-bottom: 12px;
}

.how-step-illus i {
    font-size: 32px;
    color: #1e3a5f;
}

@media (min-width: 768px) {
    .how-step-illus {
        width: 112px;
        height: 88px;
    }
    .how-step-illus i {
        font-size: 36px;
    }
}

.how-step-title {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin: 0 0 4px 0;
}

@media (min-width: 768px) {
    .how-step-title {
        font-size: 15px;
    }
}

.how-step-desc {
    font-size: 12px;
    color: #71797e;
    margin: 0;
}

@media (min-width: 768px) {
    .how-step-desc {
        font-size: 13px;
    }
}

.how-step-arrow {
    display: none;
    width: 80px;
    min-width: 64px;
    height: 0;
    margin-top: 44px;
    margin-left: -10px;
    margin-right: -10px;
    border-top: 2px dashed #999;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .how-step-arrow {
        display: block;
        width: 64px;
    }
}

@media (min-width: 1024px) {
    .how-step-arrow {
        width: 96px;
        margin-left: 6px;
        margin-right: 6px;
    }
}

.how-it-works-step:last-child .how-step-arrow {
    display: none;
}

.how-it-works-palm {
    position: absolute;
    right: 16px;
    bottom: -1.5rem;
    font-size: 56px;
    color: rgba(0, 0, 0, 0.06);
    pointer-events: none;
}

@media (max-width: 1279px) {
    .how-it-works-palm {
        display: none;
    }
}

/* Package picks from each Season */
.season-packages-section {
    padding: 50px 0 56px;
    background: #fff;
    position: relative;
}

.season-packages-section .season-header h2 {
    color: #1e3a5f;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.season-packages-section .season-header h2 i {
    color: #1e3a5f;
    font-size: 20px;
}

.season-packages-section .season-header p {
    color: #71797e;
    font-size: 13px;
    margin-top: 8px;
}

.season-month-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding: 0 8px;
}

.season-month-label {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.season-month-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.season-month-tab {
    padding: 6px 12px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #555;
    font-size: 12px;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.season-month-tab:hover {
    border-color: #b0b0b0;
}

.season-month-tab.active {
    background: #1e3a5f;
    color: #fff;
    border-color: #1e3a5f;
}

.season-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 36px;
}

.season-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    flex: 1;
    padding: 6px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.season-slider:active {
    cursor: grabbing;
}

.season-slider::-webkit-scrollbar {
    display: none;
}

.season-slider-prev,
.season-slider-next {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.season-slider-prev:hover,
.season-slider-next:hover {
    background: #f5f5f5;
    border-color: #1e3a5f;
    color: #1e3a5f;
}

.season-package-card {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s, transform 0.2s;
}

.season-package-card:hover {
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
    transform: translateY(-2px);
}

.season-package-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.season-card-image {
    width: 100%;
    height: 168px;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.season-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.season-package-card .season-card-title {
    padding: 14px 14px 10px;
    font-size: 15px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.season-card-price-wrap {
    margin: 0 14px 14px;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.season-card-label {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.season-card-price {
    font-size: 13px;
    color: #334155;
    line-height: 1.45;
    font-weight: 500;
}

@media (max-width: 767px) {
    .season-packages-section .season-header h2 {
        font-size: 20px;
    }
    .season-packages-section .season-header h2 i {
        font-size: 18px;
    }
    .season-month-row {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 16px;
    }
    .season-month-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        width: 100%;
        padding-bottom: 4px;
        gap: 6px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .season-month-tabs::-webkit-scrollbar {
        display: none;
    }
    .season-slider-wrapper {
        padding: 0 32px;
    }
    .season-package-card {
        flex: 0 0 260px;
    }
    .season-card-image {
        height: 150px;
    }
    .season-package-card .season-card-title {
        font-size: 14px;
        padding: 12px 12px 8px;
    }
    .season-card-price-wrap {
        margin: 0 12px 12px;
        padding: 10px 12px;
    }
    .season-card-price {
        font-size: 12px;
    }
}

/* Places you can explore with alleppeyboat.in */
.places-explore-section {
    padding: 50px 0 56px;
    background: #fff;
    position: relative;
}

.places-explore-header {
    text-align: center;
    margin-bottom: 32px;
}

.places-explore-header h2 {
    color: #1e3a5f;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.places-explore-header h2 i {
    color: #1e3a5f;
    font-size: 20px;
}

.places-explore-header p {
    color: #71797e;
    font-size: 13px;
    margin-top: 8px;
}

.places-explore-deco {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #d0d5da;
    font-size: 24px;
    opacity: 0.7;
    pointer-events: none;
}

.places-explore-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.places-explore-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s, transform 0.2s;
    grid-column: span 2;
}

/* Kashmir: wider card (≈2× others) in row 1 */
.places-explore-card--wide {
    grid-column: span 4;
}

/* Sikkim: full-width card in row 3 */
.places-explore-card--full {
    grid-column: span 6;
}

.places-explore-card--full .places-explore-image {
    aspect-ratio: 21/9;
}

.places-explore-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.places-explore-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.places-explore-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.places-explore-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 14px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.places-explore-overlay h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.places-explore-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.95;
}

.places-explore-btn {
    display: inline-block;
    align-self: flex-start;
    margin-top: 2px;
    padding: 8px 14px;
    background: #30d5c8;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s, opacity 0.2s;
}

.places-explore-card:hover .places-explore-btn {
    background: #2ac4b8;
}

@media (max-width: 991px) {
    .places-explore-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .places-explore-card,
    .places-explore-card--wide,
    .places-explore-card--full {
        grid-column: span 2;
    }
    .places-explore-card--full .places-explore-image {
        aspect-ratio: 4/3;
    }
    .places-explore-deco {
        display: none;
    }
}

@media (max-width: 576px) {
    .places-explore-header h2 {
        font-size: 20px;
    }
    .places-explore-header h2 i {
        font-size: 18px;
    }
    .places-explore-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .places-explore-card,
    .places-explore-card--wide,
    .places-explore-card--full {
        grid-column: span 1;
    }
    .places-explore-overlay h4 {
        font-size: 16px;
    }
}

/* Most Visited Places */
.most-visited-section {
    padding: 50px 0 56px;
    background: #fff;
}

.most-visited-header {
    text-align: center;
    margin-bottom: 32px;
}

.most-visited-header h2 {
    color: #1e3a5f;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.most-visited-header h2 i {
    color: #5ba3e8;
    font-size: 20px;
}

.most-visited-header p {
    color: #71797e;
    font-size: 13px;
    margin-top: 8px;
}

.most-visited-block {
    margin-bottom: 32px;
}

.most-visited-block:last-child {
    margin-bottom: 0;
}

.most-visited-subhead {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.most-visited-subhead h3 {
    color: #1e3a5f;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}

.most-visited-line {
    flex: 1;
    height: 1px;
    background: #e0e0e0;
    min-width: 32px;
}

.most-visited-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

.most-visited-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    flex: 1;
    padding: 6px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.most-visited-slider:active {
    cursor: grabbing;
}

.most-visited-slider::-webkit-scrollbar {
    display: none;
}

.most-visited-prev {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    margin-right: 10px;
}

.most-visited-next {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    margin-left: 10px;
}

.most-visited-prev:hover,
.most-visited-next:hover {
    background: #f5f5f5;
    border-color: #1e3a5f;
    color: #1e3a5f;
}

.most-visited-card {
    flex: 0 0 260px;
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s;
}

.most-visited-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.most-visited-image {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.most-visited-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.most-visited-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.most-visited-overlay h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.most-visited-dots {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: 10px;
    flex-shrink: 0;
    align-self: center;
}

.most-visited-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d0d5da;
    opacity: 0.7;
}

@media (max-width: 767px) {
    .most-visited-header h2 {
        font-size: 20px;
    }
    .most-visited-header h2 i {
        font-size: 18px;
    }
    .most-visited-subhead h3 {
        font-size: 16px;
    }
    .most-visited-slider-wrapper {
        padding: 0 32px 0 0;
    }
    .most-visited-card {
        flex: 0 0 240px;
    }
    .most-visited-image {
        height: 140px;
    }
    .most-visited-overlay h4 {
        font-size: 13px;
    }
}

/* Our Achievements */
.achievements-section {
    padding: 50px 0 56px;
    background: #1a2b52;
    position: relative;
    overflow: hidden;
}

.achievements-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(91, 163, 232, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.achievements-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.achievements-header-line {
    width: 4px;
    height: 40px;
    flex-shrink: 0;
    background: #30d5c8;
    border-radius: 2px;
}

.achievements-header-text h2 {
    color: #30d5c8;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.achievements-header-text h2 i {
    color: #fff;
    font-size: 20px;
    opacity: 0.9;
}

.achievements-header-text p {
    color: #fff;
    font-size: 13px;
    margin: 0;
    opacity: 0.95;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: start;
}

.achievement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.achievement-icon {
    color: #fff;
    font-size: 28px;
    margin-bottom: 12px;
    opacity: 0.95;
}

.achievement-value {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
}

.achievement-label {
    font-size: 13px;
    color: #fff;
    opacity: 0.9;
    line-height: 1.3;
}

.achievement-item--mission .achievement-value {
    font-size: 18px;
    font-weight: 700;
}

.achievement-item--mission .achievement-label {
    font-size: 13px;
}

@media (max-width: 991px) {
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .achievements-header-text h2 {
        font-size: 22px;
    }
    .achievements-header-text h2 i {
        font-size: 18px;
    }
    .achievements-header-line {
        height: 36px;
    }
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .achievement-icon {
        font-size: 26px;
    }
    .achievement-value {
        font-size: 20px;
    }
    .achievement-item--mission .achievement-value {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* Gangtok Tour Packages New Year Banner */
.gangtok-banner-section {
    padding: 44px 0;
    background: #fff;
}

.gangtok-banner {
    position: relative;
    width: 100%;
    min-height: 150px;
    padding: 28px 36px;
    background: #30d5c8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gangtok-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 1;
}

@media (min-width: 768px) {
    .gangtok-banner-content {
        flex-direction: row;
        gap: 32px;
    }
}

.gangtok-banner-title {
    font-family: "Bebas Neue", "Franklin Gothic Bold", sans-serif;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0;
    text-align: center;
    letter-spacing: 0.02em;
}

.gangtok-banner-title br + .gangtok-banner-subtitle {
    display: block;
    margin-top: 2px;
}

.gangtok-banner-subtitle {
    font-size: 0.85em;
    font-weight: 700;
    color: #1e3a5f;
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .gangtok-banner-title {
        font-size: 28px;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .gangtok-banner-title {
        font-size: 32px;
    }
}

.gangtok-banner-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #1e3a5f;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.gangtok-banner-btn:hover {
    background: #152a47;
    transform: translateY(-2px);
}

/* Decorative icons – varied sizes, positioned around banner */
.gangtok-banner-deco {
    position: absolute;
    color: rgba(30, 59, 95, 0.25);
    pointer-events: none;
    z-index: 0;
}

.gangtok-deco--left { left: 0; }
.gangtok-deco--right { right: 0; }

.gangtok-deco--plane {
    top: 18%;
    left: 8%;
    font-size: 22px;
}

.gangtok-deco--balloon {
    top: 12%;
    left: 4%;
    font-size: 18px;
}

.gangtok-deco--cloud {
    top: 8%;
    left: 14%;
    font-size: 14px;
}

.gangtok-deco--landmark {
    bottom: 10%;
    left: 6%;
    font-size: 24px;
}

.gangtok-deco--car {
    bottom: 5%;
    left: 2%;
    font-size: 28px;
}

.gangtok-deco--map {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    font-size: 20px;
}

.gangtok-deco--globe {
    bottom: 8%;
    right: 6%;
    font-size: 28px;
}

.gangtok-deco--plane-sm {
    top: 22%;
    right: 14%;
    font-size: 16px;
}

.gangtok-deco--balloon-sm {
    top: 16%;
    right: 4%;
    font-size: 12px;
}

@media (max-width: 767px) {
    .gangtok-banner-deco {
        opacity: 0.5;
    }
    .gangtok-banner {
        min-height: 130px;
        padding: 24px 20px;
    }
    .gangtok-deco--plane { font-size: 16px !important; }
    .gangtok-deco--balloon { font-size: 14px !important; }
    .gangtok-deco--cloud { font-size: 12px !important; }
    .gangtok-deco--landmark { font-size: 18px !important; }
    .gangtok-deco--car { font-size: 20px !important; }
    .gangtok-deco--map { font-size: 14px !important; }
    .gangtok-deco--globe { font-size: 20px !important; }
    .gangtok-deco--plane-sm { font-size: 12px !important; }
    .gangtok-deco--balloon-sm { font-size: 10px !important; }
}

/* Blog Section */
.blog-section {
    padding: 50px 0 56px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Blog header: centered title + icon, View More top-right */
.blog-section-header {
    margin-bottom: 32px;
}
.blog-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.blog-header-spacer {
    flex: 1;
    min-width: 0;
}
.blog-header-spacer.blog-header-right {
    display: flex;
    justify-content: flex-end;
}
.blog-section-header .blog-title {
    color: #1e3a5f;
    font-size: 24px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.blog-section-header .blog-title i.fa-paper-plane {
    color: #30d5c8;
    font-size: 20px;
}
.blog-header-subtitle {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin: 8px 0 0;
}
.btn-view-more--blog {
    background: #30d5c8 !important;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-view-more--blog:hover {
    background: #28b8ad !important;
}

/* Balloon outlines on the left – largest at bottom, smallest at top */
.blog-balloons {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    pointer-events: none;
    z-index: 0;
}
.blog-balloons span {
    display: block;
    border: 2px solid rgba(176, 184, 194, 0.6);
    border-radius: 50%;
    background: transparent;
}
.blog-balloons span:nth-child(1) {
    width: 22px;
    height: 22px;
}
.blog-balloons span:nth-child(2) {
    width: 34px;
    height: 34px;
}
.blog-balloons span:nth-child(3) {
    width: 48px;
    height: 48px;
}

.blog-section .container {
    position: relative;
    z-index: 1;
}

.btn-view-more {
    padding: 10px 24px;
    background: #4CAF50;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-view-more:hover {
    background: #45a049;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.blog-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.blog-content {
    padding: 18px;
}

.blog-date {
    color: #666;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.blog-content h3 {
    color: #333;
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 10px;
}

.read-more {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
}

/* Our Commitment to Safe Holidays */
.safe-holidays-section {
    padding: 36px 0 48px;
    background: #f5f6f7;
    position: relative;
    overflow: hidden;
}

.safe-holidays-section .container.safe-holidays-container,
.safe-holidays-section .container {
    position: relative;
    z-index: 1;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .safe-holidays-section .container.safe-holidays-container,
    .safe-holidays-section .container {
        max-width: 85%;
    }
}

.safe-holidays-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 24px;
}

.safe-holidays-title-wrap {
    position: relative;
    margin-bottom: 8px;
}

.safe-holidays-title {
    color: #1e3a5f;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

@media (min-width: 768px) {
    .safe-holidays-title {
        font-size: 24px;
    }
}

.safe-holidays-flight-icon {
    position: absolute;
    top: 0;
    right: -1.7rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.safe-holidays-flight-icon i {
    color: #30d5c8;
    font-size: 1.5rem;
}

@media (min-width: 1024px) {
    .safe-holidays-flight-icon {
        top: -0.5rem;
        right: -2.5rem;
        width: 3rem;
        height: 3rem;
    }
    .safe-holidays-flight-icon i {
        font-size: 2rem;
    }
}

.safe-holidays-subtitle {
    color: #5c6b7a;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    max-width: 640px;
}

@media (min-width: 768px) {
    .safe-holidays-subtitle {
        font-size: 13px;
    }
}

.safe-holidays-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .safe-holidays-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .safe-holidays-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.safe-holidays-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.safe-holidays-card-img {
    width: 100%;
    height: auto;
    min-height: 140px;
    max-height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

@media (min-width: 1024px) {
    .safe-holidays-card-img {
        min-height: 9rem;
        max-height: 11rem;
    }
}

.safe-holidays-card-title {
    color: #000;
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

@media (min-width: 1024px) {
    .safe-holidays-card-title {
        font-size: 14px;
    }
}

.safe-holidays-card-desc {
    color: #5c6b7a;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 1024px) {
    .safe-holidays-card-desc {
        font-size: 13px;
    }
}

/* Coconut / palm decoration – right bottom, visible on xl */
.safe-holidays-coconut {
    position: absolute;
    right: 1rem;
    bottom: 0;
    width: 113px;
    height: 138px;
    pointer-events: none;
    z-index: 0;
    display: none;
}

@media (min-width: 1280px) {
    .safe-holidays-coconut {
        display: block;
    }
}

/* Additional Features */
.additional-features {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Find The Best Travel Packages & Popular Tours – compact */
.find-packages-section {
    background: #fff;
    padding: 28px 0 24px;
    color: #333;
}

.find-packages-container {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.find-packages-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a5f;
    text-align: center;
    margin-bottom: 8px;
}

.find-packages-desc {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    max-width: 720px;
    margin: 0 auto 20px;
    text-align: center;
}

.popular-tours-block {
    margin-top: 18px;
}

.popular-tours-header {
    text-align: center;
    margin-bottom: 14px;
}

.popular-tours-title-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 4px;
}

.popular-tours-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0;
}

.popular-tours-icon {
    position: absolute;
    top: -0.2rem;
    right: -1.4rem;
    width: 1.4rem;
    height: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.popular-tours-icon i {
    color: #30d5c8;
    font-size: 0.85rem;
}

.popular-tours-subtitle {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.popular-tours-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 14px 0 16px;
}

.popular-tours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 36px;
    max-width: 640px;
    margin: 0 auto;
}

.popular-tours-col-head {
    font-size: 0.7rem;
    font-weight: 700;
    color: #444;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.popular-tours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-tours-list li {
    margin-bottom: 4px;
}

.popular-tours-list li a {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.popular-tours-list li a:hover {
    color: #1e3a5f;
}

/* ========== Article / Blog Page (e.g. Top Places Rishikesh) ========== */
.article-page .header {
    background: #1e3a5f;
    border-bottom: none;
    position: relative;
    top: 0;
}
.article-header .logo-text,
.article-header .main-nav a,
.article-header .phone-number,
.article-header .support-text,
.article-header .phone-link { color: #fff; text-shadow: none; }
.article-header .main-nav a:hover { opacity: 0.9; color: #fff; }

/* Article page: use core find-packages block with dark blue variant */
.article-page .find-packages-section--article,
.article-page .find-packages-section.find-packages-section--article {
    background: #1e3a5f;
    padding: 20px 0 24px;
    color: #fff;
}
.article-page .find-packages-section--article .find-packages-title,
.article-page .find-packages-section.find-packages-section--article .find-packages-title { color: #fff; }
.article-page .find-packages-section--article .find-packages-desc,
.article-page .find-packages-section.find-packages-section--article .find-packages-desc { color: rgba(255,255,255,0.9); }
.article-page .find-packages-section--article .popular-tours-title,
.article-page .find-packages-section--article .popular-tours-col-head { color: #fff; }
.article-page .find-packages-section--article .popular-tours-subtitle { color: rgba(255,255,255,0.85); }
.article-page .find-packages-section--article .popular-tours-divider { border-color: rgba(255,255,255,0.25); }
.article-page .find-packages-section--article .popular-tours-list a { color: rgba(255,255,255,0.9); }
.article-page .find-packages-section--article .popular-tours-list a:hover { color: #fff; }
.article-page .find-packages-section--article .popular-tours-icon i { color: #fff; }

.article-hero {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.article-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1587474260584-136574528ed5?w=1600&h=600&fit=crop') center/cover no-repeat;
    background-color: #1e3a5f;
}
.article-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30,58,95,0.5);
}
.article-hero-title {
    position: relative;
    z-index: 2;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Activity detail page (same layout as blog-details, activity-specific hero & CTA) */
.activity-detail-page .header {
    background: #1e3a5f;
    border-bottom: none;
    position: relative;
    top: 0;
}
.activity-detail-page .article-header .logo-text,
.activity-detail-page .article-header .main-nav a,
.activity-detail-page .article-header .phone-number,
.activity-detail-page .article-header .support-text,
.activity-detail-page .article-header .phone-link { color: #fff; text-shadow: none; }
.activity-detail-page .article-header .main-nav a:hover { opacity: 0.9; color: #fff; }
.activity-hero-bg {
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600&h=600&fit=crop') center/cover no-repeat;
    background-color: #1e3a5f;
}
.activity-detail-cta .sidebar-about { margin-bottom: 14px; }
.activity-detail-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 10px;
    background: #1e3a5f;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    transition: background 0.2s;
}
.activity-detail-cta-btn:hover { background: #2d4a6f; color: #fff; }
.activity-detail-cta-btn-secondary {
    background: #fff;
    color: #1e3a5f;
    border: 2px solid #1e3a5f;
}
.activity-detail-cta-btn-secondary:hover { background: #f1f5f9; color: #1e3a5f; }

/* Activity detail page – redesigned content layout */
.activity-gallery { padding-top: 24px; }
.activity-gallery .tour-gallery-title { margin-bottom: 24px; }
.activity-main-wrap { background: #f8fafc; padding: 32px 0 48px; }
.activity-main-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.activity-main-grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.activity-content-col { min-width: 0; }
.activity-page-title { font-size: 28px; font-weight: 700; color: #1a1d21; margin: 0 0 12px; line-height: 1.3; }
.activity-lead { font-size: 16px; color: #475569; line-height: 1.65; margin: 0 0 24px; }
.activity-overview { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 24px; padding: 18px 20px; background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; }
.activity-overview-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #334155; }
.activity-overview-item i { color: #1e3a5f; font-size: 16px; }
.activity-include { margin-bottom: 24px; padding: 18px 20px; background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; }
.activity-include-head { font-size: 15px; font-weight: 600; color: #1e3a5f; margin: 0 0 12px; }
.activity-include-list { display: flex; flex-wrap: wrap; gap: 14px; }
.activity-include-list span { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #475569; }
.activity-include-list i { color: #1e3a5f; }
.activity-highlights { margin-bottom: 28px; padding: 18px 20px; background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; }
.activity-highlights-head { font-size: 15px; font-weight: 600; color: #1e3a5f; margin: 0 0 12px; }
.activity-highlights ul { margin: 0; padding-left: 20px; color: #334155; font-size: 14px; line-height: 1.65; }
.activity-highlights li { margin-bottom: 6px; }
.activity-sections { display: flex; flex-direction: column; gap: 20px; }
.activity-section-card { padding: 22px 24px; background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; }
.activity-section-title { font-size: 17px; font-weight: 600; color: #1e3a5f; margin: 0 0 12px; display: flex; align-items: center; gap: 8px; }
.activity-section-title i { opacity: 0.9; }
.activity-section-card p { font-size: 15px; color: #475569; line-height: 1.7; margin: 0; }
.activity-section-card p + .activity-cta-inline { margin-top: 16px; }
.activity-cta-inline { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: #1e3a5f; color: #fff; font-size: 14px; font-weight: 600; text-decoration: none; border-radius: 8px; transition: background 0.2s; }
.activity-cta-inline:hover { background: #2d4a6f; color: #fff; }
.activity-sidebar { position: sticky; top: 100px; }
.activity-booking-card { background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; box-shadow: 0 4px 16px rgba(15,23,42,0.06); padding: 22px; margin-bottom: 24px; }
.activity-booking-title { font-size: 16px; font-weight: 700; color: #1e3a5f; margin: 0 0 10px; }
.activity-booking-desc { font-size: 13px; color: #475569; line-height: 1.55; margin: 0 0 18px; }
.activity-booking-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px 16px; margin-bottom: 10px; background: #1e3a5f; color: #fff; font-size: 14px; font-weight: 600; text-decoration: none; border-radius: 8px; transition: background 0.2s; }
.activity-booking-btn:last-child { margin-bottom: 0; }
.activity-booking-btn:hover { background: #2d4a6f; color: #fff; }
.activity-booking-btn-outline { background: #fff; color: #1e3a5f; border: 2px solid #1e3a5f; }
.activity-booking-btn-outline:hover { background: #f1f5f9; color: #1e3a5f; }
.activity-sidebar .sidebar-block { margin-bottom: 24px; padding: 20px; background: #fff; border-radius: 10px; border: 1px solid #e2e8f0; }

@media (max-width: 1023px) {
    .activity-main-grid { grid-template-columns: 1fr; }
    .activity-sidebar { position: static; }
}
@media (max-width: 767px) {
    .activity-page-title { font-size: 22px; }
    .activity-overview { flex-direction: column; gap: 12px; padding: 16px; }
    .activity-section-card { padding: 18px; }
    .activity-gallery .tour-gallery-wrap { padding: 0 44px; }
}

.article-main-wrap { background: #fff; padding: 32px 0 48px; }
.article-main-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.article-main-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }

.article-content { min-width: 0; }
.article-title { font-size: 28px; font-weight: 700; color: #1a1d21; margin: 0 0 20px; text-align: center; line-height: 1.3; }
.article-intro { margin-bottom: 28px; }
.article-intro p { font-size: 15px; color: #334155; line-height: 1.7; margin: 0 0 14px; }
.article-list-head { font-size: 20px; font-weight: 700; color: #1e3a5f; margin: 0 0 12px; }
.article-list-intro { font-size: 15px; color: #475569; line-height: 1.65; margin: 0 0 28px; }

.place-card { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid #e2e8f0; }
.place-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.place-card-title { font-size: 22px; font-weight: 700; color: #1e3a5f; margin: 0 0 14px; }
.place-card-img { width: 100%; height: auto; max-height: 380px; object-fit: cover; border-radius: 10px; margin-bottom: 16px; display: block; }
.place-card p { font-size: 15px; color: #475569; line-height: 1.7; margin: 0 0 16px; }
.place-details-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-top: 12px;
}
.place-details-table th,
.place-details-table td { border: 1px solid #e2e8f0; padding: 10px 14px; text-align: left; vertical-align: top; }
.place-details-table th { background: #f1f5f9; font-weight: 600; color: #1e3a5f; }
.place-details-table td { background: #fff; color: #334155; }
.place-details-table tr:nth-child(even) td { background: #f8fafc; }
.place-details-table .indent { padding-left: 24px; font-size: 13px; color: #64748b; }

.article-sidebar { position: sticky; top: 100px; }
.sidebar-block { margin-bottom: 28px; padding: 20px; background: #f8fafc; border-radius: 10px; border: 1px solid #e2e8f0; }
.sidebar-title { font-size: 15px; font-weight: 700; color: #1e3a5f; margin: 0 0 14px; }
.sidebar-share { display: flex; gap: 10px; }
.sidebar-share-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; background: #1e3a5f; color: #fff; text-decoration: none; transition: background 0.2s; }
.sidebar-share-link:hover { background: #2d4a6f; color: #fff; }
.sidebar-categories { list-style: none; margin: 0; padding: 0; }
.sidebar-categories li { margin-bottom: 6px; }
.sidebar-categories a { color: #475569; text-decoration: none; font-size: 14px; }
.sidebar-categories a:hover { color: #1e3a5f; }
.sidebar-about { font-size: 13px; color: #475569; line-height: 1.6; margin: 0; }
.sidebar-blogs { list-style: none; margin: 0; padding: 0; }
.sidebar-blogs li { margin-bottom: 8px; }
.sidebar-blogs a { color: #475569; text-decoration: none; font-size: 14px; }
.sidebar-blogs a:hover { color: #1e3a5f; }

@media (max-width: 1023px) {
    .article-main-grid { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
}
@media (max-width: 767px) {
    .article-hero { height: 200px; }
    .article-hero-title { font-size: 22px; }
    .article-title { font-size: 22px; }
    .place-card-title { font-size: 18px; }
    .place-details-table { font-size: 13px; }
    .place-details-table th,
    .place-details-table td { padding: 8px 10px; }
}

/* ========== All Blogs / News Listing Page (e.g. alleppeyboat.in/news) ========== */
.blogs-page .header.blogs-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    top: 0;
    box-shadow: none;
}
.blogs-page .blogs-header .logo-text,
.blogs-page .blogs-header .main-nav a,
.blogs-page .blogs-header .phone-number,
.blogs-page .blogs-header .support-text { color: #1e3a5f; text-shadow: none; }
.blogs-page .blogs-header .phone-link { color: #1e3a5f; }
.blogs-page .blogs-header .main-nav a:hover { opacity: 0.8; color: #1e3a5f; }
.blogs-page .blogs-header .logo-circle { border-color: #e5e7eb; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }

.blogs-book-flight-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #1e3a5f;
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    transition: background 0.2s;
}
.blogs-book-flight-btn:hover { background: #2d4a6f; color: #fff !important; }
.blogs-page .blogs-header .header-actions { display: flex; align-items: center; gap: 16px; }
.blogs-page .blogs-header .support-text { display: none; }

/* Blogs hero */
.blogs-hero {
    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.blogs-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1600&h=700&fit=crop') center/cover no-repeat;
    background-color: #1e3a5f;
}
.blogs-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30,58,95,0.5);
}
.blogs-hero-title {
    position: relative;
    z-index: 2;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* Blogs main layout */
.blogs-main-wrap { background: #fff; padding: 40px 0 48px; }
.blogs-main-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.blogs-main-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.blog-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-color: #cbd5e1; }
.blog-card-img-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 600 / 340;
    overflow: hidden;
    background: #f1f5f9;
}
.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-card-body { padding: 20px; }
.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 12px;
    line-height: 1.35;
}
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: #2d4a6f; text-decoration: underline; }
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}
.blog-card-meta i { margin-right: 4px; opacity: 0.8; }
.blog-card-excerpt {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-read-more {
    font-size: 14px;
    font-weight: 600;
    color: #1e3a5f;
    text-decoration: none;
}
.blog-card-read-more:hover { text-decoration: underline; }

/* Blogs sidebar (reuses .sidebar-block, .sidebar-title, .sidebar-about, .sidebar-categories, .sidebar-blogs) */
.blogs-sidebar { position: sticky; top: 100px; }
.blogs-sidebar .sidebar-block { margin-bottom: 28px; padding: 20px; background: #f8fafc; border-radius: 10px; border: 1px solid #e2e8f0; }
.blogs-sidebar .sidebar-title { font-size: 15px; font-weight: 700; color: #1e3a5f; margin: 0 0 14px; }
.blogs-sidebar .sidebar-categories,
.blogs-sidebar .sidebar-blogs { list-style: none; margin: 0; padding: 0; }
.blogs-sidebar .sidebar-categories li,
.blogs-sidebar .sidebar-blogs li { margin-bottom: 8px; }
.blogs-sidebar .sidebar-categories a,
.blogs-sidebar .sidebar-blogs a { color: #475569; text-decoration: none; font-size: 14px; }
.blogs-sidebar .sidebar-categories a:hover,
.blogs-sidebar .sidebar-blogs a:hover { color: #1e3a5f; }
.blogs-sidebar .sidebar-about { font-size: 13px; color: #475569; line-height: 1.6; margin: 0; }

/* Show More */
.blogs-show-more {
    text-align: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}
.blogs-show-more-text {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 16px;
}
.blogs-show-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: #1e3a5f;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.blogs-show-more-btn:hover { background: #2d4a6f; }

/* WhatsApp float */
.blogs-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.blogs-whatsapp-float:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(37,211,102,0.5); color: #fff; }

@media (max-width: 1023px) {
    .blogs-main-grid { grid-template-columns: 1fr; }
    .blogs-sidebar { position: static; }
    .blogs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .blogs-hero { height: 240px; }
    .blogs-hero-title { font-size: 28px; }
    .blogs-book-flight-btn { padding: 8px 14px; font-size: 13px; }
}

/* ========== Activities Grid Page ========== */
.activities-page .header.activities-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    top: 0;
    box-shadow: none;
}
.activities-page .activities-header .logo-text,
.activities-page .activities-header .main-nav a,
.activities-page .activities-header .phone-number,
.activities-page .activities-header .support-text { color: #1e3a5f; text-shadow: none; }
.activities-page .activities-header .phone-link { color: #1e3a5f; }
.activities-page .activities-header .main-nav a:hover { opacity: 0.8; color: #1e3a5f; }
.activities-page .activities-header .logo-circle { border-color: #e5e7eb; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }

.activities-hero {
    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.activities-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600&h=700&fit=crop') center/cover no-repeat;
    background-color: #1e3a5f;
}
.activities-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30,58,95,0.5);
}
.activities-hero-title {
    position: relative;
    z-index: 2;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.activities-hero-sub {
    position: relative;
    z-index: 2;
    font-size: 16px;
    color: rgba(255,255,255,0.95);
    text-align: center;
    margin: 8px 0 0;
    padding: 0 20px;
}

.activities-main-wrap { background: #fff; padding: 40px 0 48px; }
.activities-main-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.activities-main-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.activity-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.activity-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-color: #cbd5e1; }
.activity-card-img-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 600 / 340;
    overflow: hidden;
    background: #f1f5f9;
}
.activity-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.activity-card:hover .activity-card-img { transform: scale(1.03); }
.activity-card-body { padding: 20px; }
.activity-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 10px;
    line-height: 1.35;
}
.activity-card-title a { color: inherit; text-decoration: none; }
.activity-card-title a:hover { color: #2d4a6f; text-decoration: underline; }
.activity-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}
.activity-card-meta i { margin-right: 4px; opacity: 0.85; }
.activity-card-excerpt {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.activity-card-link {
    font-size: 14px;
    font-weight: 600;
    color: #1e3a5f;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.activity-card-link:hover { color: #2d4a6f; text-decoration: underline; }

.activities-sidebar { position: sticky; top: 100px; }
.activities-sidebar .sidebar-block { margin-bottom: 28px; padding: 20px; background: #f8fafc; border-radius: 10px; border: 1px solid #e2e8f0; }
.activities-sidebar .sidebar-title { font-size: 15px; font-weight: 700; color: #1e3a5f; margin: 0 0 14px; }
.activities-sidebar .sidebar-about { font-size: 13px; color: #475569; line-height: 1.6; margin: 0; }
.activities-sidebar .sidebar-blogs { list-style: none; margin: 0; padding: 0; }
.activities-sidebar .sidebar-blogs li { margin-bottom: 8px; }
.activities-sidebar .sidebar-blogs a { color: #475569; text-decoration: none; font-size: 14px; }
.activities-sidebar .sidebar-blogs a:hover { color: #1e3a5f; }
.activity-cta-block .sidebar-about { margin-bottom: 14px; }
.activity-sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 10px;
    background: #1e3a5f;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
}
.activity-sidebar-cta:last-of-type { margin-bottom: 0; }
.activity-sidebar-cta:hover { background: #2d4a6f; color: #fff; }
.activity-sidebar-cta-outline { background: #fff; color: #1e3a5f; border: 2px solid #1e3a5f; }
.activity-sidebar-cta-outline:hover { background: #f1f5f9; color: #1e3a5f; }

/* Activities page – alternate layout: intro strip + full-width alternating rows + CTA strip */
.activities-intro {
    background: #f8fafc;
    padding: 24px 0;
    border-bottom: 1px solid #e2e8f0;
}
.activities-intro-text {
    margin: 0;
    font-size: 16px;
    color: #475569;
    line-height: 1.65;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.activities-intro-text a { color: #1e3a5f; font-weight: 600; text-decoration: none; }
.activities-intro-text a:hover { text-decoration: underline; }

.activities-list-wrap {
    background: #fff;
    padding: 0;
}
.activity-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: 380px;
    border-bottom: 1px solid #e2e8f0;
}
.activity-row:last-of-type { border-bottom: none; }
.activity-row--reverse { flex-direction: row-reverse; }
.activity-row-media {
    flex: 0 0 50%;
    min-width: 0;
    display: block;
    overflow: hidden;
    background: #f1f5f9;
}
.activity-row-media img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.activity-row-media:hover img { transform: scale(1.04); }
.activity-row-content {
    flex: 0 0 50%;
    min-width: 0;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.activity-row-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1e3a5f;
    margin-bottom: 10px;
    opacity: 0.9;
}
.activity-row-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1d21;
    margin: 0 0 14px;
    line-height: 1.3;
}
.activity-row-title a { color: inherit; text-decoration: none; }
.activity-row-title a:hover { color: #1e3a5f; text-decoration: underline; }
.activity-row-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
}
.activity-row-meta i { margin-right: 6px; opacity: 0.85; }
.activity-row-excerpt {
    font-size: 16px;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 24px;
}
.activity-row-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1e3a5f;
    text-decoration: none;
    transition: color 0.2s;
}
.activity-row-btn:hover { color: #2d4a6f; text-decoration: underline; }
.activity-row-btn i { font-size: 12px; transition: transform 0.2s; }
.activity-row-btn:hover i { transform: translateX(4px); }

.activities-cta-strip {
    background: #1e3a5f;
    padding: 40px 0;
    color: #fff;
}
.activities-cta-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.activities-cta-strip-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #fff;
}
.activities-cta-strip-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin: 0;
    line-height: 1.5;
}
.activities-cta-strip-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.activities-cta-strip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: #fff;
    color: #1e3a5f;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.activities-cta-strip-btn:hover { background: #f1f5f9; color: #1e3a5f; }
.activities-cta-strip-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.9);
}
.activities-cta-strip-btn-outline:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: #fff; }

/* Activities search and filter */
.activities-search-wrap {
    background: #fff;
    padding: 24px 0 20px;
    border-bottom: 1px solid #e2e8f0;
}
.activities-search-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.activities-search-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}
.activities-search-input-wrap {
    position: relative;
    flex: 1;
    min-width: 260px;
    max-width: 420px;
}
.activities-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 16px;
    pointer-events: none;
}
.activities-search-input {
    width: 100%;
    padding: 12px 40px 12px 44px;
    font-size: 15px;
    color: #1a1d21;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.activities-search-input::placeholder { color: #94a3b8; }
.activities-search-input:hover { border-color: #cbd5e1; }
.activities-search-input:focus {
    outline: none;
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30,58,95,0.12);
}
.activities-search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background 0.2s, color 0.2s;
}
.activities-search-clear:hover { background: #e2e8f0; color: #1e3a5f; }
.activities-filter-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.activities-filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    margin: 0;
}
.activity-filter-chip {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.activity-filter-chip:hover { background: #f1f5f9; border-color: #cbd5e1; color: #1e3a5f; }
.activity-filter-chip.active {
    background: #1e3a5f;
    border-color: #1e3a5f;
    color: #fff;
}
.activity-filter-chip.active:hover { background: #2d4a6f; border-color: #2d4a6f; color: #fff; }
.activities-results-summary {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}
.activities-results-summary strong { color: #334155; }
.activities-no-results {
    text-align: center;
    padding: 48px 20px;
    font-size: 16px;
    color: #64748b;
    margin: 0;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px dashed #e2e8f0;
}

/* Activities pagination */
.activities-pagination-wrap {
    background: #fff;
    padding: 28px 0 40px;
    border-top: 1px solid #e2e8f0;
}
.activities-pagination-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.activities-pagination {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.activities-pagination li { margin: 0; }
.activities-pagination-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.activities-pagination-btn:hover:not(:disabled) {
    background: #f8fafc;
    border-color: #1e3a5f;
    color: #1e3a5f;
}
.activities-pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.activities-pagination-btn.active {
    background: #1e3a5f;
    border-color: #1e3a5f;
    color: #fff;
}
.activities-pagination-btn.active:hover { background: #2d4a6f; border-color: #2d4a6f; color: #fff; }
.activities-pagination-prev,
.activities-pagination-next { padding: 0 12px; }
.activities-pagination-num { min-width: 40px; }

@media (max-width: 1023px) {
    .activities-main-grid { grid-template-columns: 1fr; }
    .activities-sidebar { position: static; }
    .activities-grid { grid-template-columns: 1fr; }
    .activity-row,
    .activity-row--reverse { flex-direction: column; min-height: 0; }
    .activity-row-media,
    .activity-row-content { flex: 0 0 100%; }
    .activity-row-media img { min-height: 280px; }
    .activity-row-content { padding: 32px 24px; }
    .activity-row-title { font-size: 22px; }
    .activities-cta-strip-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 767px) {
    .activities-hero { height: 260px; }
    .activities-hero-title { font-size: 28px; }
    .activities-hero-sub { font-size: 14px; }
    .activities-intro { padding: 20px 16px; }
    .activities-intro-text { font-size: 15px; }
    .activity-row-content { padding: 24px 20px; }
    .activity-row-title { font-size: 20px; }
    .activity-row-excerpt { font-size: 15px; }
    .activities-cta-strip { padding: 32px 0; }
    .activities-cta-strip-title { font-size: 20px; }
    .activities-cta-strip-actions { justify-content: center; }
    .activities-cta-strip-btn { padding: 12px 20px; font-size: 14px; }
    .activities-search-wrap { padding: 20px 16px 16px; }
    .activities-search-input-wrap { max-width: none; }
    .activities-search-row { flex-direction: column; align-items: stretch; }
    .activities-filter-chips { justify-content: flex-start; }
    .activities-pagination-wrap { padding: 20px 0 32px; }
    .activities-pagination-btn { min-width: 36px; height: 36px; padding: 0 10px; font-size: 13px; }
}

/* ========== Contact Page (e.g. alleppeyboat.in/contact) ========== */
.contact-page .header.contact-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    top: 0;
    box-shadow: none;
}
.contact-page .contact-header .logo-text,
.contact-page .contact-header .main-nav a,
.contact-page .contact-header .phone-number,
.contact-page .contact-header .support-text { color: #1e3a5f; text-shadow: none; }
.contact-page .contact-header .phone-link { color: #1e3a5f; }
.contact-page .contact-header .main-nav a:hover { opacity: 0.8; color: #1e3a5f; }
.contact-page .contact-header .logo-circle { border-color: #e5e7eb; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }

/* Contact hero */
.contact-hero {
    position: relative;
    width: 100%;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px 100px;
}
.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&h=900&fit=crop') center/cover no-repeat;
    background-color: #1e3a5f;
    filter: blur(2px);
    transform: scale(1.02);
}
.contact-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30,58,95,0.4);
}
.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
}
.contact-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 16px;
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}
.contact-hero-subtitle {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Contact card section */
.contact-card-section {
    margin-top: -60px;
    position: relative;
    z-index: 3;
    padding-bottom: 48px;
}
.contact-card-container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.contact-info-col {
    padding: 36px 32px;
    background: #fff;
}
.contact-logo-wrap { margin-bottom: 16px; }
.contact-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1e3a5f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.contact-info-heading {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 16px;
}
.contact-address {
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
    margin: 0 0 20px;
    font-style: normal;
}
.contact-phones p,
.contact-email,
.contact-whatsapp-links p,
.contact-website {
    font-size: 14px;
    color: #334155;
    margin: 0 0 10px;
}
.contact-phones a,
.contact-email a,
.contact-whatsapp-links a,
.contact-website a {
    color: #1e3a5f;
    text-decoration: none;
}
.contact-phones a:hover,
.contact-email a:hover,
.contact-whatsapp-links a:hover,
.contact-website a:hover { text-decoration: underline; }
.contact-region { color: #64748b; font-weight: normal; }
.contact-whatsapp-links { margin-bottom: 12px; }
.contact-whatsapp-links a { font-weight: 600; }

.contact-form-col {
    padding: 36px 32px;
    background: #f8fafc;
    border-left: 1px solid #e2e8f0;
}
.contact-form .contact-form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 8px;
}
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: #334155;
    background: #fff;
    box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form-recaptcha {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.contact-recaptcha-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
    cursor: pointer;
}
.contact-recaptcha-label input { cursor: pointer; }
.contact-privacy-link { font-size: 13px; color: #1e3a5f; text-decoration: none; }
.contact-privacy-link:hover { text-decoration: underline; }
.contact-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: #30d5c8;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-submit-btn:hover { background: #2bc4b8; color: #fff; }

/* Contact Popular Tours section */
.contact-popular-section {
    background: #fff;
    padding: 48px 0 56px;
}
.contact-popular-section .find-packages-container { max-width: 900px; margin: 0 auto; }
.contact-popular-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0;
}

/* Contact WhatsApp float */
.contact-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.contact-whatsapp-float:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(37,211,102,0.5); color: #fff; }

@media (max-width: 767px) {
    .contact-hero { min-height: 280px; padding: 60px 16px 80px; }
    .contact-hero-title { font-size: 28px; }
    .contact-hero-subtitle { font-size: 14px; }
    .contact-card { grid-template-columns: 1fr; }
    .contact-card-section { margin-top: -40px; }
    .contact-info-col,
    .contact-form-col { padding: 24px 20px; border-left: none; }
    .contact-form-col { border-top: 1px solid #e2e8f0; }
}

/* ========== Tour Detail Page (e.g. Kashmir Honeymoon) ========== */
.tour-detail-page .header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    top: 0;
    box-shadow: none;
}
.tour-detail-page .logo-text,
.tour-detail-page .main-nav a,
.tour-detail-page .phone-number,
.tour-detail-page .support-text { color: #1e3a5f; text-shadow: none; }
.tour-detail-page .phone-link { color: #1e3a5f; }
.tour-detail-page .main-nav a:hover { opacity: 0.8; color: #1e3a5f; }
.tour-detail-page .logo-circle { border-color: #e5e7eb; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }

.tour-hero { position: relative; margin-bottom: 0; }
.tour-hero-image-wrap { position: relative; width: 100%; height: 320px; overflow: hidden; background: #1e3a5f; }
.tour-hero-image { width: 100%; height: 100%; object-fit: cover; }
.tour-hero-tag { position: absolute; top: 16px; left: 16px; background: #fff; color: #1e3a5f; padding: 6px 14px; border-radius: 6px; font-size: 12px; font-weight: 600; }
.tour-hero-content { position: relative; margin-top: -48px; z-index: 2; background: #fff; border-radius: 12px 12px 0 0; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); padding: 24px 20px 20px; }
.tour-hero-title { font-size: 22px; font-weight: 700; color: #1a1d21; margin: 0 0 12px; line-height: 1.35; }
.tour-hero-meta { display: flex; align-items: center; gap: 8px; }
.tour-hero-stars { color: #fbbf24; }
.tour-hero-stars i { font-size: 14px; }
.tour-hero-reviews { font-size: 13px; color: #64748b; }

/* Tour gallery slider */
.tour-gallery { 
    background: #fff; 
    padding: 40px 0 48px; 
    border-bottom: 1px solid #e2e8f0; 
    position: relative;
    width: 100%;
}
.tour-gallery-title { 
    font-size: 22px; 
    font-weight: 700; 
    color: #1e3a5f; 
    margin: 0 0 32px; 
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
.tour-gallery-wrap {
    position: relative;
    width: 100%;
    margin: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 60px;
}
.tour-gallery-prev,
.tour-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.9);
    color: #1e3a5f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.tour-gallery-prev {
    left: 0;
}
.tour-gallery-next {
    right: 0;
}
.tour-gallery-prev:hover,
.tour-gallery-next:hover {
    background: #1e3a5f;
    border-color: #1e3a5f;
    color: #fff;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}
.tour-gallery-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.tour-gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    gap: 16px;
}
.tour-gallery-slide {
    flex: 0 0 calc((100% - 32px) / 3);
    min-width: 0;
    height: 400px;
    background: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.tour-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tour-gallery-dots-container {
    max-width: 1400px;
    margin: 20px auto 0;
    padding: 0 20px;
}
@media (min-width: 1400px) {
    .tour-gallery-slide {
        flex: 0 0 calc((100% - 48px) / 4);
    }
}
.tour-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.tour-gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.tour-gallery-dot:hover { background: #94a3b8; }
.tour-gallery-dot.active { background: #1e3a5f; transform: scale(1.2); }
.tour-gallery-dot[aria-selected="true"] { background: #1e3a5f; transform: scale(1.2); }

.tour-main-wrap { background: #f8fafc; padding: 24px 0 48px; }
.tour-main-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.tour-main-grid { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }

.tour-content-col { min-width: 0; }
.tour-overview { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }
.tour-overview-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #334155; }
.tour-overview-item i { color: #1e3a5f; font-size: 16px; }
.tour-include { margin-bottom: 24px; }
.tour-include-head { font-size: 15px; font-weight: 600; color: #1e3a5f; margin: 0 0 12px; }
.tour-include-list { display: flex; flex-wrap: wrap; gap: 16px; }
.tour-include-list span { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #475569; }
.tour-include-list i { color: #1e3a5f; }
.tour-highlights { margin-bottom: 24px; padding: 16px; background: #fff; border-radius: 10px; border: 1px solid #e2e8f0; }
.tour-highlights-head { font-size: 15px; font-weight: 600; color: #1e3a5f; margin: 0 0 12px; }
.tour-highlights ul { margin: 0; padding-left: 20px; color: #334155; font-size: 14px; line-height: 1.6; }
.tour-highlights li { margin-bottom: 6px; }

.tour-tabs { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 0; border-bottom: 2px solid #e2e8f0; }
.tour-tab { padding: 12px 18px; font-size: 14px; font-weight: 500; color: #64748b; background: none; border: none; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; }
.tour-tab:hover { color: #1e3a5f; }
.tour-tab.active { color: #1e3a5f; border-bottom-color: #1e3a5f; }
.tour-tab-panels { background: #fff; padding: 24px; border-radius: 0 0 10px 10px; border: 1px solid #e2e8f0; border-top: none; }
.tour-tab-panel { display: none; }
.tour-tab-panel.active { display: block; }
.tour-panel-title { font-size: 18px; font-weight: 600; color: #1e3a5f; margin: 0 0 8px; }
.tour-panel-sub { font-size: 13px; font-weight: 400; color: #64748b; }
.tour-view-all { font-size: 13px; color: #1e3a5f; text-decoration: none; display: inline-block; margin-bottom: 16px; }
.tour-view-all:hover { text-decoration: underline; }

.tour-itinerary-accordion { display: flex; flex-direction: column; gap: 0; }
.tour-day-item { border: 1px solid #e2e8f0; border-bottom: none; }
.tour-day-item:last-of-type { border-bottom: 1px solid #e2e8f0; }
.tour-day-item summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; font-size: 14px; font-weight: 600; color: #1a1d21; cursor: pointer; list-style: none; }
.tour-day-item summary::-webkit-details-marker { display: none; }
.tour-day-label { font-weight: 600; color: #1e3a5f; margin-right: 6px; }
.tour-day-icon { font-size: 12px; color: #64748b; flex-shrink: 0; transition: transform 0.2s; }
.tour-day-item[open] .tour-day-icon { transform: rotate(180deg); }
.tour-day-content { padding: 16px 18px 20px; background: #f8fafc; border-top: 1px solid #e2e8f0; }
.tour-day-content p { margin: 0; font-size: 14px; color: #475569; line-height: 1.6; }

.tour-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 16px; }
.tour-details-grid h4 { font-size: 14px; font-weight: 600; color: #1e3a5f; margin: 0 0 10px; }
.tour-details-grid ul { margin: 0; padding-left: 18px; font-size: 13px; color: #475569; line-height: 1.6; }
.tour-info-cols { display: flex; flex-direction: column; gap: 20px; margin-top: 16px; }
.tour-info-col h4 { font-size: 14px; font-weight: 600; color: #1e3a5f; margin: 0 0 8px; }
.tour-info-col p, .tour-info-col ul { margin: 0 0 8px; font-size: 13px; color: #475569; line-height: 1.5; }
.tour-info-col p { display: flex; align-items: flex-start; gap: 8px; }
.tour-info-col p i { color: #1e3a5f; margin-top: 2px; }
.tour-needtoknow h4 { font-size: 14px; font-weight: 600; color: #1e3a5f; margin: 16px 0 8px; }
.tour-needtoknow ul { margin: 0 0 8px; padding-left: 18px; font-size: 13px; color: #475569; line-height: 1.5; }

.tour-section { margin-top: 32px; padding: 24px; background: #fff; border-radius: 10px; border: 1px solid #e2e8f0; }
.tour-section h2 { font-size: 18px; font-weight: 600; color: #1e3a5f; margin: 0 0 12px; }
.tour-section ul { margin: 0; padding-left: 20px; font-size: 14px; color: #475569; line-height: 1.6; }
.tour-section li { margin-bottom: 6px; }
.tour-inclusions-cta h3 { font-size: 15px; margin: 12px 0 8px; }
.tour-whatsapp-cta { display: inline-block; margin-top: 16px; padding: 12px 24px; background: #1e3a5f; color: #fff; font-weight: 600; text-decoration: none; border-radius: 8px; font-size: 14px; transition: background 0.2s; }
.tour-whatsapp-cta:hover { background: #2d4a6f; color: #fff; }

.tour-booking-col { position: sticky; top: 100px; }
.tour-booking-card { background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; box-shadow: 0 4px 16px rgba(15,23,42,0.08); padding: 20px; position: relative; }
.tour-booking-offer { position: absolute; top: 12px; right: 12px; background: #ef4444; color: #fff; padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; }
.tour-booking-price-row { margin-bottom: 12px; }
.tour-booking-label { display: block; font-size: 12px; color: #64748b; margin-bottom: 4px; }
.tour-booking-prices { display: flex; align-items: baseline; gap: 8px; }
.tour-booking-old { font-size: 14px; color: #94a3b8; text-decoration: line-through; }
.tour-booking-new { font-size: 22px; font-weight: 700; color: #1e3a5f; }
.tour-booking-actions { display: flex; gap: 12px; margin-bottom: 16px; font-size: 13px; }
.tour-booking-actions a { color: #64748b; text-decoration: none; }
.tour-booking-actions a:hover { color: #1e3a5f; }
.tour-booking-summary { border: 1px solid #e2e8f0; border-radius: 10px; padding: 16px; }
.tour-booking-summary h4 { font-size: 15px; font-weight: 600; color: #1e3a5f; margin: 0 0 14px; }
.tour-booking-summary-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 13px; color: #334155; }
.tour-booking-summary-row:last-of-type { margin-bottom: 0; }
.tour-booking-summary-row label { flex-shrink: 0; }
.tour-booking-old-sm { text-decoration: line-through; color: #94a3b8; margin-right: 6px; }
.tour-booking-new-sm { font-weight: 600; color: #1e3a5f; margin-right: 6px; }
.tour-booking-input { padding: 8px 10px; border: 1px solid #e2e8f0; border-radius: 6px; font-size: 13px; width: 100%; max-width: 140px; }
.tour-booking-stepper { display: flex; align-items: center; gap: 0; border: 1px solid #e2e8f0; border-radius: 6px; overflow: hidden; }
.tour-booking-stepper button { width: 32px; height: 32px; border: none; background: #f1f5f9; cursor: pointer; font-size: 16px; color: #475569; }
.tour-booking-stepper button:hover { background: #e2e8f0; }
.tour-booking-stepper input { width: 40px; text-align: center; border: none; border-left: 1px solid #e2e8f0; border-right: 1px solid #e2e8f0; font-size: 13px; }
.tour-booking-total, .tour-booking-paynow { padding-top: 12px; margin-top: 12px; border-top: 1px solid #e2e8f0; font-size: 14px; }
.tour-booking-buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.tour-btn-primary { padding: 12px 20px; background: #1e3a5f; color: #fff; border: none; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; }
.tour-btn-primary:hover { background: #2d4a6f; }
.tour-btn-outline { padding: 12px 20px; background: #fff; color: #1e3a5f; border: 2px solid #1e3a5f; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; }
.tour-btn-outline:hover { background: #f1f5f9; }

.tour-similar { padding: 48px 0; background: #fff; }
.tour-similar-head { font-size: 22px; font-weight: 700; color: #1e3a5f; margin: 0 0 6px; display: flex; align-items: center; gap: 8px; }
.tour-similar-sub { font-size: 14px; color: #64748b; margin: 0 0 24px; }
.tour-similar-wrapper { position: relative; display: flex; align-items: center; gap: 12px; padding: 0 8px; }
.tour-similar-prev, .tour-similar-next { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; border: 1px solid #e2e8f0; background: #fff; color: #334155; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.tour-similar-prev:hover, .tour-similar-next:hover { border-color: #1e3a5f; color: #1e3a5f; }
.tour-similar-slider { display: flex; gap: 16px; overflow-x: auto; scroll-behavior: smooth; padding: 8px 0; scrollbar-width: none; -ms-overflow-style: none; flex: 1; }
.tour-similar-slider::-webkit-scrollbar { display: none; }
.tour-similar-card { flex: 0 0 260px; display: flex; flex-direction: column; text-decoration: none; color: inherit; border-radius: 12px; overflow: hidden; border: 1px solid #e2e8f0; background: #fff; transition: box-shadow 0.2s; }
.tour-similar-card:hover { box-shadow: 0 8px 24px rgba(15,23,42,0.12); }
.tour-similar-card img { width: 100%; height: 160px; object-fit: cover; }
.tour-similar-card h4 { font-size: 14px; font-weight: 600; color: #1a1d21; margin: 12px 12px 6px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tour-similar-meta { font-size: 12px; color: #64748b; margin: 0 12px 6px; display: flex; align-items: center; gap: 4px; }
.tour-similar-price { font-size: 16px; font-weight: 700; color: #1e3a5f; margin: 0 12px 8px; }
.tour-similar-cta { font-size: 12px; color: #1e3a5f; margin: 0 12px 12px; display: flex; align-items: center; gap: 6px; }

.tour-faq { padding: 48px 0; background: #f8fafc; }
.tour-faq-head { font-size: 22px; font-weight: 700; color: #1e3a5f; margin: 0 0 6px; display: flex; align-items: center; gap: 8px; }
.tour-faq-sub { font-size: 14px; color: #64748b; margin: 0 0 24px; }
.tour-faq-list { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin-bottom: 24px; }
.tour-faq-item { background: #fff; border: 1px solid #e2e8f0; border-bottom: none; }
.tour-faq-item:last-child { border-bottom: 1px solid #e2e8f0; }
.tour-faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; font-size: 14px; font-weight: 500; color: #1a1d21; cursor: pointer; list-style: none; }
.tour-faq-item summary::-webkit-details-marker { display: none; }
.tour-faq-icon { font-size: 12px; color: #64748b; flex-shrink: 0; transition: transform 0.2s; }
.tour-faq-item[open] .tour-faq-icon { transform: rotate(180deg); }
.tour-faq-item p { margin: 0; padding: 14px 18px 18px; background: #f8fafc; border-top: 1px solid #e2e8f0; font-size: 14px; color: #475569; line-height: 1.5; }
.tour-enquire-btn { display: inline-block; padding: 12px 24px; background: #1e3a5f; color: #fff; font-weight: 600; text-decoration: none; border-radius: 8px; font-size: 14px; }
.tour-enquire-btn:hover { color: #fff; background: #2d4a6f; }

.tour-whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; z-index: 9999; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: transform 0.2s; }
.tour-whatsapp-float:hover { color: #fff; transform: scale(1.05); }

@media (max-width: 1023px) {
    .tour-main-grid { grid-template-columns: 1fr; }
    .tour-booking-col { position: static; order: -1; max-width: 400px; margin: 0 auto 24px; width: 100%; }
    .tour-details-grid { grid-template-columns: 1fr; }
}
@media (max-width: 991px) and (min-width: 768px) {
    .tour-gallery-wrap {
        padding: 0 50px;
    }
    .tour-gallery-slide { 
        flex: 0 0 calc((100% - 16px) / 2);
        height: 350px;
    }
    .tour-gallery-prev {
        left: 0;
    }
    .tour-gallery-next {
        right: 0;
    }
}
@media (max-width: 767px) {
    .tour-hero-image-wrap { height: 220px; }
    .tour-hero-content { margin-top: -32px; padding: 18px 16px; }
    .tour-hero-title { font-size: 17px; }
    .tour-gallery { padding: 28px 0 36px; }
    .tour-gallery-title { font-size: 18px; margin-bottom: 18px; padding: 0 16px; }
    .tour-gallery-wrap {
        padding: 0 50px;
    }
    .tour-gallery-prev,
    .tour-gallery-next { 
        width: 40px; 
        height: 40px; 
        font-size: 16px;
    }
    .tour-gallery-prev {
        left: 0;
    }
    .tour-gallery-next {
        right: 0;
    }
    .tour-gallery-slide { 
        flex: 0 0 100%;
        height: 300px;
    }
    .tour-gallery-track {
        gap: 12px;
    }
    .tour-gallery-dots-container {
        padding: 0 16px;
    }
    .tour-tabs { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 4px; }
    .tour-tab-panels { padding: 16px; }
    .tour-similar-card { flex: 0 0 240px; }
    .tour-similar-card h4 { font-size: 13px; }
}

/* Footer – compact (light grey, circular logo, cyan Subscribe) */
.footer {
    background: #f8f8f8;
    color: #333;
    padding: 28px 0 0;
    border-top: 1px solid #e5e5e5;
    position: relative;
}

.footer-container {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 24px 20px;
    margin-bottom: 18px;
    padding-bottom: 16px;
}

.footer-section.footer-about {
    max-width: 260px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1e3a5f;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.7rem;
    font-family: inherit;
}

.footer-about-text {
    color: #666;
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 6px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1e3a5f;
    color: #fff;
    text-decoration: none;
    font-size: 0.7rem;
    transition: background 0.2s;
}

.footer-social-link:hover {
    background: #30d5c8;
}

.footer-heading {
    margin-bottom: 10px;
    color: #444;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-contact-line {
    color: #666;
    line-height: 1.5;
    margin-bottom: 4px;
    font-size: 0.75rem;
}

.footer-contact-line a {
    color: #666;
    text-decoration: none;
}

.footer-contact-line a:hover {
    color: #1e3a5f;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: #666;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: #1e3a5f;
}

.footer-newsletter-title {
    margin-bottom: 6px;
    color: #1a1a1a;
    font-size: 0.8rem;
    font-weight: 700;
}

.footer-newsletter-desc {
    color: #666;
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    background: #fff;
    color: #333;
    font-size: 0.75rem;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 8px 14px;
    background: #2dd4bf;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.75rem;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: #14b8a6;
}

.footer-bottom {
    text-align: center;
    padding: 12px 0;
    border-top: 1px solid #e5e5e5;
    color: #888;
    font-size: 0.75rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p {
    margin: 0;
}

.footer-decoration {
    display: block;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, rgba(200,220,240,0.3) 0%, rgba(180,210,235,0.4) 15%, rgba(160,200,230,0.35) 50%, rgba(180,210,235,0.4) 85%, rgba(200,220,240,0.3) 100%);
    margin-top: 0;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header.navbar {
        position: relative;
        top: 0;
        background: #1e3a5f;
        padding: 0;
    }

    .header.navbar.scrolled {
        position: fixed;
        top: 0;
        background: #1e3a5f;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .header.navbar .container {
        padding: 15px;
        flex-wrap: wrap;
    }

    .top-bar {
        padding: 8px 0;
        font-size: 12px;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        padding: 0 15px;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .top-bar-right {
        width: 100%;
        justify-content: center;
    }

    .separator {
        display: none;
    }

    .navbar-brand.logo {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: center;
        margin: 0;
    }

    .logo-circle {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 12px;
    }

    .navbar-toggler.mobile-menu-toggle {
        display: flex;
        order: 1;
        margin-right: 10px;
        width: 30px;
        height: 24px;
        padding: 4px 0;
    }

    .navbar-toggler.mobile-menu-toggle .icon-line {
        background: #fff;
        height: 3px;
        width: 100%;
    }

    .navbar-toggler.mobile-menu-toggle .icon-close {
        font-size: 18px;
    }

    /* Bootstrap Navbar Collapse */
    .navbar-collapse {
        order: 4;
        width: 100%;
        margin-top: 15px;
        background: #1e3a5f;
        border-radius: 8px;
        padding: 10px 0;
        align-items: center;
        justify-content: center;
    }

    .navbar-nav.main-nav {
        flex-direction: column;
        gap: 0;
        padding: 0;
        width: 100%;
        align-items: stretch;
        justify-content: center;
    }

    .navbar-nav.main-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .navbar-nav.main-nav .nav-item:first-child {
        border-top: 1px solid rgba(255,255,255,0.15);
    }

    .navbar-nav.main-nav .nav-link {
        padding: 18px 25px;
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        text-shadow: none;
        justify-content: center;
        letter-spacing: 1px;
        text-align: center;
    }

    .navbar-nav.main-nav .nav-link:hover,
    .navbar-nav.main-nav .nav-link:focus {
        background: rgba(255,255,255,0.1);
        opacity: 1;
        color: #fff;
    }

    .navbar-nav.main-nav .nav-link i.fa-paper-plane {
        margin-left: auto;
        font-size: 14px;
    }

    .header-actions {
        order: 3;
        width: 100%;
        margin-top: 10px;
        align-items: center;
        gap: 6px;
        flex-direction: column;
    }

    /* Header actions inside navbar collapse */
    .navbar-collapse .header-actions {
        padding: 15px 25px;
        border-top: 1px solid rgba(255,255,255,0.15);
        margin-top: 10px;
        align-items: center;
        gap: 6px;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

    .phone-link {
        flex-direction: row;
        gap: 8px;
    }

    .phone-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
        background: rgba(255,255,255,0.2);
    }

    .phone-number {
        font-size: 13px;
        font-weight: 600;
    }

    .support-text {
        font-size: 9px;
        text-align: center;
        white-space: nowrap;
    }

    .banner-search {
        width: 95%;
        bottom: 60px;
        max-width: 100%;
    }

    .search-container {
        flex-direction: column;
    }

    .search-input {
        padding: 14px 16px;
        font-size: 14px;
    }

    .search-category {
        border-left: none;
        border-right: none;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        border-radius: 0;
        padding: 14px 16px;
    }

    .search-btn {
        border-radius: 0 0 8px 8px;
        padding: 14px 20px;
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        backdrop-filter: blur(2px);
        z-index: 1001;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }

    /* Ensure header stays on top when scrolled */
    .header.scrolled .header-content {
        padding: 12px 15px;
    }

    /* Mobile logo adjustments */
    @media (max-width: 576px) {
        .logo-circle {
            width: 45px;
            height: 45px;
        }

        .logo-text {
            font-size: 10px;
        }

        .phone-icon {
            width: 34px;
            height: 34px;
            font-size: 12px;
        }

        .phone-number {
            font-size: 12px;
        }

        .support-text {
            font-size: 8px;
        }

        .main-nav {
            width: 90%;
        }

        .main-nav a {
            padding: 16px 20px;
            font-size: 15px;
        }
    }

    .hero-section {
        height: 280px;
        margin-top: 0;
    }

    .carousel-content {
        padding: 0 15px;
    }

    .carousel-content h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .carousel-content p {
        font-size: 16px;
    }

    .carousel-prev,
    .carousel-next {
        padding: 12px;
        font-size: 20px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    .andaman-intro-section {
        padding: 24px 0 20px;
    }

    .andaman-intro-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .andaman-intro-content h2 {
        font-size: 20px;
    }

    .andaman-intro-content p {
        font-size: 13px;
    }

    .andaman-intro-cta {
        padding: 18px 16px 16px;
    }

    .andaman-intro-cta h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .andaman-intro-cta h3 span {
        font-size: 13px;
    }

    .andaman-packages-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .andaman-packages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .find-packages-section {
        padding: 20px 0 16px;
    }

    .find-packages-title {
        font-size: 1rem;
    }

    .find-packages-desc {
        font-size: 0.75rem;
        margin-bottom: 14px;
    }

    .popular-tours {
        padding: 24px 0 20px;
    }

    .popular-tours .section-header {
        margin-bottom: 18px;
    }

    .popular-tours .section-header h2 {
        font-size: 18px;
    }

    .popular-tours .section-header p {
        font-size: 12px;
    }

    .popular-tours-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 100%;
    }

    .footer {
        padding: 24px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 20px;
    }

    .footer-section.footer-about {
        max-width: none;
    }

    .footer-logo {
        width: 42px;
        height: 42px;
        font-size: 0.65rem;
    }

    .footer-about-text {
        font-size: 0.7rem;
    }

    .footer-heading {
        font-size: 0.65rem;
        margin-bottom: 8px;
    }

    .footer-contact-line {
        font-size: 0.7rem;
    }

    .footer-links li a {
        font-size: 0.7rem;
    }

    .footer-newsletter-title {
        font-size: 0.75rem;
    }

    .footer-newsletter-desc {
        font-size: 0.7rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-form input {
        border-radius: 4px;
        padding: 10px 12px;
        font-size: 0.7rem;
    }

    .newsletter-form button {
        border-radius: 4px;
        padding: 10px 16px;
        font-size: 0.7rem;
    }

    .footer-bottom {
        padding: 10px 0;
        font-size: 0.7rem;
    }

    /* Additional mobile optimizations */

    .promo-banner-inner {
        min-height: 300px;
    }

    .promo-content {
        padding: 24px 20px;
    }

    .promo-title {
        font-size: 28px;
    }

    .promo-subtitle {
        font-size: 16px;
    }

    .promo-meta {
        font-size: 14px;
    }

    .packages-slider-wrapper {
        padding: 0 28px;
    }

    .packages-slider-prev,
    .packages-slider-next {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .package-card {
        min-width: 240px;
        width: 240px;
    }

    .package-card img {
        height: 140px;
    }

    @media (max-width: 768px) {
        .packages-slider-wrapper {
            padding: 0 24px;
        }

        .packages-slider-prev,
        .packages-slider-next {
            width: 30px;
            height: 30px;
            font-size: 11px;
        }

        .package-card {
            min-width: 220px;
            width: 220px;
        }

        .package-card img {
            height: 140px;
        }
    }

    @media (max-width: 576px) {
        .packages-slider-wrapper {
            padding: 0 12px;
        }

        .package-card {
            min-width: 100%;
            width: 100%;
        }

        .package-card img {
            height: 180px;
        }

        .packages-slider-prev,
        .packages-slider-next {
            display: none;
        }
    }

    .state-wise-section .state-wise-header h2 {
        font-size: 20px;
    }

    .state-wise-section .state-wise-header h2 i {
        font-size: 16px;
    }

    .state-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding-bottom: 6px;
        margin-bottom: 14px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .state-tabs::-webkit-scrollbar {
        display: none;
    }

    .state-tab {
        flex-shrink: 0;
        padding: 6px 12px;
        font-size: 11px;
    }

    .state-packages-slider-wrapper {
        padding: 0 28px;
    }

    .state-packages-prev,
    .state-packages-next {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .state-package-card {
        min-width: 220px;
        width: 220px;
    }

    .state-package-image {
        height: 140px;
    }

    .state-package-info {
        padding: 10px;
    }

    .state-package-info h4 {
        font-size: 12px;
    }

    .state-package-duration,
    .state-package-duration i {
        font-size: 11px;
    }

    .state-package-bar {
        padding: 8px 10px;
    }

    .state-package-price {
        font-size: 12px;
    }

    .state-package-call {
        font-size: 12px;
    }

    @media (max-width: 576px) {
        .state-packages-slider-wrapper {
            padding: 0 12px;
        }

        .state-package-card {
            min-width: 85%;
            width: 85%;
        }

        .state-package-image {
            height: 150px;
        }

        .state-packages-prev,
        .state-packages-next {
            width: 30px;
            height: 30px;
            font-size: 11px;
        }
    }

    .blog-section-header .blog-header-row {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .blog-section-header .blog-header-spacer:not(.blog-header-right) {
        display: none;
    }
    .blog-header-spacer.blog-header-right {
        justify-content: center;
        flex: 0;
    }
    .blog-section-header .blog-title {
        font-size: 22px;
    }
    .blog-section-header .blog-title i.fa-paper-plane {
        font-size: 18px;
    }
    .blog-balloons {
        left: 8px;
        opacity: 0.7;
    }
    .blog-balloons span:nth-child(1) {
        width: 18px;
        height: 18px;
    }
    .blog-balloons span:nth-child(2) {
        width: 28px;
        height: 28px;
    }
    .blog-balloons span:nth-child(3) {
        width: 40px;
        height: 40px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .safe-holidays-section {
        padding: 50px 0 60px;
    }
    .safe-holidays-title {
        font-size: 24px;
    }

    .customizable-slider-wrapper {
        padding: 0 32px;
    }

    .customizable-package-card {
        min-width: 240px;
        width: 240px;
    }

    .customizable-card-image {
        height: 140px;
    }

    .customizable-packages-section .customizable-header h2 {
        font-size: 20px;
    }

    .customizable-packages-section .customizable-header h2 i {
        font-size: 18px;
    }

    @media (max-width: 1200px) {
        .tour-card {
            width: calc((100% - 36px) / 4);
            aspect-ratio: 2 / 3;
            min-height: 200px;
            max-height: 220px;
        }
        
        .tour-card-overlay {
            padding: 18px 12px 12px;
        }
        
        .tour-card-overlay h3 {
            font-size: 14px;
        }
    }

    @media (max-width: 992px) {
        .tours-carousel {
            gap: 12px;
        }
        
        .tour-card {
            width: calc((100% - 36px) / 4);
            aspect-ratio: 2 / 3;
            min-height: 200px;
            max-height: 220px;
        }
    }

    @media (max-width: 768px) {
        .top-destination-section {
            padding: 36px 0 48px;
            min-height: 320px;
        }

        .top-dest-content-wrapper {
            max-width: 100%;
            padding: 0 16px;
        }

        .top-dest-header h4 {
            font-size: 18px;
        }

        .book-flight-icon {
            width: 1.2rem;
            height: 1.2rem;
            right: -1rem;
        }

        .top-dest-content h3 {
            font-size: 15px;
        }

        .top-dest-content p {
            font-size: 11px;
            padding: 0 8px;
        }

        .top-dest-cta {
            padding: 18px 14px;
            margin-top: 18px;
            text-align: left;
        }

        .top-dest-cta h5 {
            font-size: 14px;
            margin-bottom: 8px;
        }

        .top-dest-cta p {
            font-size: 11px;
            max-width: 100%;
            margin-bottom: 10px;
        }

        .cta-illustration-img {
            width: 4rem;
            height: 4rem;
            bottom: 5%;
        }

        .parachute-icon {
            width: 32px;
            height: 32px;
        }

        .cityscape-image {
            min-height: 140px;
            max-height: 220px;
        }
    }

    @media (min-width: 1024px) {
        .top-dest-content-wrapper {
            max-width: 85%;
        }

        .top-dest-header h4 {
            font-size: 26px;
        }

        .book-flight-icon {
            width: 2rem;
            height: 2rem;
            right: -1.8rem;
            top: -0.3rem;
        }

        .top-dest-content h3 {
            font-size: 22px;
        }

        .top-dest-content p {
            font-size: 13px;
        }

        .top-dest-cta {
            border-radius: 10px;
            padding: 28px;
            max-width: 65%;
        }

        .top-dest-cta h5 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .top-dest-cta p {
            font-size: 13px;
            max-width: unset;
        }

        .btn-contact-support {
            padding: 8px 32px;
            font-size: 14px;
        }

        .cta-illustration-img {
            width: 7rem;
            height: 6rem;
            bottom: 0;
        }
    }

        .tours-carousel-wrapper {
            gap: 8px;
            padding: 12px 10px;
        }

        .tours-carousel {
            gap: 12px;
            overflow-x: auto;
        }

        .tour-card {
            width: calc((100% - 12px) / 2);
            min-width: calc((100% - 12px) / 2);
            aspect-ratio: 2 / 3;
            min-height: 200px;
            max-height: 220px;
        }

        .tour-card-overlay {
            padding: 16px 10px 10px;
        }

        .tour-card-overlay h3 {
            font-size: 13px;
        }

        .tours-carousel-prev,
        .tours-carousel-next {
            width: 36px;
            height: 36px;
            font-size: 12px;
        }
    }

    @media (max-width: 576px) {
        .tour-card {
            width: 100%;
            min-width: 100%;
            min-height: 200px;
            max-height: 240px;
            height: auto;
        }
        
        .tours-carousel-prev,
        .tours-carousel-next {
            display: none;
        }
    }