/**
 * Main Stylesheet - BYG Travel Planning Website
 */

:root {
    --primary-color: #DC143C;
    --primary-red: #DC143C;
    --secondary-color: #C41E3A;
    --red-dark: #B0171F;
    --red-light: #E31837;
    --dark-blue: #004E89;
    --light-blue: #1A659E;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 20px rgba(0,0,0,0.15);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

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

section + section {
    margin-top: 0;
}

/* Navigation */
.main-nav {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

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

/* Logo Styling */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 80px;
    flex-shrink: 0;
}

.logo-g {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    flex-shrink: 1;
    min-width: 0;
}

.logo-tagline {
    font-size: 13px;
    color: var(--primary-red);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.logo-img {
    max-height: 50px;
    max-width: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Adjust SVG text styling */
.logo-g text {
    font-family: 'Poppins', 'Arial', sans-serif;
    font-weight: 700;
}

.nav-center {
    display: none; /* Hidden as icons moved to hero section */
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(220, 20, 60, 0.1);
}

.nav-link.active {
    color: var(--white);
    background: var(--primary-color);
}

.nav-link.active .nav-icon {
    transform: scale(1.1);
}

.nav-icon {
    font-size: 20px;
    line-height: 1;
    display: block;
    transition: transform 0.3s;
    margin-bottom: 4px;
}

.nav-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Always show both icon and text */
.nav-link {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

/* Currency select and customer service removed */

.login-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.login-btn:hover {
    background: var(--secondary-color);
}

.saved-trips-btn {
    background: transparent;
    color: var(--primary-color);
    padding: 8px 16px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.saved-trips-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-bg-image.active {
    opacity: 1;
}

.hero-image-rotator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-text-rotator {
    position: relative;
    min-height: 150px;
}

.hero-text-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.hero-text-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

/* Hero Navigation Icons - Top Right Corner */
.hero-navigation {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    flex-wrap: wrap;
    max-width: 400px;
}

.hero-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
    min-width: 70px;
}

.hero-nav-link:hover {
    background: rgba(220, 20, 60, 0.1);
    transform: translateY(-2px);
}

.hero-nav-icon {
    font-size: 24px;
    line-height: 1;
    display: block;
}

.hero-nav-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    white-space: nowrap;
}

.search-container {
    margin-top: 25px;
}

/* Adivaha Search Section */
.adivaha-search-section {
    padding: 40px 20px;
    background: var(--bg-light);
}

.adivaha-search-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.search-form {
    max-width: 800px;
    margin: 0 auto;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    max-width: 100%;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-radius: 50px;
    padding: 8px 8px 8px 20px;
    flex: 1;
    min-width: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.search-icon {
    font-size: 18px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-input::placeholder {
    color: var(--text-light);
    font-size: 15px;
}

.search-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: auto;
}

.search-btn:hover {
    background: var(--secondary-color);
}

/* Desktop: Larger search button */
@media (min-width: 769px) {
    .search-input-wrapper {
        padding: 10px 10px 10px 25px;
        max-width: 700px;
    }
    
    .search-icon {
        font-size: 20px;
    }
    
    .search-input {
        font-size: 16px;
    }
    
    .search-btn {
        padding: 12px 28px;
        font-size: 16px;
    }
}

.travel-categories {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.category-bubble {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--white);
}

.category-bubble:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.category-bubble img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

/* Section Styles */
.trending-section,
.packages-section,
.themes-section,
.deals-section {
    padding: 25px 0;
    margin: 0;
}

/* Ensure consistent spacing between sections */
.deals-section {
    padding-bottom: 10px;
    margin-bottom: 0;
}

.trending-section {
    padding-top: 10px;
    margin-top: 0;
}

.themes-section {
    padding-top: 25px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 20px;
}

/* Destinations Grid - 5x1 layout for featured attractions */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 0;
}

.destinations-grid-5x1 {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
}

.destination-card {
    cursor: pointer;
    transition: transform 0.3s;
}

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

.destination-image {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-name {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
}

/* Package Filters */
.package-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--border-color);
    background: var(--white);
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Deals Carousel */
.deals-carousel-wrapper {
    position: relative;
    margin-top: 0;
}

.deals-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0 16px;
}

.deals-carousel::-webkit-scrollbar {
    display: none;
}

.deals-carousel .deal-card {
    flex: 0 0 280px;
    min-width: 280px;
    height: 300px;
}

.deals-grid-single-row .deal-card {
    grid-row: 1 / 2;
}

.deals-grid-single-row .deal-card:nth-child(1) {
    grid-column: 1 / 2;
}

.deals-grid-single-row .deal-card:nth-child(2) {
    grid-column: 2 / 3;
}

.deals-grid-single-row .deal-card:nth-child(3) {
    grid-column: 3 / 4;
}

.deals-grid-single-row .deal-card:nth-child(4) {
    grid-column: 4 / 5;
}

/* Double row layout (5-8 cards) */
.deals-grid-double-row {
    grid-template-rows: repeat(2, 300px);
}

.deals-grid-double-row .deal-card:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.deals-grid-double-row .deal-card:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.deals-grid-double-row .deal-card:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.deals-grid-double-row .deal-card:nth-child(4) {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.deals-grid-double-row .deal-card:nth-child(5) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.deals-grid-double-row .deal-card:nth-child(6) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.deals-grid-double-row .deal-card:nth-child(7) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.deals-grid-double-row .deal-card:nth-child(8) {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

.deal-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    display: block;
}

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

.deal-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.deal-card:hover .deal-image img {
    transform: scale(1.1);
}

.deal-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 30px 20px 20px;
    color: var(--white);
}

.deal-title {
    font-size: clamp(14px, 1.8vw, 22px);
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--white);
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.deal-duration {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
}

/* Packages Carousel */
.packages-carousel-wrapper {
    position: relative;
    margin-top: 0;
}

.packages-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

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

.packages-carousel .package-card {
    flex: 0 0 320px;
    min-width: 320px;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.carousel-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.package-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s;
}

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

.package-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.package-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.package-info {
    padding: 20px;
}

.package-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.package-destination {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 5px;
}

.package-duration {
    color: var(--text-light);
    font-size: 13px;
}

/* Themes Carousel */
.themes-carousel {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
    /* Add padding to prevent shadow clipping */
    padding: 15px;
    overflow: visible;
}

.theme-card {
    text-align: center;
    padding: 30px 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s;
    min-width: 150px;
    /* Prevent shadow clipping */
    overflow: visible;
}

.theme-card:nth-child(8n+1) { background: #e8f5e9; }
.theme-card:nth-child(8n+2) { background: #e3f2fd; }
.theme-card:nth-child(8n+3) { background: #fff3e0; }
.theme-card:nth-child(8n+4) { background: #fce4ec; }
.theme-card:nth-child(8n+5) { background: #f3e5f5; }
.theme-card:nth-child(8n+6) { background: #e0f7fa; }
.theme-card:nth-child(8n+7) { background: #fff8e1; }
.theme-card:nth-child(8n+8) { background: #e8eaf6; }

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

.theme-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.theme-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Floating CTA - Removed */

.plan-icon {
    font-size: 18px;
}

.chatbot-indicator {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.chatbot-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.chatbot-bubble {
    width: 30px;
    height: 30px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow);
    position: absolute;
    top: -5px;
    right: -5px;
}

/* Search Results Page */
.search-results-page {
    padding: 40px 0;
    min-height: 80vh;
}

.search-filters-bar {
    background: var(--bg-light);
    padding: 30px 0;
    margin-bottom: 40px;
}

.search-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: end;
}

.filter-group {
    flex: 1;
    min-width: 150px;
}

.filter-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.filter-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.search-again-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    height: fit-content;
}

.results-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 30px;
}

.packages-grid {
    display: grid;
    gap: 30px;
}

.package-card-large {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s;
}

.package-card-large:hover {
    box-shadow: var(--shadow-lg);
}

.package-image-large {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 250px;
}

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

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF0000;
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.package-details-large {
    padding: 30px;
}

.package-details-large h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.package-location {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 14px;
}

.package-duration {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 14px;
}

.package-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.package-price-section {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.original-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 16px;
}

.current-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    color: var(--text-light);
    font-size: 14px;
}

.view-package-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* Package Detail Page */
.package-detail-page {
    padding-top: 0;
}

.package-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.package-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px;
    color: var(--white);
}

.package-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 10px;
}

.package-price-hero {
    margin-top: 15px;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.price-main {
    font-size: 36px;
    font-weight: 700;
}

.price-original {
    font-size: 24px;
    text-decoration: line-through;
    opacity: 0.7;
}

.package-content-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    padding: 40px 0;
}

.booking-summary-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.booking-summary-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
}

.summary-item {
    margin-bottom: 20px;
}

.summary-item label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.summary-item input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid var(--border-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.total-price span:first-child {
    font-size: 18px;
    font-weight: 600;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.book-now-btn,
.customize-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.book-now-btn {
    background: var(--primary-color);
    color: var(--white);
}

.book-now-btn:hover {
    background: var(--secondary-color);
}

.customize-btn {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.customize-btn:hover {
    background: var(--bg-light);
}

/* Itinerary Builder */
.itinerary-builder {
    margin-top: 40px;
}

.itinerary-builder h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 30px;
}

.itinerary-day {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.day-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
}

.customize-day-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.day-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.itinerary-item {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
}

.item-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.item-content {
    flex: 1;
}

.item-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.item-content p {
    font-size: 14px;
    color: var(--text-light);
}

.view-map-btn,
.change-item-btn {
    background: var(--white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.view-map-btn:hover,
.change-item-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 25px;
    border-radius: 12px;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg);
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

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

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
}

/* Inquiry Form */
.inquiry-form {
    margin-top: 15px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.traveler-count-group {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.count-picker {
    flex: 1;
}

.count-picker label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.count-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px;
    box-sizing: border-box;
    overflow: hidden;
}

.count-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.count-value {
    font-size: 16px;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
    flex-shrink: 0;
}

.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

/* Footer */
.main-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--white);
}

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

.social-icon {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.no-results p {
    font-size: 18px;
}
