/* Reset and Base Styles */
html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #222222;
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    grid-column: 1;
}

.nav-logo i {
    font-size: 2rem;
    color: #e8f5e8;
}

.nav-logo .logo-image {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    justify-self: end;
    grid-column: 3;
}

.header-phone:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.header-phone i {
    font-size: 0.9rem;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
    grid-column: 2;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #e8f5e8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    grid-column: 3;
    justify-self: end;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-nav-content {
    width: 100%;
    height: 100%;
    background: #4a7c59;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.mobile-nav-logo .logo-image {
    height: 32px;
    width: auto;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex: 1;
}

.mobile-nav-links li {
    margin-bottom: 1rem;
}

.mobile-nav-links a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #e8f5e8;
}

.mobile-nav-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-phone i {
    font-size: 1rem;
    color: white;
}

/* Mobile Floating Phone Button */
.mobile-phone-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4a7c59;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-phone-button:hover {
    background: #3d6a4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.4);
}

.mobile-phone-button:active {
    transform: translateY(0);
}

.mobile-phone-button i {
    font-size: 1rem;
    color: white;
}

/* Hide on desktop */
@media (min-width: 769px) {
    .mobile-phone-button {
        display: none;
    }
}

/* Image Gallery Section */
.image-gallery-section {
    margin-top: 80px;
    background: white;
    padding: 2rem 0;
}

.image-gallery-section .container {
    max-width: 1400px;
}

/* Main Container */
.main-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1rem;
    align-items: start;
    background: #f8f9fa;
    border-radius: 16px;
}

/* Left Column */
.content-left {
    padding-right: 2rem;
}

/* Right Column - Booking Sidebar */

.booking-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Main Image Container */
.main-image-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto 1rem auto;
    padding: 0 2rem;
}

/* Image Gallery */
.main-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid #e8f5e8;
    box-shadow: 0 8px 32px rgba(74, 124, 89, 0.15);
    transition: all 0.3s ease;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--current-image);
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.1);
    z-index: 1;
}

/* Map Container */
.map-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a7c59;
    margin: 0 0 0.75rem 0;
    text-align: center;
}

.location-map {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    border: 3px solid #4a7c59;
    box-shadow: 0 8px 32px rgba(74, 124, 89, 0.15);
    transition: all 0.3s ease;
}

.location-map:hover {
    box-shadow: 0 12px 40px rgba(74, 124, 89, 0.25);
    transform: translateY(-2px);
}

.main-image:hover {
    border-color: #4a7c59;
    box-shadow: 0 12px 40px rgba(74, 124, 89, 0.25);
    transform: translateY(-2px);
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.image-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

.view-photos-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.thumbnail-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-arrow {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.carousel-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-arrow i {
    color: #333;
    font-size: 1rem;
}

.thumbnail-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.thumbnail-track {
    display: flex;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.thumbnail {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
    /* Prevent layout shifts */
    aspect-ratio: 3/2;
}

.thumbnail.active {
    border-color: #4a7c59;
    transform: scale(1.05);
}

.thumbnail:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #717171;
}

.report-link {
    margin-left: auto;
    color: #222222;
    text-decoration: none;
    font-size: 0.8rem;
}

.report-link:hover {
    text-decoration: underline;
}

/* Listing Title */
.listing-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Key Features */
.key-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.feature i {
    color: #717171;
}

/* Van Description */
.van-description {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.van-description h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Features Section */
.features-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.features-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #222222;
    font-weight: 600;
}

/* Features Carousel */
.features-carousel {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.features-arrow {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    z-index: 2;
}

.features-arrow:hover {
    border-color: #4a7c59;
    color: #4a7c59;
}

.features-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.features-arrow i {
    font-size: 0.9rem;
    color: #717171;
}

.features-arrow:hover i {
    color: #4a7c59;
}

.features-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 200px;
    padding: 0.5rem 0;
}

.features-track {
    display: flex;
    transition: transform 0.3s ease;
}

.features-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

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

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e8f5e8;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.2);
    border-color: #4a7c59;
}

.feature-item:hover::before {
    opacity: 0.05;
}

.feature-item i {
    color: #4a7c59;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    color: #2c5530;
    transform: scale(1.1);
}

.feature-item span {
    font-weight: 500;
    color: #4a7c59;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.feature-item:hover span {
    color: #2c5530;
    font-weight: 600;
}

