/* Testimonials Slider */
.testimonials {
    padding: 5rem 0;
    background-color: #f9f9f9;
    position: relative;
}

.testimonials .container {
    position: relative;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.testimonial {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 1rem;
    position: relative;
    display: none;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}

.testimonial-content::before {
    content: '"\201C"';
    position: absolute;
    left: -1rem;
    top: -1rem;
    font-size: 5rem;
    color: rgba(0, 0, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 3px solid #f0f0f0;
}

.author-info h4 {
    margin: 0 0 0.3rem;
    color: #333;
    font-size: 1.2rem;
}

.author-info p {
    margin: 0 0 0.5rem;
    color: #777;
    font-size: 0.9rem;
}

.rating {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.testimonial-prev,
.testimonial-next {
    background: white;
    border: 2px solid #e0e0e0;
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Booking Form */
.booking-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.booking-form-container {
    flex: 2;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.booking-sidebar {
    flex: 1;
    position: sticky;
    top: 2rem;
    align-self: flex-start;
}

.booking-summary {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.booking-summary h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 1.5rem;
}

.summary-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f5f5f5;
}

.summary-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-item h4 {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-item p {
    margin: 0;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
    padding: 0 1rem;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #999;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step.active .step-number {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.step.completed .step-number {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.step-text {
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.step.active .step-text {
    color: var(--primary-color);
    font-weight: 600;
}

.step.completed .step-text {
    color: #28a745;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
    display: block;
}

.form-step h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.8rem;
}

.form-description {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

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

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #333;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
}

.form-control.error {
    border-color: #dc3545;
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.number-input {
    display: flex;
    align-items: center;
}

.number-input button {
    background: #f5f5f5;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #555;
}

.number-input button:hover {
    background: #e9ecef;
}

.number-input input {
    width: 60px;
    text-align: center;
    border-left: none;
    border-right: none;
    border-radius: 0;
    margin: 0 -1px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid #ddd;
    color: #333;
}

.btn-outline:hover {
    background: #f8f9fa;
    border-color: #999;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.alert {
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: slideDown 0.5s ease-out;
}

.alert i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.alert-success {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.alert-success i {
    color: #4caf50;
}

.booking-review {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

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

.review-section h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.review-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed #eee;
}

.review-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.review-label {
    color: #666;
    font-size: 0.95rem;
}

.review-value {
    font-weight: 500;
    color: #333;
    text-align: right;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .booking-container {
        flex-direction: column;
    }
    
    .booking-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .booking-form-container {
        padding: 1.5rem;
    }
    
    .booking-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .step {
        flex: 1 0 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .step-number {
        margin-bottom: 0;
    }
    
    .booking-steps::before {
        display: none;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
}

/* Dark Mode Styles */
.dark-mode .testimonials {
    background-color: #1a1a1a;
}

.dark-mode .testimonial {
    background: #2d2d2d;
    color: #f0f0f0;
}

.dark-mode .testimonial-content {
    color: #e0e0e0;
}

.dark-mode .testimonial-content::before {
    color: rgba(255, 255, 255, 0.1);
}

.dark-mode .author-info h4 {
    color: #f0f0f0;
}

.dark-mode .author-info p {
    color: #aaa;
}

.dark-mode .testimonial-prev,
.dark-mode .testimonial-next {
    background: #2d2d2d;
    border-color: #444;
    color: #f0f0f0;
}

.dark-mode .testimonial-dot {
    background: #444;
}

.dark-mode .booking-section {
    background: #1a1a1a;
}

.dark-mode .booking-form-container,
.dark-mode .booking-summary {
    background: #2d2d2d;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.dark-mode .form-step h2,
.dark-mode .summary-item p {
    color: #f0f0f0;
}

.dark-mode .form-description,
.dark-mode .form-group label,
.dark-mode .summary-item h4 {
    color: #bbb;
}

.dark-mode .form-control {
    background-color: #333;
    border-color: #444;
    color: #f0f0f0;
}

.dark-mode .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.3);
}

.dark-mode .number-input button {
    background: #333;
    border-color: #444;
    color: #f0f0f0;
}

.dark-mode .number-input button:hover {
    background: #3a3a3a;
}

.dark-mode .booking-review {
    background: #333;
}

.dark-mode .review-section h3 {
    color: #f0f0f0;
    border-color: #444;
}

.dark-mode .review-label {
    color: #aaa;
}

.dark-mode .review-value {
    color: #f0f0f0;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Print Styles */
@media print {
    .testimonial-controls,
    .testimonial-dots,
    .form-actions .btn-outline {
        display: none !important;
    }
    
    .testimonial {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .booking-form-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
