/* ==========================================================================
   Jharkhand Tour Travels - Design System & Stylesheet
   Inspired by Hotelsbnb + Modern Travel Platform
   ========================================================================== */

:root {
    --primary: #0F5132;          /* Deep Forest Emerald */
    --primary-light: #198754;    /* Fresh Forest Green */
    --primary-dark: #0A3622;     /* Dark Canopy */
    --accent-gold: #FFC107;      /* Warm Sunlight Gold */
    --accent-orange: #FD7E14;    /* Sunset Terracotta */
    --dark-bg: #0D1B1E;          /* Midnight Jungle */
    --light-bg: #F8F9FA;         /* Crisp Snow White */
    --card-bg: #FFFFFF;
    --text-dark: #1E293B;        /* Slate Dark */
    --text-muted: #64748B;       /* Slate Medium */
    --text-light: #F8FAFC;
    --border-color: #E2E8F0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 35px -10px rgba(15, 81, 50, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #FAFAFC;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-body);
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--dark-bg);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.top-info i {
    color: var(--accent-gold);
}

.top-info .divider {
    color: rgba(255,255,255,0.3);
}

.badge-accent {
    background: rgba(253, 126, 20, 0.2);
    color: #FF922B;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(253, 126, 20, 0.3);
}

.whatsapp-top-btn {
    background: #25D366;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
}

