/* =================================================================
   Vingegaard Autocamper - Main Stylesheet
   ================================================================= */

/* CSS Variables - Nature-Inspired Color Palette */
:root {
    /* Primary Colors - Forest Green */
    --primary-color: #2d5016;
    --primary-dark: #234010;
    --primary-light: #4a7c24;
    
    /* Secondary Colors - Sage Green */
    --secondary-color: #6ca832;
    --secondary-light: #8bc653;
    --secondary-pale: #e8f5d9;
    
    /* Earth Tones */
    --accent-color: #5d4e37;
    --earth-brown: #5d4e37;
    --sand-brown: #c4a57b;
    --bark-brown: #8b7355;
    --cream: #f5f1e8;
    
    /* Text Colors */
    --text-dark: #2c2c2c;
    --text-gray: #5a5a5a;
    --text-light: #8e8e8e;
    --text-on-dark: #ffffff;
    
    /* Semantic Colors */
    --success-green: #4caf50;
    --warning-amber: #ff9800;
    --error-red: #f44336;
    --info-blue: #2196f3;
    
    /* UI Elements */
    --border-color: #e0e0e0;
    --border-medium: #bdbdbd;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --bg-cream: #f5f1e8;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile-friendly tap targets */
@media (max-width: 768px) {
    a, button, input, select, textarea {
        min-height: 44px; /* iOS recommended tap target size */
    }
}

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

/* =================================================================
   Navigation
   ================================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* =================================================================
   Hero Slider
   ================================================================= */
.hero-slider {
    margin-top: 70px;
    position: relative;
    height: 1000px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

@media (max-width: 768px) {
    .slide-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    }
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* =================================================================
   Buttons
   ================================================================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* =================================================================
   Features Section
   ================================================================= */
.features-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-box p {
    color: var(--text-gray);
    line-height: 1.6;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* =================================================================
   Vehicles Section
   ================================================================= */
.vehicles-section {
    padding: 80px 0;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.vehicle-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.vehicle-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.vehicle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.vehicle-content {
    padding: 25px;
}

.vehicle-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.vehicle-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.vehicle-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.spec {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
}

.spec i {
    color: var(--primary-color);
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* =================================================================
   FAQ Section
   ================================================================= */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* =================================================================
   Camper Page Styles
   ================================================================= */
.camper-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 20px 60px;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.camper-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.camper-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.camper-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.camper-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2em;
}

.camper-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.spec-item {
    padding: 20px;
    background: var(--cream);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.spec-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2em;
}

.spec-item p {
    color: var(--text-gray);
    margin: 0;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border: 2px solid var(--cream);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--secondary-color);
    transform: translateX(5px);
}

.feature-item::before {
    content: "✓";
    background: var(--secondary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

.cta-section h2 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ==========================================
   Carousel Styles
   ========================================== */

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

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

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
    color: white;
    padding: 30px 40px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.carousel-caption h3 {
    font-size: 1.8rem;
    margin: 0 0 10px 0;
    font-weight: 700;
    color: var(--secondary-light);
}

.carousel-caption p {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
    opacity: 0.95;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 80, 22, 0.8);
    color: white;
    border: none;
    padding: 20px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.carousel-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Dots Indicators */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--secondary-color);
    border-color: white;
    width: 14px;
    height: 14px;
}

/* =================================================================
   Contact Section
   ================================================================= */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-gray);
    margin: 0;
}

/* Form Styles */
.contact-form-container {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

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

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* =================================================================
   Footer
   ================================================================= */
.footer {
    background: linear-gradient(135deg, var(--text-dark), #2d3748);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

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

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

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-3px);
}

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

/* =================================================================
   Conditions Page
   ================================================================= */
.page-header {
    margin-top: 70px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.conditions-content {
    padding: 80px 0;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.condition-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.condition-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.condition-icon i {
    font-size: 1.8rem;
    color: white;
}

.condition-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.condition-card ul {
    list-style: none;
    padding: 0;
}

.condition-card li {
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-gray);
    position: relative;
    line-height: 1.6;
}

.condition-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-wrapper h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-wrapper h3 {
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-wrapper ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-wrapper li {
    margin-bottom: 10px;
    color: var(--text-gray);
}

.cta-box {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 15px;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-box p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* =================================================================
   Responsive Design
   ================================================================= */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-slider {
        height: 500px;
        margin-top: 60px;
    }
    
    .slide-content {
        max-width: 90%;
        padding: 0 1rem;
    }
    
    .slide-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }
    
    .slide-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .btn-large {
        font-size: 1rem !important;
        padding: 0.875rem 1.75rem !important;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* Optional Services - Mobile */
    .checkbox-label {
        padding: 0.625rem;
    }
    
    .checkbox-text {
        font-size: 0.9rem;
    }
    
    .service-name {
        font-size: 0.9rem;
    }
    
    .service-price {
        font-size: 0.9rem;
    }
    
    .optional-services {
        padding: 0.875rem !important;
    }
    
    /* Pricing Section - Mobile */
    .pricing-section {
        padding: 2.5rem 0;
    }
    
    .pricing-section h2 {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-card h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .additional-fees,
    .rental-notes {
        margin: 2rem 1rem !important;
        padding: 1.5rem !important;
    }
    
    .fees-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    /* Booking Header - Mobile */
    .booking-header {
        padding: 5rem 1rem 3rem !important;
    }
    
    .booking-header h1 {
        font-size: 1.75rem !important;
    }
    
    .booking-header .tagline {
        font-size: 1rem !important;
    }
    
    /* Calendar - Mobile */
    .calendar-container {
        padding: 1.5rem 1rem;
    }
    
    .calendar-controls h3 {
        font-size: 1.2rem;
    }
    
    .btn-nav {
        padding: 0.5rem 0.875rem;
        font-size: 0.9rem;
    }
    
    #calendar {
        gap: 4px;
    }
    
    .calendar-day {
        font-size: 0.9rem;
        min-height: 45px;
    }
    
    .calendar-day-header {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .legend {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    /* Selection Summary - Mobile */
    .selection-summary {
        padding: 1.5rem;
        margin: 1.5rem 1rem;
    }
    
    .selection-summary h3 {
        font-size: 1.3rem;
    }
    
    .selection-summary p {
        font-size: 0.95rem;
    }
    
    #priceBreakdown h4 {
        font-size: 1.1rem;
    }
    
    .price-row {
        font-size: 0.9rem;
    }
    
    .price-total .price-row {
        font-size: 1.05rem;
    }
    
    /* Booking Form - Mobile */
    .booking-form {
        padding: 1.5rem;
        margin: 1.5rem 1rem;
    }
    
    .booking-form h3 {
        font-size: 1.3rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.625rem;
    }
    
    .btn-primary {
        font-size: 1rem !important;
        padding: 0.875rem 1.5rem !important;
    }
    
    /* Contact Section - Mobile */
    .contact-section {
        padding: 3rem 0 !important;
    }
    
    .contact-section h2 {
        font-size: 1.75rem !important;
    }
    
    .contact-section p {
        font-size: 1rem !important;
    }
    
    .contact-info {
        gap: 1.5rem !important;
        padding: 0 1rem;
    }
    
    .contact-item {
        padding: 2rem 1.5rem !important;
    }
    
    .contact-item h3 {
        font-size: 1.2rem !important;
    }
    
    .contact-item p {
        font-size: 1rem !important;
    }
    
    /* Footer - Mobile */
    .footer {
        padding: 3rem 0 1.5rem !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem;
    }
    
    .footer-col h4 {
        font-size: 1.1rem !important;
    }
    
    .footer-col p,
    .footer-col li {
        font-size: 0.95rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.85rem !important;
    }
    
    /* FAQ Section - Mobile */
    .faq-section {
        padding: 3rem 0 !important;
    }
    
    .faq-section h2 {
        font-size: 1.75rem !important;
        padding: 0 1rem;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Page Header - Mobile */
    .page-header {
        padding: 4rem 1rem !important;
    }
    
    .page-header h1 {
        font-size: 1.75rem !important;
    }
    
    .page-header p {
        font-size: 1rem !important;
        padding: 0 1rem;
    }
    
    .page-header .fas {
        font-size: 2rem !important;
        width: 60px !important;
        height: 60px !important;
    }
    
    /* Camper Page - Mobile */
    .camper-hero {
        padding: 80px 15px 40px;
    }
    
    .camper-hero h1 {
        font-size: 2em;
    }
    
    .camper-content {
        padding: 40px 15px;
    }
    
    .camper-section {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .camper-section h2 {
        font-size: 1.5em;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .spec-item {
        padding: 15px;
    }
    
    .spec-item h3 {
        font-size: 1.1em;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-item {
        padding: 12px;
        font-size: 0.95em;
    }
    
    .feature-item::before {
        width: 25px;
        height: 25px;
        font-size: 0.9em;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 2em;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1em;
    }
    
    /* Carousel - Mobile */
    .carousel-container {
        border-radius: 12px;
    }
    
    .carousel-wrapper {
        aspect-ratio: 16 / 11;
    }
    
    .carousel-caption {
        padding: 20px 25px;
    }
    
    .carousel-caption h3 {
        font-size: 1.4rem;
    }
    
    .carousel-caption p {
        font-size: 0.95rem;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        padding: 15px;
        font-size: 1.2rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-dots {
        bottom: 15px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 12px;
        height: 12px;
    }
}

/* Extra Small Devices (phones, less than 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-slider {
        height: 450px;
    }
    
    .slide-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .slide-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .btn-large {
        font-size: 0.9rem !important;
        padding: 0.75rem 1.5rem !important;
    }
    
    .slider-nav {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .slider-nav.prev {
        left: 5px;
    }
    
    .slider-nav.next {
        right: 5px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    /* Pricing - Extra Small */
    .pricing-section h2 {
        font-size: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.25rem;
    }
    
    .price {
        font-size: 1.75rem;
    }
    
    /* Booking Header - Extra Small */
    .booking-header h1 {
        font-size: 1.5rem !important;
    }
    
    .booking-header .tagline {
        font-size: 0.9rem !important;
    }
    
    /* Calendar - Extra Small */
    .calendar-day {
        font-size: 0.85rem;
        min-height: 40px;
    }
    
    .calendar-day-header {
        font-size: 0.75rem;
        padding: 0.4rem;
    }
    
    #calendar {
        gap: 3px;
    }
    
    /* Contact - Extra Small */
    .contact-section h2 {
        font-size: 1.5rem !important;
    }
    
    .contact-item {
        padding: 1.5rem 1.25rem !important;
    }
    
    /* Page Header - Extra Small */
    .page-header h1 {
        font-size: 1.5rem !important;
    }
    
    .page-header p {
        font-size: 0.9rem !important;
    }
    
    /* FAQ - Extra Small */
    .faq-section h2 {
        font-size: 1.5rem !important;
    }
    
    .faq-question {
        padding: 0.875rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 0.875rem 0.875rem;
        font-size: 0.9rem;
    }
    
    /* Alert Modal - Mobile */
    .alert-icon {
        padding: 1.25rem;
        font-size: 2.25rem;
    }
    
    .alert-title {
        font-size: 1.2rem;
    }
    
    .alert-message {
        font-size: 0.9rem;
    }
    
    .alert-season-box {
        padding: 0.75rem;
    }
    
    .alert-button {
        font-size: 0.95rem;
        padding: 0.875rem 1.25rem;
    }
    
    /* Camper Page - Extra Small */
    .camper-hero h1 {
        font-size: 1.75em;
    }
    
    .camper-section {
        padding: 20px 15px;
    }
    
    .camper-section h2 {
        font-size: 1.3em;
    }
    
    .spec-item h3 {
        font-size: 1em;
    }
    
    .feature-item {
        font-size: 0.9em;
    }
    
    .cta-section h2 {
        font-size: 1.75em;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.95em;
    }
    
    /* Carousel - Extra Small */
    .carousel-wrapper {
        aspect-ratio: 4 / 3;
    }
    
    .carousel-caption {
        padding: 15px 20px;
    }
    
    .carousel-caption h3 {
        font-size: 1.2rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        padding: 12px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .carousel-dots {
        bottom: 10px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 10px;
        height: 10px;
    }
}

/* =================================================================
   Calendar and Booking Styles
   ================================================================= */

/* Booking Header */
.booking-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
}

.booking-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.booking-header .tagline {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid;
}

.pricing-card.low_season {
    border-top-color: #10b981;
}

.pricing-card.medium_season {
    border-top-color: #f59e0b;
}

.pricing-card.high_season {
    border-top-color: #ef4444;
}

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

.pricing-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.price-display {
    text-align: center;
    margin-bottom: 2rem;
}

.price-option {
    margin: 1rem 0;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price .currency {
    font-size: 1.2rem;
    font-weight: normal;
    margin-left: 0.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.price-divider {
    margin: 1rem 0;
    color: var(--text-light);
    font-style: italic;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.periods h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.period {
    background: var(--bg-light);
    padding: 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Additional Fees */
.additional-fees {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.additional-fees h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.fees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.fee-name {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.fee-value {
    font-weight: bold;
    color: var(--primary-color);
}

/* Rental Notes */
.rental-notes {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.rental-notes h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.rental-notes ul {
    list-style: none;
    padding: 0;
}

.rental-notes li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
}

.rental-notes li:last-child {
    border-bottom: none;
}

/* Booking Section */
.booking-section {
    padding: 4rem 0;
}

.booking-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Calendar Container */
.calendar-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

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

.calendar-controls h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.btn-nav {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

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

/* Calendar Grid */
#calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 1.5rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: bold;
    padding: 0.75rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

.calendar-day.empty {
    border: none;
    cursor: default;
}

.calendar-day:not(.empty):not(.disabled):not(.booked):hover {
    border-color: var(--primary-color);
    background: rgba(102, 126, 234, 0.1);
    transform: scale(1.05);
}

.calendar-day.disabled {
    background: #f9fafb;
    color: #d1d5db;
    cursor: not-allowed;
    border-color: #e5e7eb;
}

.calendar-day.booked {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fecaca;
    cursor: not-allowed;
}

.calendar-day.changeover {
    background: linear-gradient(to top right, 
        #fee2e2 0%, #fee2e2 49%, 
        white 51%, white 100%);
    color: #333;
    border: 2px solid #fecaca;
    cursor: pointer;
    position: relative;
}

.calendar-day.changeover:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.calendar-day.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-dark);
}

.calendar-day.in-range {
    background: rgba(102, 126, 234, 0.2);
    border-color: var(--primary-color);
}

/* Legend */
.legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.legend-color {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 2px solid var(--border-color);
}

.legend-color.available {
    background: white;
}

.legend-color.booked {
    background: #fee2e2;
    border-color: #fecaca;
}

.legend-color.selected {
    background: var(--primary-color);
    border-color: var(--primary-dark);
}

.legend-color.changeover {
    background: linear-gradient(to top right, #fee2e2 0%, #fee2e2 49%, white 51%, white 100%);
    border-color: #fecaca;
}

/* Booking Alert Modal */
.booking-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
    backdrop-filter: blur(4px);
}

.booking-alert-box {
    background: white;
    border-radius: 16px;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    overflow: hidden;
}

.alert-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    font-size: 3rem;
}

.alert-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 1.5rem 1.5rem 1rem;
    text-align: center;
    font-weight: 700;
}

.alert-message {
    padding: 0 1.5rem;
    color: #991b1b;
    background: #fee2e2;
    margin: 0 1.5rem 1rem;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
    font-size: 1rem;
    line-height: 1.6;
}

.alert-tip {
    padding: 0.75rem 1rem;
    margin: 0 1.5rem 0.5rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-tip i {
    font-size: 1.2rem;
    color: #3b82f6;
}

.alert-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1.5rem;
    margin: 1.5rem 0;
}

.alert-season-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    text-align: left;
}

.alert-season-box.low-season {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-color: #10b981;
}

.alert-season-box strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.alert-season-box strong i {
    font-size: 1.1rem;
}

.alert-season-box p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.alert-button {
    width: calc(100% - 3rem);
    margin: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    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;
}

.alert-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(74, 124, 36, 0.3);
}

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

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

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

/* Mobile Responsive */
@media (max-width: 640px) {
    .booking-alert-box {
        max-height: 90vh;
        overflow-y: auto;
        margin: 1rem;
    }
    
    .alert-icon {
        padding: 1.5rem;
        font-size: 2.5rem;
    }
    
    .alert-title {
        font-size: 1.3rem;
        margin: 1rem 1rem 0.75rem;
    }
    
    .alert-message {
        font-size: 0.95rem;
        margin: 0 1rem 0.75rem;
    }
    
    .alert-tip {
        margin: 0 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .alert-info {
        padding: 0 1rem;
        margin: 1rem 0;
    }
    
    .alert-season-box {
        padding: 0.875rem;
    }
    
    .alert-season-box strong {
        font-size: 0.95rem;
    }
    
    .alert-season-box p {
        font-size: 0.85rem;
    }
    
    .alert-button {
        width: calc(100% - 2rem);
        margin: 1rem;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Selection Summary */
.selection-summary {
    max-width: 700px;
    margin: 2rem auto;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.selection-summary h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.selection-summary p {
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

/* Price Breakdown */
#priceBreakdown {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

#priceBreakdown h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.price-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-color);
}

.price-total .price-row {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark);
}

.price-total .price-row span:last-child {
    color: var(--primary-color);
}

/* Optional Services */
.optional-services h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-option {
    margin-bottom: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: white;
    border: 2px solid #e5e7eb;
}

.checkbox-label:hover {
    background: #f9fafb;
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0;
    accent-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.checkbox-label:has(input[type="checkbox"]:disabled) {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f3f4f6;
}

.checkbox-label:has(input[type="checkbox"]:checked) {
    background: #f0fdf4;
    border-color: var(--secondary-color);
}

.checkbox-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    margin-left: 0.75rem;
}

.service-name {
    font-weight: 500;
    color: var(--text-dark);
}

.service-price {
    font-weight: 600;
    color: var(--primary-color);
}

/* Booking Form */
.booking-form {
    max-width: 700px;
    margin: 2rem auto;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.booking-form h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Message Box */
.message-box {
    max-width: 700px;
    margin: 2rem auto;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: none;
}

.message-box.success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.message-box.error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-gray);
}
