/* ==========================================================================
   Lotus Travels - Modern Premium CSS Stylesheet
   ========================================================================== */

/* Design Tokens & CSS Variables */
:root {
    /* Color Palette */
    --primary-color: #0F3823;       /* Deep Forest Green */
    --primary-light: #185235;
    --primary-dark: #082214;
    --accent-color: #D4AF37;        /* Warm Marigold Gold */
    --accent-hover: #C5A02E;
    --text-dark: #222222;           /* Soft charcoal for readability */
    --text-muted: #666666;
    --bg-light: #F7F5F0;            /* Soft Alabaster/Sand background */
    --bg-white: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --border-color: #E2DFD8;
    --shadow-color: rgba(15, 56, 35, 0.08);
    
    /* Layout Tokens */
    --max-width: 1200px;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --transition-speed: 0.3s;
    --transition-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-dark);
}

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

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

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Utility Layout Classes */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.rounded { border-radius: var(--border-radius-md); }
.img-responsive { width: 100%; object-fit: cover; }

/* Dynamic Layout Helper Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 8px;
}
.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
}
.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 12px;
}
.accent-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-bounce);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}
.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}
.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

.btn-icon svg {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    transition: transform var(--transition-speed) ease;
}
.btn-icon:hover svg {
    transform: translateX(4px);
}

/* Header & Glassmorphic Sticky Nav */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    padding: 24px 0;
}

.navbar.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}
.logo-lotus {
    color: var(--accent-color);
}
.logo-travels {
    color: var(--bg-white);
    transition: color var(--transition-speed) ease;
}
.scrolled .logo-travels {
    color: var(--primary-color);
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 6px 0;
}
.nav-link:hover, .nav-link.active {
    color: var(--bg-white);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Adjust colors for navbar when scrolled */
.scrolled .nav-link {
    color: var(--text-dark);
}
.scrolled .nav-link:hover, .scrolled .nav-link.active {
    color: var(--primary-color);
}

.nav-btn {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    padding: 10px 22px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
}
.nav-btn:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

/* Mobile Toggle Hamburger button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.mobile-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--bg-white);
    border-radius: 2px;
    transition: all var(--transition-speed) ease;
}
.scrolled .mobile-toggle .bar {
    background-color: var(--primary-color);
}

/* Hero Banner Styling */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('assets/hero-backwaters.png');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 34, 20, 0.85) 0%, rgba(28, 78, 128, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 4rem;
    color: var(--bg-white);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease;
}
.hero-title .highlight {
    color: var(--accent-color);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1.4s ease;
}

.hero-contact-badge {
    animation: fadeInUp 1.6s ease;
}

.whatsapp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    backdrop-filter: blur(5px);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
}
.whatsapp-badge:hover {
    background: #25D366;
    border-color: #25D366;
    color: var(--bg-white);
}
.whatsapp-badge svg {
    width: 18px;
    height: 18px;
}

/* Mouse Scroll indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
}
.mouse {
    width: 26px;
    height: 44px;
    border: 2px solid var(--bg-white);
    border-radius: 13px;
    display: block;
    position: relative;
}
.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s infinite;
}

/* Why Choose Us & Generic Card Style */
.why-us {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed) var(--transition-bounce);
    overflow: hidden;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(15, 56, 35, 0.12);
}

