@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Quicksand:wght@300;400;500;600;700&display=swap');

:root {
    /* Premium Dark Forest & Lime Green Theme (ecotripasia.com Concept) */
    --bg-primary: #031c10;       /* Very deep forest green/black background */
    --bg-secondary: #082317;     /* Dark green container/card backdrop */
    
    --primary: #ffffff;          /* White primary headings/text */
    --primary-light: #e2ff8a;    /* Soft lime green for highlight labels */
    --primary-glow: rgba(182, 252, 48, 0.08);
    
    --accent: #b6fc30;           /* Vibrant Eco Neon Lime Green */
    --accent-hover: #9bd626;     /* Darker lime green for hover */
    --accent-gradient: linear-gradient(135deg, #b6fc30 0%, #2d8a4e 100%);
    --accent-glow: rgba(182, 252, 48, 0.15);
    
    --star-yellow: #facc15;      /* Bright Gold for stars/reviews */
    --text-main: #e2e8f0;        /* Light slate/cream for body readability */
    --text-muted: #94a3b8;       /* Medium slate/gray for secondary details */
    --border: #0d3824;           /* Dark forest green border */
    --border-light: #12442d;     /* Soft dark green border */
    
    /* Layout & Component Tokens */
    --radius-lg: 20px;           /* Elegant rounded corners */
    --radius-md: 14px;
    --radius-sm: 8px;
    --radius-round: 99px;
    
    /* Typography Setup */
    --font-main: 'Quicksand', sans-serif;
    --font-title: 'Quicksand', sans-serif;
    --font-logo: 'Lobster', cursive;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Shadows & Elevations */
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --hover-shadow: 0 20px 40px rgba(182, 252, 48, 0.1);
    --glass-bg: rgba(3, 28, 16, 0.85);
    --glass-border: rgba(13, 56, 36, 0.7);
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Headings Styling */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
}

/* Header & Translucent Sticky Navigation */
.header {
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.logo-owl {
    width: 42px;
    height: 42px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 19px;
    box-shadow: 0 4px 15px rgba(27, 67, 50, 0.15);
    border: 1.5px solid var(--border);
    transition: var(--transition);
}

.brand:hover .logo-owl {
    transform: rotate(12deg) scale(1.08);
}

.logo-text {
    font-family: var(--font-logo);
    font-size: 30px;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.logo-text span {
    color: var(--accent);
    font-style: normal;
    font-weight: 400;
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: var(--radius-round);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
    background-color: var(--primary-glow);
}

.nav-btn {
    background: var(--accent-gradient) !important;
    color: #031c10 !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 15px rgba(182, 252, 48, 0.25);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(182, 252, 48, 0.45);
}

/* Category Tabs (Hero buttons) */
.ta-category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.ta-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-round);
    border: 1.5px solid var(--border);
    background-color: var(--bg-secondary);
    color: var(--primary);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.ta-tab:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
    color: var(--accent);
}

.ta-tab.active {
    background-color: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.ta-tab-icon {
    font-size: 15px;
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 30px auto 15px;
    padding: 70px 24px;
    text-align: center;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.03) 0%, rgba(255, 90, 31, 0.02) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(27, 67, 50, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.hero h1 {
    font-family: var(--font-title);
    font-size: clamp(38px, 6vw, 62px);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Quick Search Widget */
.quick-search {
    background-color: var(--bg-secondary);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-round);
    padding: 6px 8px;
    max-width: 680px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(27, 67, 50, 0.04);
    transition: var(--transition);
}

.quick-search:focus-within {
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(27, 67, 50, 0.08);
}

.quick-search select {
    flex: 1;
    border: 0;
    background: transparent;
    color: var(--text-main);
    padding: 0 20px;
    font-size: 14.5px;
    font-weight: 600;
    font-family: inherit;
    outline: none;
    height: 48px;
    cursor: pointer;
}

.quick-search select option {
    background-color: var(--bg-secondary);
    color: var(--text-main);
}

.quick-search button {
    height: 48px;
    padding: 0 32px;
    border-radius: var(--radius-round);
    border: 0;
    background: var(--accent-gradient);
    color: #ffffff;
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 90, 31, 0.20);
    transition: var(--transition);
}

.quick-search button:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(255, 90, 31, 0.35);
}

/* Explorer Split Component on Home Page */
.explorer-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 50px;
    box-shadow: var(--card-shadow);
}

.country-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    max-height: 520px;
    padding-right: 8px;
}

.country-tab-card {
    border-radius: var(--radius-md);
    height: 90px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    flex-shrink: 0;
}

.country-tab-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%);
    transition: var(--transition);
}

.country-tab-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(3, 28, 16, 0.95) 45%, rgba(3, 28, 16, 0.35) 100%);
    z-index: 1;
}