.whatsapp-top-btn:hover {
    background: #1EBE57;
    transform: translateY(-1px);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 12px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--accent-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(15, 81, 50, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
    line-height: 1.1;
}

.brand-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 1.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: 0 4px 14px rgba(15, 81, 50, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 81, 50, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-gold {
    background: linear-gradient(135deg, #FFC107, #FF9800);
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(255, 193, 7, 0.4);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.btn-whatsapp-large {
    background: #25D366;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large:hover {
    background: #1EBE57;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 90px 0 100px 0;
    background: linear-gradient(rgba(13, 27, 30, 0.78), rgba(15, 81, 50, 0.88)), 
                url('images/hero-bg.jpg') center/cover no-repeat,
                url('https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 900px;
}

.highlight-text {
    background: linear-gradient(135deg, #FFD54F, #FF9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 780px;
    margin-bottom: 35px;
    font-weight: 300;
}

/* HotelsBNB Style Search Box */
.search-box-wrapper {
    width: 100%;
    max-width: 1050px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    color: var(--text-dark);
    margin-bottom: 40px;
}

.search-box {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr auto;
    gap: 15px;
    align-items: center;
}

.search-field {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.search-field label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-field label i {
    color: var(--accent-orange);
}

.search-field select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #fff;
    cursor: pointer;
}

.search-field select:focus {
    border-color: var(--primary);
    outline: none;
}

.search-submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 50px;
    align-self: flex-end;
    box-shadow: 0 6px 18px rgba(15, 81, 50, 0.4);
    transition: var(--transition);
}

.search-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.quick-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
    font-size: 0.85rem;
}

.pill-label {
    font-weight: 600;
    color: var(--text-muted);
}

.quick-pill {
    background: rgba(15, 81, 50, 0.08);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(15, 81, 50, 0.15);
}

.quick-pill:hover {
    background: var(--primary);
    color: #fff;
}

/* Stats Bar */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 16px 36px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.15);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.stat-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.2);
}

/* Spotlight Section */
.spotlight-section {
    margin-top: -30px;
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
}

.spotlight-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.spotlight-text h2 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spotlight-text h2 i {
    color: var(--primary);
}

.spotlight-text p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

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

.spot-feature-box {
    background: #F8FAF9;
    padding: 20px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
}

.spot-feature-box i {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.spot-feature-box h4 {
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.spot-feature-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Section Shared Layout */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: #F1F5F9;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--dark-bg), #132A2F);
    color: #fff;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.sub-heading {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-orange);
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.bg-gradient .section-title {
    color: #fff;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

.bg-gradient .section-desc {
    color: rgba(255,255,255,0.8);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.tab-btn {
    padding: 10px 22px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(15, 81, 50, 0.25);
}

/* Destinations Cards Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(13, 27, 30, 0.85);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;

}

.card-distance-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
}

.card-meta-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-dark);
    background: #F8FAF9;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.card-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-meta-item i {
    color: var(--primary);
    width: 16px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.card-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.price-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
    gap: 30px;
}

.package-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card.featured {
    border: 2px solid var(--primary);
}

.featured-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-orange);
    color: #fff;
    padding: 4px 35px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 5;
    box-shadow: var(--shadow-sm);
}

.pkg-img {
    height: 200px;
    position: relative;
}

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

.pkg-duration {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--primary-dark);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pkg-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pkg-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.pkg-highlights {
    list-style: none;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.pkg-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pkg-highlights li i {
    color: var(--primary-light);
}

/* Vehicles Grid */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.vehicle-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.vehicle-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.v-icon {
    width: 70px;
    height: 70px;
    background: rgba(15, 81, 50, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px auto;
}

.v-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.v-capacity {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.v-rates {
    background: #F8FAF9;
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.85rem;
}

.v-rate-row {
    display: flex;
    justify-content: space-between;
}

.v-rate-val {
    font-weight: 700;
    color: var(--primary);
}

.fare-notes-box {
    background: #FFF9E6;
    border: 1px solid #FFE082;
    padding: 24px;
    border-radius: var(--radius-md);
    color: #5D4037;
}

.fare-notes-box h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #E65100;
}

.fare-notes-box ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 10px;
    font-size: 0.88rem;
}

/* Calculator Section */
.calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge-gold {
    display: inline-block;
    background: var(--accent-gold);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.calc-info h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.calc-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.calc-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.c-h-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.c-h-item i {
    color: var(--accent-gold);
}

.calc-card {
    background: #fff;
    color: var(--text-dark);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.calc-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group select, .form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.form-group select:focus, .form-group input:focus {
    border-color: var(--primary);
    outline: none;
}

.calc-result {
    background: #F1F8F4;
    border: 1.5px dashed var(--primary);
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-bottom: 20px;
}

.result-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.result-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.result-details {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hotels Section (HotelsBNB) */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 30px;
}

.hs-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.hs-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.hs-img {
    height: 210px;
    position: relative;
}

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

.hs-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #25D366;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.hs-rating {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 4px;
}

.hs-rating i {
    color: var(--accent-gold);
}

.hs-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hs-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.hs-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hs-amenities {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hs-amenity-tag {
    background: #F1F5F9;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.comparison-table th {
    background: #F8FAF9;
    font-weight: 700;
    color: var(--primary-dark);
}

.comparison-table .highlight-column {
    background: rgba(15, 81, 50, 0.05);
    font-weight: 600;
}

th.highlight-column {
    background: rgba(15, 81, 50, 0.12);
    color: var(--primary-dark);
}

.check-icon { color: #198754; font-size: 1rem; }
.cross-icon { color: #DC3545; font-size: 1rem; }
.warn-icon { color: #FFC107; font-size: 1rem; }

.rating-badge {
    background: var(--accent-gold);
    color: #000;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 25px;
}

.review-card {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.rev-stars {
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.rev-text {
    font-size: 0.92rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.rev-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rev-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-light);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.rev-info h5 {
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.rev-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    background: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px 24px;
    display: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
}

.footer-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.footer-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.footer-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-main {
    padding: 70px 0 40px 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
}



.footer-bottom {
    background: #070F11;
    padding: 20px 0;
    font-size: 0.82rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-md);
    padding: 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    animation: modalSlideUp 0.3s ease;
}

.modal-large {
    max-width: 850px;
}

@keyframes modalSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    background: none;
    color: var(--text-muted);
}

.modal-close:hover {
    color: var(--primary-dark);
}

.modal-header {
    margin-bottom: 20px;
}

.modal-header h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.modal-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Destination Detail Modal Body Styling */
.dest-detail-hero {
    position: relative;
    height: 300px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 25px;
}

.dest-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-detail-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.dest-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.dest-main-text h4 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin: 15px 0 6px 0;
}

.dest-sidebar-box {
    background: #F8FAF9;
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.dest-sidebar-box h5 {
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.dest-sidebar-box ul {
    list-style: none;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-call {
    background: #007AFF;
}

.float-wa {
    background: #25D366;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-title { font-size: 2.4rem; }
    .search-box { grid-template-columns: 1fr 1fr; }
    .search-submit-btn { grid-column: span 2; }
    .calc-wrapper { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .dest-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 1100;
        overflow-y: auto;
    }

    .nav-menu.active { left: 0; }
    .mobile-toggle { display: block; }
    .search-box { grid-template-columns: 1fr; }
    .search-submit-btn { grid-column: span 1; }
    .hero-stats { flex-direction: column; gap: 15px; }
    .stat-divider { display: none; }
    .footer-main { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .nav-cta .btn { display: none; }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .modal-content {
        padding: 20px;
    }
    .dest-detail-hero {
        height: 200px;
    }
    .dest-detail-title {
        font-size: 1.4rem;
        bottom: 15px;
        left: 15px;
    }
    .blinking-offer-badge {
        width: 80px;
        height: 80px;
        left: 10px;
        bottom: 10px;
        padding: 10px;
    }
    .blinking-offer-badge .badge-text {
        font-size: 0.55rem;
    }
    .floating-contact {
        bottom: 15px;
        right: 15px;
    }
    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    .calc-card {
        padding: 20px;
    }
    .cta-section {
        padding: 40px 15px;
    }
    .cta-section h2 {
        font-size: 1.6rem;
    }
}

/* Still Cab Availability Bar */
.still-cabs-bar {
    background: #fffbeb;
    color: var(--primary-dark);
    padding: 10px 20px;
    font-size: 1.1rem;
    font-family: var(--font-body);
    border-bottom: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Blinking Offer Badge (Starburst Shape) */
.blinking-offer-badge {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 105px;
    height: 105px;
    background: var(--accent-orange);
    color: #fff;
    font-family: var(--font-body);
    z-index: 999;
    cursor: pointer;
    animation: offerBlink 1.4s infinite alternate;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    transition: var(--transition);
    clip-path: polygon(50% 0%, 63% 15%, 85% 15%, 85% 37%, 100% 50%, 85% 63%, 85% 85%, 63% 85%, 50% 100%, 37% 85%, 15% 85%, 15% 63%, 0% 50%, 15% 37%, 15% 15%, 37% 15%);
    padding: 15px;
}
.blinking-offer-badge:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-gold);
    color: var(--primary-dark);
}
.blinking-offer-badge .badge-text {
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

@keyframes offerBlink {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(253, 126, 20, 0.4);
    }
    100% {
        transform: scale(1.1);
        box-shadow: 0 8px 24px rgba(253, 126, 20, 0.8);
    }
}

/* Skip Navigation Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    z-index: 99999;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 600;
    transition: top 0.2s ease;
    box-shadow: var(--shadow-md);
}
.skip-link:focus {
    top: 0;
    outline: 2px solid var(--accent-gold);
}

/* ==========================================================================
   Destination Landing Pages Styles
   ========================================================================== */
.inner-hero {
    position: relative;
    padding: 120px 0 90px 0;
    color: var(--text-light);
    text-align: center;
}
.inner-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.hero-meta-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.hero-badge-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}
.hero-badge-item i {
    margin-right: 6px;
    color: var(--accent-gold);
}
.dest-detail-container {
    padding: 80px 0;
}
.dest-main-text h2, .dest-main-text h3 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-top: 35px;
    margin-bottom: 15px;
}
.dest-main-text h2 {
    font-size: 2.2rem;
    margin-top: 0;
}
.dest-main-text h3 {
    font-size: 1.4rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
    margin-top: 40px;
}
.dest-main-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}
.dest-main-text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
}
.dest-main-text ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-light);
}
.dest-sidebar-box h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dest-sidebar-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}
.dest-sidebar-box ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}
.dest-sidebar-box ul li:last-child {
    border-bottom: none;
}
.dest-sidebar-box ul li i {
    color: var(--primary-light);
    margin-right: 8px;
}
.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    margin-bottom: 20px;
}
.back-home-btn:hover {
    color: var(--text-light);
    transform: translateX(-4px);
}
.faq-card {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.faq-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
@media (max-width: 992px) {
    .dest-info-grid {
        grid-template-columns: 1fr;
    }
    .dest-sidebar-box {
        position: relative;
        top: 0;
    }
}
@media (max-width: 576px) {
    .inner-hero-content h1 {
        font-size: 2rem;
    }
    .dest-detail-container {
        padding: 40px 0;
    }
}

/* Breadcrumbs Navigation Styles */
.breadcrumbs {
    padding: 15px 0 0 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.breadcrumbs a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}
.breadcrumbs a:hover {
    color: var(--accent-gold);
}
.breadcrumbs span {
    color: var(--text-dark);
    font-weight: 500;
}