.feat-card {
    padding: 40px 30px;
    text-align: center;
    border-top: 4px solid transparent;
}
.feat-card:hover {
    border-top-color: var(--accent-color);
}
.feat-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(15, 56, 35, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
}
.feat-card:hover .feat-icon {
    background-color: var(--primary-color);
    color: var(--accent-color);
}
.feat-icon svg {
    width: 28px;
    height: 28px;
}
.feat-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}
.feat-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Our Vehicle (Tempo Traveller Showcase) */
.vehicle {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.vehicle-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.vehicle-image {
    position: relative;
}
.vehicle-image img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.vehicle-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    padding: 10px 20px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.vehicle-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}
.vehicle-intro {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.spec-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.spec-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.spec-icon svg {
    width: 22px;
    height: 22px;
}
.spec-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.spec-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.vehicle-highlights {
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
    margin-bottom: 35px;
}
.vehicle-highlights h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.vehicle-highlights ul {
    list-style: none;
}
.vehicle-highlights li {
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
}
.vehicle-highlights li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.arrow-icon {
    width: 16px !important;
    height: 16px !important;
}

/* Honeymoon Packages UI Elements */
.packages {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.package-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-img-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}
.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.package-card:hover .package-img {
    transform: scale(1.1);
}
.package-duration {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(15, 56, 35, 0.9);
    color: var(--accent-color);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 30px;
}

.package-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.package-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.package-features {
    list-style: none;
    margin-bottom: 24px;
}
.package-features li {
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.check-icon {
    width: 16px;
    height: 16px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}
.price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}
.price-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Booking Interactive Wizard Styling */
.booking {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.booking-wizard-card {
    background: var(--bg-white);
    border: none;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(15, 56, 35, 0.08);
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}
.wizard-steps::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step-tab {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33.33%;
    cursor: pointer;
}
.step-num {
    width: 34px;
    height: 34px;
    background-color: var(--border-color);
    color: var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    transition: all var(--transition-speed) ease;
}
.step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all var(--transition-speed) ease;
}

.step-tab.active .step-num {
    background-color: var(--primary-color);
    color: var(--accent-color);
}
.step-tab.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.step-tab.completed .step-num {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

/* Wizard Form Elements */
.step-content {
    display: none;
}
.step-content.active {
    display: block;
    animation: fadeIn var(--transition-speed) ease;
}

.form-group {
    margin-bottom: 24px;
}
.form-row {
    display: flex;
    gap: 20px;
}
.col-6 { width: 50%; }

label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    background-color: #FAFAFA;
    outline: none;
    transition: all var(--transition-speed) ease;
}
.form-control:focus {
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(15, 56, 35, 0.08);
}

textarea.form-control {
    resize: vertical;
}

.form-help {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

/* Checkbox Customizations */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}
.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 400;
    user-select: none;
}
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #FAFAFA;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all var(--transition-speed) ease;
}
.checkbox-container:hover input ~ .checkmark {
    border-color: var(--primary-color);
}
.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox-container input:checked ~ .checkmark::after {
    display: block;
}
.checkbox-container .checkmark::after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid var(--accent-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Validation Style */
.form-control.is-invalid {
    border-color: #D32F2F;
    background-color: #FFEBEE;
}
.invalid-feedback {
    color: #D32F2F;
    font-size: 0.8rem;
    margin-top: 4px;
    display: none;
}
.form-control.is-invalid + .invalid-feedback {
    display: block;
}

/* Summary Box in Wizard */
.booking-summary-box {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius-md);
    margin: 30px 0;
    border: 1px dashed var(--border-color);
}
.booking-summary-box h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}
.summary-details p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    font-weight: 700;
}
.total-estimated-price {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.wizard-buttons button {
    min-width: 120px;
}
#step-1 .wizard-buttons {
    justify-content: flex-end;
}

/* Testimonials / Sliders */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.testimonial-slider {
    position: relative;
    min-height: 250px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.stars {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 24px;
}
.client-details strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}
.client-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}
.dot {
    width: 10px;
    height: 10px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}
.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* FAQs - Clean Accordion Accordion */
.faqs {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 12px var(--shadow-color);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: left;
    cursor: pointer;
}

.accordion-icon {
    position: relative;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.accordion-icon::before, .accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    transition: transform var(--transition-speed) ease;
}
/* Horizontal bar */
.accordion-icon::before {
    width: 16px;
    height: 2px;
}
/* Vertical bar */
.accordion-icon::after {
    width: 2px;
    height: 16px;
}
.accordion-header[aria-expanded="true"] .accordion-icon::after {
    transform: rotate(90deg);
}
.accordion-header[aria-expanded="true"] .accordion-icon::before {
    transform: rotate(90deg);
}