.info-icon {
    color: #4a7c59 !important;
    font-size: 0.8rem !important;
    margin-left: auto;
    cursor: help;
    transition: color 0.3s ease;
}

.info-icon:hover {
    color: #2c5530 !important;
}

/* Features Dots */
.features-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.dot.active {
    background: #4a7c59;
}

.dot:hover {
    background: #4a7c59;
}

/* Amenities Section */
.amenities-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.amenities-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #222222;
    font-weight: 600;
}

/* Amenities Carousel */
.amenities-carousel {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.amenities-arrow {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    z-index: 2;
}

.amenities-arrow:hover {
    border-color: #4a7c59;
    color: #4a7c59;
}

.amenities-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.amenities-arrow i {
    font-size: 0.9rem;
    color: #717171;
}

.amenities-arrow:hover i {
    color: #4a7c59;
}

.amenities-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 200px;
    padding: 0.5rem 0;
}

.amenities-track {
    display: flex;
    transition: transform 0.3s ease;
}

.amenities-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

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

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e8f5e8;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.amenity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.amenity-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.2);
    border-color: #4a7c59;
}

.amenity-item:hover::before {
    opacity: 0.05;
}

.amenity-item i {
    color: #4a7c59;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.amenity-item:hover i {
    color: #2c5530;
    transform: scale(1.1);
}

.amenity-item span {
    font-weight: 500;
    color: #4a7c59;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.amenity-item:hover span {
    color: #2c5530;
    font-weight: 600;
}

/* Amenities Dots */
.amenities-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.amenity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.amenity-dot.active {
    background: #4a7c59;
}

.amenity-dot:hover {
    background: #4a7c59;
}

/* Availability and Rates Section */
.availability-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.availability-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222222;
    font-weight: 600;
}

.minimum-stay {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #717171;
    font-size: 0.9rem;
}

.minimum-stay i {
    color: #4a7c59;
}

.calendar-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.calendar-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222222;
    margin: 0;
    text-align: center;
    flex: 1;
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #717171;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav:hover {
    color: #4a7c59;
}

.mobile-next {
    display: none;
}

.dual-calendar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.month-calendar {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e0e0e0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-top: 1rem;
}