.country-tab-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.country-tab-map {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2.2;
    filter: drop-shadow(0 2px 6px rgba(182, 252, 48, 0.45));
    opacity: 0.95;
    transition: var(--transition);
}

.country-tab-name {
    font-family: var(--font-title);
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
}

.country-tab-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.country-tab-card:hover img {
    transform: scale(1.04);
}

.country-tab-card.active {
    border-color: var(--accent);
    box-shadow: 0 6px 20px rgba(182, 252, 48, 0.2);
}

.country-tab-card.active .country-tab-name {
    color: #ffffff;
}

.country-tab-card.active .country-tab-map {
    stroke: var(--accent);
    filter: drop-shadow(0 2px 6px rgba(182, 252, 48, 0.5));
}

.city-panel {
    display: none;
}

.city-panel.active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-content: start;
    overflow-y: auto;
    max-height: 520px;
    padding-right: 8px;
}

.city-list-item {
    background-color: var(--bg-primary);
    color: var(--text-main);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    border: 1.5px solid var(--border);
    transition: var(--transition);
}

.city-list-item:hover {
    transform: translateX(4px);
    background-color: var(--bg-secondary);
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(182, 252, 48, 0.1);
}

.city-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.city-item-thumb {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.city-item-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    transition: var(--transition);
}

.city-list-item:hover .city-item-name {
    color: var(--accent);
}

.city-item-arrow {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: bold;
    transition: var(--transition);
}

.city-list-item:hover .city-item-arrow {
    color: var(--accent);
}

/* Wrapper layouts */
.container, .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* Section Title */
.section-title {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 800;
    margin: 45px 0 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border) 0%, rgba(229, 233, 230, 0) 100%);
}

/* City Grid */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.city-card {
    background-color: var(--bg-secondary);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-main);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
}

.city-card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-4px);
    border-color: var(--border);
}

.city-img-wrapper {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.city-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.city-card:hover .city-img {
    transform: scale(1.04);
}

.city-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.city-name {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.city-desc {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 20px;
    flex: 1;
}

.explore-btn {
    height: 42px;
    border-radius: var(--radius-round);
    background-color: var(--bg-primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    border: 1.5px solid var(--border);
    transition: var(--transition);
}

.city-card:hover .explore-btn {
    background: var(--accent-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(255, 90, 31, 0.2);
}

/* Tours Finder (Filters + Grid layout) */
.tours-listing-container {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 32px;
    margin-top: 25px;
}

.filters-sidebar {
    background-color: var(--bg-secondary);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    box-shadow: var(--card-shadow);
}

.filters-sidebar select {
    width: 100%;
    height: 40px;
    background-color: var(--bg-primary);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-main);
    padding: 0 12px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.filters-sidebar select:focus {
    border-color: var(--accent);
}

.filters-sidebar select option {
    background-color: var(--bg-secondary);
    color: var(--text-main);
}

.filter-group {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 18px;
    margin-bottom: 18px;
}

.filter-group:last-child {
    border: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.filter-group-title {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    color: var(--primary);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 10px;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition);
}

.filter-option:hover {
    color: var(--accent);
}

.filter-option input[type="checkbox"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.filter-option select {
    width: 100%;
    height: 40px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border);
    padding: 0 12px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    background-color: var(--bg-primary);
}

.filter-option select:focus {
    border-color: var(--accent);
}

.price-slider-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Tour cards Grid */
.grid-listing {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 28px;
}

.card {
    background-color: var(--bg-secondary);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-4px);
    border-color: var(--border);
}

.img-container {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.card:hover .img-container img {
    transform: scale(1.04);
}

.badge {
    position: absolute;
    left: 14px;
    top: 14px;
    background: var(--accent-gradient);
    color: #031c10;
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(182, 252, 48, 0.25);
}

.type {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background-color: rgba(3, 28, 16, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #ffffff;
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 9px;
    font-weight: 700;
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-family: var(--font-title);
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--primary);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 48px;
    transition: var(--transition);
}

.card-title:hover {
    color: var(--accent);
}

.tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.tags span {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
}

.tags span::after {
    content: ' •';
}

.tags span:last-child::after {
    content: '';
}

/* Beautiful custom ratings matching TripAdvisor branding */
.bubble-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
}

.ta-bubbles {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ta-bubble {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid #00aa6c;
    display: inline-block;
}

.ta-bubble.full {
    background-color: #00aa6c;
}

.ta-bubble.half {
    background: linear-gradient(90deg, #00aa6c 50%, transparent 50%);
}

.ta-bubble.empty {
    background-color: transparent;
}

.rating-count {
    color: var(--text-muted);
    font-weight: 600;
}

.pricebox {
    margin-top: 15px;
}

.pricebox .label {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.pricebox .price {
    font-family: var(--font-title);
    font-size: 21px;
    font-weight: 800;
    color: var(--primary);
}

.card-body .btn, .btn {
    margin-top: 15px;
    width: 100%;
    height: 44px;
    background: var(--accent-gradient);
    color: #031c10;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    border: 0;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(182, 252, 48, 0.25);
    transition: var(--transition);
}

.card-body .btn:hover, .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(182, 252, 48, 0.45);
}

/* Return links */
.back-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--accent);
    transform: translateX(-4px);
}

/* Tour details Header */
.ta-detail-header {
    margin: 20px 0 25px;
}

.ta-detail-header .title {
    font-family: var(--font-title);
    font-size: clamp(28px, 4.5vw, 42px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 12px;
}

.ta-detail-header .meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.pill {
    background-color: var(--bg-secondary);
    border: 1.5px solid var(--border);
    color: var(--primary);
    border-radius: var(--radius-round);
    padding: 6px 14px;
    font-size: 11.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Detail Gallery layout */
.gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    margin-bottom: 35px;
}

.gallery img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1.5px solid var(--border);
    transition: var(--transition);
}

.gallery .mainImg {
    height: 380px;
}

.gallery .side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 380px;
}

.gallery .side img {
    height: calc(50% - 8px);
}

.gallery img:hover {
    filter: brightness(95%);
}

/* Page detail content Columns */
.grid-details {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 35px;
}

.card-details {
    background-color: var(--bg-secondary);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: var(--card-shadow);
}

.card-details h2 {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-details p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
}

.card-details .quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.card-details .quick div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-details .quick b {
    font-family: var(--font-title);
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
}

/* Sticky Booking widget card */
aside .book {
    background: var(--bg-secondary);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: 95px;
    box-shadow: var(--hover-shadow);
    transition: var(--transition);
}

aside .book .price {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.1;
}

aside .book .book-fields input,
aside .book .book-fields select {
    background-color: var(--bg-primary);
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    color: var(--text-main);
    transition: var(--transition);
    font-weight: 600;
}

aside .book .book-fields input:focus,
aside .book .book-fields select:focus {
    border-color: var(--accent) !important;
    outline: none;
}

/* Elegant Timeline/Itinerary */
.timeline {
    position: relative;
    padding-left: 24px;
    margin-top: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--border);
}

.stop {
    position: relative;
    margin-bottom: 24px;
}

.stop:last-child {
    margin-bottom: 0;
}

.stop .dot {
    position: absolute;
    left: -24px;
    top: 6px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--accent);
    border: 2px solid var(--bg-secondary);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.stop h3 {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stop p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--text-muted);
}

