/* Existing CSS remains unchanged */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #f4f7fa;
    color: #2d3748;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.map-container {
    position: sticky;
    top: 2rem;
    height: 70vh;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#map {
    flex: 1;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.trip-info {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: #4a5568;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.trip-info:hover {
    transform: translateY(-2px);
}

.trip-info span {
    font-weight: 500;
}

.trip-info span:first-child {
    color: #3182ce;
}

.trip-info span:last-child {
    color: #38a169;
}

.booking-form {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.booking-form:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.header {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header img.logo {
    width: 96px;
    height: 96px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a202c;
    text-align: center;
    flex-grow: 1;
    margin: 0;
}

.progress-container {
    margin-bottom: 2rem;
}

.progress-bar {
    height: 6px;
    background: #edf2f7;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3182ce, #63b3ed);
    transition: width 0.4s ease-in-out;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.progress-step {
    width: 28px;
    height: 28px;
    background: #edf2f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #718096;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: #3182ce;
    color: #fff;
    transform: scale(1.1);
}

.progress-step.completed {
    background: #38a169;
    color: #fff;
}

.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group {
    margin-bottom: 1.25rem;
    position: relative;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 0.5rem;
    display: block;
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    color: #2d3748;
    background: #f7fafc;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
    outline: none;
    background: #fff;
}

.form-group input::placeholder {
    color: #a0aec0;
}

.form-group i,
.form-group img.field-icon {
    position: absolute;
    top: 62%;
    left: 1.5rem;
    transform: translateY(-50%);
    color: #718096;
    font-size: 1.1rem;
    pointer-events: none;
}

.form-group img.field-icon {
    width: 18px;
    height: 18px;
}

.form-group.with-icon input,
.form-group.with-icon select {
    padding-left: 3rem;
}

.datetime-group {
    display: flex;
    gap: 1rem;
}

.datetime-group .form-group {
    flex: 1;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 200px;
    background: #2d3748;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 0.5rem;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #3182ce, #63b3ed);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.4);
}

button.prev {
    background: linear-gradient(45deg, #718096, #a0aec0);
}

button.prev:hover {
    box-shadow: 0 4px 15px rgba(113, 128, 150, 0.4);
}

#price-display {
    text-align: center;
    padding: 1rem;
    background: #e6fffa;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 500;
    color: #38a169;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(56, 161, 105, 0.1);
    transition: all 0.3s ease;
    display: none;
    position: relative;
}

#price-display:hover {
    transform: scale(1.02);
}

.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid #38a169;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

#step3.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

#price-summary {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    padding: 1rem 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#price-summary:hover {
    transform: scale(1.02);
}

#paypal-button-container,
#request-quote-button {
    width: 100%;
    max-width: 300px;
}

#request-quote-button {
    background: linear-gradient(45deg, #ed8936, #f6ad55);
    display: none;
}

#request-quote-button:hover {
    box-shadow: 0 4px 15px rgba(237, 137, 54, 0.4);
}

/* Add Ons Modal Styles */
.addons-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.addons-modal.active {
    display: flex;
    opacity: 1;
}

.addons-content {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    to {
        transform: translateY(0);
    }
}

.addons-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.addons-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.addons-header p {
    font-size: 0.9rem;
    color: #718096;
}

.addons-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.addon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f7fafc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.addon-item:hover {
    border-color: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.1);
}

.addon-item.selected {
    border-color: #3182ce;
    background: #ebf8ff;
}

.addon-item input[type="checkbox"] {
    margin-right: 1rem;
    accent-color: #3182ce;
    width: 18px;
    height: 18px;
}

.addon-details {
    flex-grow: 1;
}

.addon-details span {
    display: block;
    font-family: 'Poppins', sans-serif;
}

.addon-name {
    font-weight: 500;
    color: #2d3748;
}

.addon-price {
    color: #38a169;
    font-size: 0.9rem;
}

.addons-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.addons-buttons button {
    min-width: 120px;
}

@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
    }
    .map-container {
        position: relative;
        top: 0;
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .booking-form {
        padding: 1.5rem;
    }
    .header h2 {
        font-size: 1.5rem;
    }
    .header img.logo {
        width: 80px;
        height: 80px;
    }
    #price-display,
    #price-summary {
        font-size: 1.1rem;
    }
    .datetime-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    .form-group input,
    .form-group select {
        padding: 0.75rem 1rem 0.75rem 2.5rem;
    }
    .form-group i,
    .form-group img.field-icon {
        left: 1rem;
    }
    .form-group.with-icon input,
    .form-group.with-icon select {
        padding-left: 2.5rem;
    }
}

/* Pikaday Calendar Styling (New Addition) */
.pikaday {
    z-index: 1000 !important; /* Ensure it appears above other elements */
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
    padding: 1rem;
    width: 300px; /* Fixed width for consistency */
}

.pikaday .pika-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    background: #f7fafc;
    padding: 0.5rem;
    text-align: center;
    border-radius: 6px 6px 0 0;
}

.pikaday .pika-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
}

.pikaday .pika-table th {
    text-align: center;
    padding: 0.5rem;
    font-weight: 500;
    color: #4a5568;
    font-size: 0.9rem;
}

.pikaday .pika-table td {
    text-align: center;
    padding: 0.25rem;
    width: 14.2857%; /* 100% / 7 days */
}

.pikaday .pika-button {
    display: block;
    width: 100%;
    padding: 0.5rem;
    border: 1px solid transparent;
    border-radius: 6px;
    background: #fff;
    color: #2d3748;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pikaday .pika-button:hover {
    background: #f7fafc;
    border-color: #3182ce;
}

.pikaday .is-selected .pika-button {
    background: #3182ce;
    color: #fff;
    font-weight: bold;
    border-color: #3182ce;
}

.pikaday .is-today .pika-button {
    border: 1px solid #38a169;
    color: #38a169;
}

.pikaday .pika-prev,
.pikaday .pika-next {
    color: #fff;
    padding: 0.5rem 1rem;
    background: #3182ce;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.pikaday .pika-prev:hover,
.pikaday .pika-next:hover {
    background: #63b3ed;
}