.calendar-day {
    padding: 8px;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 0.9rem;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day:hover {
    background-color: #f0f0f0;
}

.calendar-day.selected {
    background-color: #000;
    color: white;
}

.calendar-day.in-range {
    background-color: #e0e0e0;
}

.calendar-day.hover-range {
    background-color: #f5f5f5;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.disabled:hover {
    background-color: transparent;
}

.calendar-day.blocked-date {
    background-color: #fee2e2;
    color: #dc2626;
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day.past-date {
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}

.calendar-day.available {
    cursor: pointer;
}

.calendar-day.available:hover {
    background-color: #f0f9ff;
}

.calendar-day.available-for-end {
    background-color: #f0f9ff;
    border: 2px dashed #4a7c59;
    color: #4a7c59;
    font-weight: 500;
}

.calendar-day.available-for-end:hover {
    background-color: #e6f3ff;
    border-color: #2d5a3d;
}

.sync-status {
    padding: 0.5rem;
    background: #f0f9ff;
    border-radius: 4px;
    font-size: 0.875rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

/* Booking Summary */
.booking-summary {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.selected-dates {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.selected-dates div {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

.selected-dates div:last-child {
    font-weight: 600;
    font-size: 1.1rem;
    border-top: 1px solid #e0e0e0;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.discount-highlight {
    background-color: #e8f5e8;
    border: 2px solid #4ade80;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.discount-text {
    color: #16a34a;
    font-weight: bold;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.total-price {
    font-weight: 600;
    font-size: 1.1rem;
    border-top: 1px solid #e0e0e0;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.calendar-day.booked {
    background: #f8f9fa;
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.available {
    color: #222222;
}

/* Discounts Section */
.discounts {
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 1.8rem 0 0.6rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #e8f5e8;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #e8f5e8;
}

.footer-logo i {
    font-size: 1.6rem;
    color: #e8f5e8;
}

.footer-description {
    line-height: 1.5;
    color: #d0e8d0;
    font-size: 0.9rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.contact-item i {
    color: #e8f5e8;
    width: 16px;
    font-size: 0.85rem;
}

.contact-item small {
    color: #b0d0b0;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

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

.footer-links li {
    margin-bottom: 0.3rem;
}

.footer-links a {
    color: #d0e8d0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #e8f5e8;
}

.footer-links li:not(:has(a)) {
    color: #d0e8d0;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.9rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.footer-bottom p {
    color: #b0d0b0;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 0.9rem;
}

.footer-legal a {
    color: #b0d0b0;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #e8f5e8;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

.discounts h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #222222;
    font-weight: 600;
}

.discounts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.discounts li {
    padding: 0.5rem 0;
    color: #717171;
    font-size: 0.9rem;
}

.discounts strong {
    color: #4a7c59;
}

.van-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background-color: #f7f7f7;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #222222;
}

.description-text {
    color: #222222;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.show-more-btn {
    background: none;
    border: none;
    color: #222222;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Host Information */
.host-info {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.host-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.host-details {
    display: flex;
    gap: 1rem;
}

.host-avatar {
    width: 60px;
    height: 60px;
    background-color: #f7f7f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #717171;
}

.host-text {
    flex: 1;
}

.member-since {
    color: #717171;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.host-bio {
    color: #222222;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.message-host-btn {
    background: none;
    border: 1px solid #222222;
    color: #222222;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.message-host-btn:hover {
    background-color: #f7f7f7;
}

/* Features Section */
.features-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.features-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e8f5e8;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-item:hover,
.features-slide.active .feature-item:hover {
    border-color: #4a7c59;
}

.feature-item:hover::before {
    opacity: 0.05;
}

.feature-item i {
    color: #4a7c59;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.feature-item:hover i,
.features-slide.active .feature-item:hover i {
    color: #2c5530;
}

.feature-item span {
    font-weight: 500;
    color: #4a7c59;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.feature-item:hover span,
.features-slide.active .feature-item:hover span {
    color: #2c5530;
    font-weight: 600;
}

.show-all-btn {
    background: none;
    border: none;
    color: #222222;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Amenities Section */
.amenities-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.amenities-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e8f5e8;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.amenity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.amenity-item:hover,
.amenities-slide.active .amenity-item:hover {
    border-color: #4a7c59;
}

.amenity-item:hover::before {
    opacity: 0.05;
}

.amenity-item i {
    color: #4a7c59;
    font-size: 1.1rem;
    width: 20px;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.amenity-item:hover i,
.amenities-slide.active .amenity-item:hover i {
    color: #2c5530;
}

.amenity-item span {
    font-weight: 500;
    color: #4a7c59;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.amenity-item:hover span,
.amenities-slide.active .amenity-item:hover span {
    color: #2c5530;
    font-weight: 600;
}

/* Rules Section */
.rules-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.rules-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.rule-item i {
    color: #717171;
    width: 20px;
}

.roadside-assistance {
    background-color: #f7f7f7;
    padding: 1rem;
    border-radius: 8px;
}

.roadside-assistance h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.roadside-assistance p {
    font-size: 0.9rem;
    color: #717171;
}

/* Cancellation Policy */
.cancellation-policy {
    margin-bottom: 2rem;
}

.cancellation-policy h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.cancellation-policy p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.view-details-btn {
    background: none;
    border: none;
    color: #222222;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Booking Section */
.booking-section {
    background: #f8f9fa;
    padding: 2rem 0;
    margin-top: 2rem;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.booking-card {
    width: 100%;
}

.price-section {
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price i {
    color: #ffd700;
    font-size: 1.2rem;
}

.amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222222;
}

.period {
    font-size: 1rem;
    color: #717171;
}

.popularity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #717171;
}

.popularity i {
    color: #ff6b35;
    font-size: 0.8rem;
}

/* Delivery Options */
.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.delivery-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.delivery-option:hover {
    border-color: #4a7c59;
}

.option-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.option-name {
    font-weight: 500;
    color: #222222;
}

.option-location {
    font-size: 0.85rem;
    color: #717171;
}

.option-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #222222;
}

.option-price i {
    font-size: 0.8rem;
    color: #717171;
}

/* Total Section */
.total-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.total-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.total-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #222222;
    margin: 0;
}

.view-details {
    font-size: 0.85rem;
    color: #4a7c59;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 0.25rem;
}

.total-note {
    font-size: 0.8rem;
    color: #717171;
}

/* Payment Section */
.payment-section {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #717171;
}

.paypal-link, .learn-more {
    color: #0070ba;
    text-decoration: none;
}

.paypal-link:hover, .learn-more:hover {
    text-decoration: underline;
}

/* Instant Book Button */
.instant-book-btn {
    width: 100%;
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 0.5rem;
}

.instant-book-btn:hover {
    background: #ff5252;
}

.booking-note {
    font-size: 0.8rem;
    color: #717171;
    text-align: center;
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 2rem;
}

.contact-info-card {
    text-align: center;
}

.phone-section {
    margin-bottom: 2rem;
}

.phone-section i {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 1rem;
}

.phone-section h4 {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a7c59;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.phone-number:hover {
    color: #2c5530;
}

.instructions {
    margin-bottom: 2rem;
}

.instructions p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.selected-dates-display {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.selected-dates-display span {
    color: #4a7c59;
    font-weight: 600;
    font-size: 0.95rem;
}

.booking-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.call-btn, .text-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    flex: 1;
    max-width: 150px;
}

.call-btn {
    background: #4a7c59;
    color: white;
}

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

.text-btn {
    background: #f8f9fa;
    color: #4a7c59;
    border: 2px solid #4a7c59;
}

.text-btn:hover {
    background: #4a7c59;
    color: white;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.date-section label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.date-display {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s;
    font-size: 0.9rem;
    position: relative;
}

.date-display:hover {
    border-color: #4a7c59;
}

.date-display span {
    text-align: center;
}

.date-display i {
    color: #717171;
    font-size: 0.8rem;
    position: absolute;
    right: 0.75rem;
}

.date-placeholder {
    color: #717171;
}

.guests-section {
    margin-bottom: 1rem;
}

.guests-section label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.guest-selector {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    cursor: pointer;
}

.guest-selector:focus {
    outline: none;
    border-color: #4a7c59;
}

.price-breakdown {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.breakdown-item.total {
    border-top: 1px solid #e0e0e0;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.delivery-section h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.delivery-section p {
    font-size: 0.9rem;
    color: #717171;
    line-height: 1.4;
}

.check-availability-btn {
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.check-availability-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 124, 89, 0.3);
}

/* Availability Section */
.availability-section {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.availability-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.minimum-stay {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #717171;
}

.calendar-container {
    margin-bottom: 1.5rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 1rem;
    color: #222222;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.calendar-nav:hover {
    background-color: #f7f7f7;
}

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.8rem;
    font-weight: 500;
}

.calendar-day.available {
    background: #ffffff;
    color: #222222;
    border: 1px solid #e0e0e0;
}

.calendar-day.available:hover {
    background: #f7f7f7;
}

.calendar-day.booked {
    background: #f7f7f7;
    color: #717171;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: #4a7c59;
    color: white;
}

.calendar-day.other-month {
    color: #e0e0e0;
}

.discounts h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.discounts ul {
    list-style: none;
    font-size: 0.9rem;
    color: #717171;
}

.discounts li {
    margin-bottom: 0.25rem;
}

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

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h3 {
    margin: 0;
    color: #333;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #717171;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.close-modal:hover {
    background-color: #f0f0f0;
}

.modal-body {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.booking-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.booking-summary h4 {
    margin: 0 0 1rem 0;
    color: #333;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.summary-item.total {
    border-top: 1px solid #e0e0e0;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.submit-booking-btn {
    width: 100%;
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 124, 89, 0.3);
}

/* Booking Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e8f5e8;
}

.booking-summary h4 {
    margin: 0 0 1rem 0;
    color: #4a7c59;
    font-size: 1.1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.summary-item.total {
    border-top: 2px solid #e8f5e8;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #4a7c59;
}

.confirm-booking-btn {
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.2);
}

.confirm-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.3);
    background: linear-gradient(135deg, #2c5530 0%, #1a3a1f 100%);
}

.confirm-booking-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-success,
.form-error {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.form-success {
    background: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
}

.form-error {
    background: #f8d7da;
    border: 2px solid #f5c6cb;
    color: #721c24;
}

.form-success i,
.form-error i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-success h4,
.form-error h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.form-success p,
.form-error p {
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-container {
        max-width: 100%;
        padding: 0 1rem;
    }
}

@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .booking-sidebar {
        position: static;
        order: -1;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .listing-title {
        font-size: 1.5rem;
    }
    
    .key-features {
        gap: 1rem;
    }
    
    .features-grid,
    .amenities-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .thumbnail-carousel {
        padding: 0 10px;
    }
    
    .thumbnail {
        width: 100px;
        height: 70px;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .booking-container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .booking-card,
    .availability-section {
        padding: 1rem;
    }
    
    .price .amount {
        font-size: 1.25rem;
    }
}

/* Mobile Optimization - DO NOT change any existing desktop styles */

/* Hide mobile map on desktop */
.mobile-map-section {
    display: none;
}

/* Mobile Fixed Phone Number */
.mobile-fixed-phone {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #4a7c59;
    color: white;
    padding: 12px 16px;
    text-align: center;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid #3d6a4a;
}

.mobile-fixed-phone a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-fixed-phone i {
    font-size: 1.1rem;
}

.mobile-fixed-phone:hover {
    background: #3d6a4a;
}

@media (max-width: 768px) {
    /* Full width container on mobile */
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    /* Stack layout vertically on mobile */
    .content-section .container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem !important;
    }
    
    /* Mobile header */
    .header .container {
        padding: 0 1rem !important;
    }
    
    /* Keep nav-logo text on one line */
    .nav-logo {
        font-size: 1.2rem !important;
        white-space: nowrap !important;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .header-phone {
        display: none !important;
    }
    
    /* Mobile image gallery */
    .image-gallery {
        height: 250px !important;
        border-radius: 12px !important;
    }
    
    /* Mobile main image container - full width since map is hidden */
    .main-image-container {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        padding: 0 1rem !important;
    }
    
    /* Mobile main image - full width */
    .main-image {
        width: 100% !important;
        height: 300px !important;
    }
    
    /* Mobile main container - remove gray background and center content */
    .main-container {
        background: white !important;
        border-radius: 0 !important;
        padding: 1rem !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
    
    /* Mobile content left - center alignment */
    .content-left {
        padding-right: 0 !important;
        text-align: center !important;
    }
    
    /* Mobile breadcrumbs - center alignment */
    .breadcrumbs {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Mobile listing title - center alignment */
    .listing-title {
        text-align: center !important;
    }
    
    /* Mobile key features - center alignment */
    .key-features {
        justify-content: center !important;
    }
    
    /* Mobile van description - center alignment */
    .van-description h2 {
        text-align: center !important;
    }
    
    /* Mobile van tags - center alignment */
    .van-tags {
        justify-content: center !important;
    }
    
    /* Mobile description text - center alignment */
    .description-text {
        text-align: center !important;
    }
    
    /* Mobile features section - center alignment */
    .features-section h3 {
        text-align: center !important;
    }
    
    /* Mobile amenities section - center alignment */
    .amenities-section h3 {
        text-align: center !important;
    }
    
    /* Mobile availability section - center alignment */
    .availability-section h3 {
        text-align: center !important;
    }
    
    /* Mobile minimum stay - center alignment */
    .minimum-stay {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Mobile discounts - center alignment */
    .discounts h4 {
        text-align: center !important;
    }
    
    .discounts ul {
        text-align: center !important;
    }
    
    /* Mobile mobile map section - center alignment */
    .mobile-map-section h3 {
        text-align: center !important;
    }
    
    /* Mobile map container - match image height */
    .map-container {
        height: 250px !important;
        border-radius: 12px !important;
    }
    
    /* Hide original map on mobile, show mobile map */
    .map-container {
        display: none !important;
    }
    
    .mobile-map-section {
        display: block !important;
        margin-top: 2rem !important;
    }
    
    /* Show mobile fixed phone number */
    .mobile-fixed-phone {
        display: block !important;
    }
    
    /* Adjust header to account for fixed phone bar */
    .navbar {
        top: 48px !important;
    }
    
    /* Adjust main content to account for fixed phone bar */
    .image-gallery-section {
        margin-top: 128px !important;
    }
    
    /* 1. Fix Container Overflow and Centering */
    body {
        overflow-x: hidden !important;
    }
    
    .container, .content-section .container {
        max-width: 100% !important;
        padding: 0 16px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    
    .booking-sidebar, .features-card, .amenities-card, 
    .calendar-container, .availability-section {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 1rem 0 !important;
        padding: 1rem !important;
        box-sizing: border-box !important;
    }
    
    /* 2. Fix Footer Design */
    .footer {
        width: 100% !important;
        padding: 2rem 16px !important;
        margin: 2rem 0 0 0 !important;
        background: #059669 !important;
        color: white !important;
    }
    
    .footer .container {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: left !important;
    }
    
    .footer-section {
        margin-bottom: 1rem !important;
    }
    
    .footer-section h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
        color: white !important;
    }
    
    .footer-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .footer-links a {
        color: rgba(255, 255, 255, 0.8) !important;
        text-decoration: none !important;
        font-size: 0.9rem !important;
    }
    
    .footer-bottom {
        text-align: center !important;
        padding-top: 1.5rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
        font-size: 0.85rem !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }
    
    /* 3. Fix Image Gallery on Mobile */
    .image-gallery {
        width: 100% !important;
        height: 280px !important;
        margin: 0 0 1.5rem 0 !important;
        border-radius: 16px !important;
    }
    
    .view-photos-btn {
        bottom: 12px !important;
        right: 12px !important;
        padding: 8px 16px !important;
        font-size: 0.875rem !important;
    }
    
    .thumbnail-strip {
        width: 100% !important;
        padding: 0 !important;
        margin: 1rem 0 !important;
    }
    
    /* 4. Improve Mobile Typography and Spacing */
    .luxury-title {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        margin: 0 0 0.5rem 0 !important;
        text-align: left !important;
    }
    
    .subtitle, .van-details {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
    }
    
    .price-display {
        text-align: center !important;
        margin: 1.5rem 0 !important;
    }
    
    .price-amount {
        font-size: 2.2rem !important;
    }
    
    .popular-choice {
        display: inline-block !important;
        margin: 0.5rem 0 !important;
    }
    
    /* 5. Fix Calendar and Forms on Mobile */
    .calendar-container {
        padding: 1rem !important;
    }
    
    .calendar-day {
        height: 42px !important;
        font-size: 0.9rem !important;
    }
    
    .dates-selection, .getting-rv-section {
        padding: 1rem !important;
        margin: 1rem 0 !important;
    }
    
    .instant-book-btn, .reserve-btn {
        width: 100% !important;
        padding: 16px !important;
        font-size: 1.1rem !important;
        margin: 1rem 0 !important;
    }
    
    /* 6. Fix Feature/Amenity Carousels */
    .features-grid, .amenities-grid {
        display: block !important;
        width: 100% !important;
    }
    
    .feature-item, .amenity-item {
        width: 100% !important;
        margin: 0 0 0.75rem 0 !important;
        padding: 1rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }
    
    .carousel-nav {
        display: none !important;
    }
    
    /* Mobile typography */
    .luxury-title {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
    }
    
    .subtitle {
        font-size: 1rem !important;
    }
    
    /* Mobile booking sidebar - full width */
    .booking-sidebar {
        position: static !important;
        top: auto !important;
        margin-top: 2rem !important;
        padding: 1.5rem !important;
    }
    
    /* Mobile calendar - single month view */
    .dual-calendar {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .month-calendar:last-child {
        display: none !important;
    }
    
    /* Show mobile next button on mobile */
    .mobile-next {
        display: block !important;
    }
    
    /* Mobile features/amenities grid */
    .features-grid, .amenities-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Mobile pill containers - condensed and centered */
    .feature-item, .amenity-item {
        padding: 0.75rem 1rem !important;
        justify-content: center !important;
        text-align: center !important;
        width: 280px !important;
        height: 60px !important;
        margin: 0 auto !important;
        font-size: 0.9rem !important;
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }
    
    .feature-item i, .amenity-item i {
        margin-right: 0.5rem !important;
        font-size: 1rem !important;
    }
    
    .feature-item span, .amenity-item span {
        text-align: center !important;
        flex: 1 !important;
    }
    
    /* Mobile buttons */
    .instant-book-btn {
        padding: 14px 20px !important;
        font-size: 1rem !important;
    }
    
    /* Mobile spacing */
    .content-section {
        padding: 1rem 0 !important;
    }
    
    /* Mobile price display */
    .price-amount {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .container {
        padding: 0 0.75rem !important;
    }
    
    .luxury-title {
        font-size: 1.5rem !important;
    }
    
    .booking-sidebar {
        padding: 1rem !important;
        margin: 1rem 0 !important;
    }
    
    .calendar-day {
        height: 40px !important;
        font-size: 0.875rem !important;
    }
}