.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) cubic-bezier(0, 1, 0, 1);
}
.accordion-header[aria-expanded="true"] + .accordion-collapse {
    max-height: 500px;
    transition: max-height var(--transition-speed) cubic-bezier(0.5, 1, 0.89, 1);
}
.accordion-body {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact Info & Messaging Forms */
.contact {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.contact-info {
    padding-right: 40px;
}
.contact-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.contact-intro {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 36px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}
.contact-method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.method-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(15, 56, 35, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.method-icon svg {
    width: 20px;
    height: 20px;
}
.method-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
}
.method-text a {
    font-size: 1.05rem;
    color: var(--primary-color);
    font-weight: 600;
}
.method-text a:hover {
    color: var(--accent-color);
}

.contact-card {
    background-color: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--accent-color);
    padding: 24px;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}
.contact-card h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}
.contact-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.contact-form-card {
    padding: 40px;
    border: none;
    box-shadow: 0 15px 45px rgba(15, 56, 35, 0.08);
}
.contact-form-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.contact-form-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* Footer Section styling */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.7fr 1.4fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4, .footer-contact h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.85rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--bg-white);
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}
.footer-socials a:hover {
    background-color: #25D366;
    color: var(--bg-white);
    transform: translateY(-3px);
}
.footer-socials svg {
    width: 18px;
    height: 18px;
}

/* Float Floating Success Toast Notification */
.notification {
    position: fixed;
    bottom: 30px;
    right: -400px;
    background-color: var(--primary-color);
    color: var(--accent-color);
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 4px solid var(--accent-color);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.notification.show {
    right: 30px;
}
.notification-message {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--bg-white);
}
.notification-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    cursor: pointer;
}
.notification-close:hover {
    color: var(--bg-white);
}

/* Dialog Modal Styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 34, 20, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-speed) ease;
}
.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 520px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: scale(0.85);
    transition: transform var(--transition-speed) var(--transition-bounce);
}
.modal.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: color var(--transition-speed) ease;
}
.modal-close:hover {
    color: var(--text-dark);
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}
.success-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(15, 56, 35, 0.05);
    color: #2E7D32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.success-icon svg {
    width: 32px;
    height: 32px;
}
.modal-header h3 {
    font-size: 1.6rem;
}

.modal-body {
    font-size: 0.95rem;
}
.modal-body p {
    margin-bottom: 16px;
    text-align: center;
    color: var(--text-muted);
}

.booking-receipt {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
}
.booking-receipt p {
    text-align: left;
    margin-bottom: 8px;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}
.booking-receipt p:last-child {
    margin-bottom: 0;
}
.receipt-price {
    border-top: 1px solid var(--border-color);
    padding-top: 8px;
    font-weight: 700;
    font-size: 1rem !important;
}

.redirect-instruction {
    font-weight: 500;
    color: var(--primary-color) !important;
    font-size: 0.9rem;
    margin: 16px 0 20px !important;
}

/* ==========================================================================
   Keyframes & Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scrollMouse {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Tablet Layout (1024px) */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .vehicle-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile Layout (768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 16px 0;
        background: var(--bg-glass);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .logo-travels {
        color: var(--primary-color);
    }
    .mobile-toggle {
        display: flex;
    }
    .mobile-toggle .bar {
        background-color: var(--primary-color);
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 30px;
        gap: 24px;
        transition: left 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    .nav-menu.open {
        left: 0;
    }
    
    .nav-link {
        color: var(--text-dark);
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
    }
    .nav-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .grid-4, .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .col-6 {
        width: 100%;
    }
    
    .wizard-steps {
        margin-bottom: 30px;
    }
    .step-label {
        font-size: 0.75rem;
    }
    .booking-wizard-card {
        padding: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .modal-content {
        padding: 24px;
    }
}
