/* Booking Process Steps Styles */
.booking-process-card {
    background: rgba(45, 74, 45, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    margin-top: 20px;
}

.process-step {
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.step-title {
    color: #f8f9fa;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-description {
    color: rgba(248, 249, 250, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Enhanced Package Overview Section for Booking */
.package-overview-section .overview-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #f8f9fa;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

/* Booking-specific card enhancements */
.overview-card.booking-highlight {
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(45, 74, 45, 1);
}

.overview-card.booking-highlight:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

/* Booking stats badges enhancement */
.stats-badge.booking-feature {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.stats-badge.booking-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}

/* Process connector lines */
@media (min-width: 768px) {
    .booking-process-card .row .col-md-4:not(:last-child) .process-step::after {
        content: '';
        position: absolute;
        top: 30px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #d4af37 0%, rgba(212, 175, 55, 0.3) 100%);
        z-index: 1;
    }
}

/* Mobile Responsiveness for Booking Hero */
@media (max-width: 992px) {
    .package-overview-section .overview-title {
        font-size: 2.4rem;
    }

    .booking-process-card {
        padding: 25px;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .package-overview-section .overview-title {
        font-size: 2.2rem;
    }

    .booking-process-card {
        padding: 20px;
    }

    .stats-badge.booking-feature {
        font-size: 0.9rem;
        padding: 12px 24px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.85rem;
    }

    /* Remove connector lines on mobile */
    .booking-process-card .row .col-md-4 .process-step::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .package-overview-section .overview-title {
        font-size: 2rem;
    }

    .package-stats-badges {
        flex-direction: column;
        align-items: center;
    }

    .stats-badge.booking-feature {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .booking-process-card {
        padding: 18px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .step-title {
        font-size: 0.95rem;
    }

    .step-description {
        font-size: 0.8rem;
    }
}

/* Additional animations for booking flow */
@keyframes bookingPulse {
    0% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    }
}

.step-number {
    animation: bookingPulse 3s ease-in-out infinite;
}

.process-step:nth-child(2) .step-number {
    animation-delay: 0.5s;
}

.process-step:nth-child(3) .step-number {
    animation-delay: 1s;
}

/* Focus states for accessibility */
.step-number:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

.stats-badge:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}
/* Safari Booking Form Section */
.safari-booking-form-section {
    background: #ffffff;
    position: relative;
}

/* Booking Steps Wrapper */
.booking-steps-wrapper {
    margin-bottom: 40px;
}

.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step-item.active .step-circle {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-color: #d4af37;
    color: white;
}

.step-item.completed .step-circle {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-color: #28a745;
    color: white;
}

.step-number {
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.step-check {
    font-size: 1.5rem;
    display: none;
}

.step-item.completed .step-number {
    display: none;
}

.step-item.completed .step-check {
    display: block;
}

.step-content {
    text-align: left;
}

.step-title {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.step-description {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0;
}

.step-item.active .step-title {
    color: #d4af37;
}

.step-line {
    width: 60px;
    height: 2px;
    background: #e9ecef;
    margin: 0 20px;
    position: relative;
}

.step-item.active ~ .step-line::before,
.step-item.completed ~ .step-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #d4af37 0%, #b8941f 100%);
    width: 100%;
    transition: width 0.5s ease;
}

/* Form Container */
.booking-form-container {
    position: relative;
}

.safari-booking-form {
    position: relative;
}

/* Form Steps Content */
.booking-step-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.booking-step-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Cards */
.form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    overflow: hidden;
    margin-bottom: 30px;
}

.form-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-bottom: 1px solid #f1f3f4;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.header-icon i {
    font-size: 1.8rem;
    color: white;
}

.header-content {
    flex: 1;
}

.form-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #6c757d;
    margin: 0;
    font-size: 1rem;
}

.form-card-body {
    padding: 40px;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: block;
}

.required {
    color: #dc3545;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1.2rem;
    z-index: 2;
}

.form-control {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-control:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.form-text {
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 5px;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Section Titles */
.section-title {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #d4af37;
    font-size: 1.5rem;
}

/* Travelers Section */
.travelers-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #f1f3f4;
}

.traveler-input {
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.traveler-input:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.traveler-label {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: block;
}

.number-input {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 5px;
}

.number-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-btn:hover {
    background: linear-gradient(135deg, #b8941f 0%, #9a7c1a 100%);
    transform: scale(1.1);
}

.number-btn:disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.number-field {
    width: 60px;
    height: 35px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 10px;
}

.traveler-price {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Dates Section */
.dates-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #f1f3f4;
}

/* Requirements Section */
.requirements-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #f1f3f4;
}

/* Booking Summary */
.booking-summary {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #f1f3f4;
}

.summary-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.summary-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-section h6 {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.price-breakdown {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
}

.price-item:last-child {
    margin-bottom: 0;
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 2px solid #e9ecef;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Form Card Footer */
.form-card-footer {
    background: #f8f9fa;
    padding: 30px 40px;
    border-top: 1px solid #f1f3f4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

/* Buttons */
.btn-next-step,
.btn-prev-step,
.btn-complete-booking {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-next-step,
.btn-complete-booking {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-next-step:hover,
.btn-complete-booking:hover {
    background: linear-gradient(135deg, #b8941f 0%, #9a7c1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-prev-step {
    background: #6c757d;
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-prev-step:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

.btn-complete-booking {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-complete-booking:hover {
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

/* Package Summary Sidebar */
.package-summary-sidebar {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    overflow: hidden;
}

.summary-header {
    position: relative;
    overflow: hidden;
}

.summary-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.summary-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
}

.summary-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: white!important;
}

.summary-location {
    margin: 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #d4af37!important;
}

.summary-details {
    padding: 25px 20px;
    border-bottom: 1px solid #f1f3f4;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    color: #d4af37;
    font-size: 1.1rem;
    width: 20px;
}

.price-summary {
    padding: 25px 20px;
    border-bottom: 1px solid #f1f3f4;
}

.price-summary h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
}

.booking-benefits {
    padding: 25px 20px;
}

.booking-benefits h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.9rem;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-list i {
    color: #28a745;
    font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .booking-steps {
        padding: 25px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .step-line {
        width: 2px;
        height: 40px;
        margin: 10px 0;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-content {
        text-align: center;
    }

    .form-card-header {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }

    .header-icon {
        width: 50px;
        height: 50px;
    }

    .header-icon i {
        font-size: 1.5rem;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .form-card-body {
        padding: 30px 25px;
    }

    .form-card-footer {
        padding: 25px;
        flex-direction: column;
        gap: 15px;
    }

    .btn-next-step,
    .btn-prev-step,
    .btn-complete-booking {
        width: 100%;
        justify-content: center;
    }

    .package-summary-sidebar {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .booking-steps {
        padding: 20px 15px;
    }

    .step-circle {
        width: 45px;
        height: 45px;
    }

    .step-number {
        font-size: 1rem;
    }

    .step-title {
        font-size: 0.95rem;
    }

    .step-description {
        font-size: 0.8rem;
    }

    .form-card-header {
        padding: 20px;
    }

    .form-title {
        font-size: 1.4rem;
    }

    .form-subtitle {
        font-size: 0.9rem;
    }

    .form-card-body {
        padding: 25px 20px;
    }

    .travelers-section,
    .dates-section,
    .requirements-section,
    .booking-summary {
        padding: 25px 20px;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .traveler-input {
        padding: 15px;
    }

    .number-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .number-field {
        width: 50px;
        height: 30px;
        font-size: 1rem;
    }

    .form-card-footer {
        padding: 20px;
    }

    .btn-next-step,
    .btn-prev-step,
    .btn-complete-booking {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .booking-steps {
        padding: 15px 10px;
    }

    .step-circle {
        width: 40px;
        height: 40px;
    }

    .form-card-header {
        padding: 18px;
    }

    .header-icon {
        width: 45px;
        height: 45px;
    }

    .header-icon i {
        font-size: 1.3rem;
    }

    .form-title {
        font-size: 1.3rem;
    }

    .form-card-body {
        padding: 20px 18px;
    }

    .travelers-section,
    .dates-section,
    .requirements-section,
    .booking-summary {
        padding: 20px 18px;
    }

    .section-title {
        font-size: 1.1rem;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .form-control {
        padding: 12px 12px 12px 45px;
        font-size: 0.95rem;
    }

    .input-icon {
        left: 12px;
        font-size: 1.1rem;
    }

    .price-total {
        font-size: 1.1rem;
    }

    .summary-title {
        font-size: 1.2rem;
    }

    .summary-location {
        font-size: 0.9rem;
    }
}

/* Focus states for accessibility */
.number-btn:focus,
.btn-next-step:focus,
.btn-prev-step:focus,
.btn-complete-booking:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* Loading state */
.btn-complete-booking.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-complete-booking.loading span {
    opacity: 0.7;
}

/* Error states */
.alert {
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: none;
}

.alert-danger {
    background: #fee;
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}