/* Accordion FAQs */
.ta-faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
}

.ta-faq-item:last-child {
    border: 0;
}

.ta-faq-question {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.ta-faq-question:hover {
    color: var(--accent);
}

.ta-faq-answer {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* CTA buttons & WhatsApp supports */
.btn-whatsapp {
    background: #25d366 !important; /* Authentic WhatsApp Mint Green */
    color: #ffffff !important;
    border-radius: var(--radius-md) !important;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    transition: var(--transition);
    border: 0 !important;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #20ba5a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Clean ticks ul lists */
ul.tick {
    list-style: none;
    padding-left: 0;
}

ul.tick li {
    position: relative;
    padding-left: 24px;
    font-size: 13.5px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

ul.tick li::before {
    content: '✓';
    position: absolute;
    left: 2px;
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}

/* Country/City Headers */
.country-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    margin-bottom: 30px;
    border: 1.5px solid var(--border);
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(90%);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(27, 67, 50, 0.2) 0%, rgba(27, 67, 50, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
}

.country-title {
    font-family: var(--font-title);
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.country-subtitle {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.grid {
    display: grid;
    gap: 20px;
}

/* Footer layout */
.footer {
    background-color: var(--primary);
    color: rgba(250, 248, 245, 0.65);
    padding: 60px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 80px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--accent);
}

.footer-links {
    max-width: 1100px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-links h4 {
    color: #ffffff !important;
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}

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

.footer-links ul li a {
    font-family: var(--font-main);
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(250, 248, 245, 0.7) !important;
    transition: var(--transition);
}

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

/* Responsive Queries */
@media (max-width: 900px) {
    .explorer-container {
        grid-template-columns: 1fr;
    }
    .tours-listing-container {
        grid-template-columns: 1fr;
    }
    .filters-sidebar {
        position: relative;
        top: 0;
        max-height: none;
    }
    .grid-details {
        grid-template-columns: 1fr;
    }
    aside .book {
        position: relative;
        top: 0;
    }
    .gallery {
        grid-template-columns: 1fr;
        height: auto;
    }
    .gallery .mainImg, .gallery .side {
        height: 250px;
    }
}

@media (max-width: 600px) {
    .city-panel.active {
        grid-template-columns: 1fr;
    }
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
}
