/* ========================================
   BOOKING PAGE - NEXT LEVEL DESIGN
   Airport Cars - Modern Booking Experience
   ======================================== */

/* ========================================
   BOOKING BANNER
   ======================================== */
.booking-banner {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, rgba(8, 7, 6, 0.9), rgba(8, 7, 6, 0.7)), url('../images/fleet.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.booking-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(8, 7, 6, 0.5) 100%);
}

.booking-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.booking-banner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.booking-banner-breadcrumb a {
    color: #deaf25;
    text-decoration: none;
    transition: color 0.3s ease;
}

.booking-banner-breadcrumb a:hover {
    color: #f0c840;
    text-decoration: none;
}

.booking-banner-breadcrumb i {
    font-size: 12px;
}

.booking-banner h1 {
    font-size: 42px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 15px 0;
    animation: fadeInUp 0.8s ease;
}

.booking-banner-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

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

/* ========================================
   BOOKING SECTION - NEXT LEVEL DESIGN
   ======================================== */
.booking-section {
    padding: 60px 0 80px;
    background: #0a0909;
    min-height: 100vh;
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(180deg, rgba(222, 175, 37, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.booking-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ========================================
   PROGRESS STEPS
   ======================================== */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(15, 15, 15, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(222, 175, 37, 0.1);
    position: relative;
    overflow: hidden;
}

.booking-progress::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(222, 175, 37, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.step-check {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    background: #7eb62e;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    border: 3px solid #0a0909;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, rgba(222, 175, 37, 0.2), rgba(222, 175, 37, 0.1));
    border-color: #deaf25;
    color: #deaf25;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(222, 175, 37, 0.4);
}

.progress-step.active .step-check {
    display: flex;
}

.progress-step.current .step-circle {
    background: linear-gradient(135deg, #deaf25, #f0c840);
    border-color: #f0c840;
    color: #000;
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(222, 175, 37, 0.6);
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(222, 175, 37, 0.6);
    }
    50% {
        box-shadow: 0 0 60px rgba(222, 175, 37, 0.8);
    }
}

.step-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.progress-step.active .step-label {
    color: #deaf25;
    font-weight: 600;
}

.progress-step.current .step-label {
    color: #f0c840;
}

.progress-line {
    width: 100px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.progress-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #deaf25, #f0c840);
    transition: width 0.6s ease;
}

.progress-line.active::before {
    width: 100%;
}

/* ========================================
   BOOKING LAYOUT
   ======================================== */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    margin-top: 40px;
}

.booking-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ========================================
   VEHICLE SHOWCASE CARD
   ======================================== */
.vehicle-showcase-card {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(15, 15, 15, 0.95));
    border: 2px solid rgba(222, 175, 37, 0.2);
    border-radius: 25px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.vehicle-showcase-card:hover {
    border-color: rgba(222, 175, 37, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(222, 175, 37, 0.2);
}

.showcase-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(222, 175, 37, 0.1), transparent);
    border-bottom: 1px solid rgba(222, 175, 37, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.showcase-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #deaf25, #f0c840);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.showcase-badge i {
    font-size: 14px;
}

.showcase-title {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.showcase-image-container {
    position: relative;
    height: 350px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 40px;
    filter: drop-shadow(0 10px 30px rgba(222, 175, 37, 0.3));
    transition: transform 0.6s ease;
}

.vehicle-showcase-card:hover .showcase-image {
    transform: scale(1.05);
}

.vehicle-specs-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(222, 175, 37, 0.1);
}

.spec-card {
    background: rgba(15, 15, 15, 0.8);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.spec-card:hover {
    background: rgba(222, 175, 37, 0.1);
    transform: translateY(-3px);
}

.spec-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(222, 175, 37, 0.1);
    border: 2px solid rgba(222, 175, 37, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #deaf25;
    transition: all 0.3s ease;
}

.spec-card:hover .spec-icon {
    background: rgba(222, 175, 37, 0.2);
    border-color: #deaf25;
    transform: rotate(10deg);
}

.spec-content {
    text-align: center;
}

.spec-value {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.spec-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rental-info-card {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.rental-info-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.rental-info-item i {
    font-size: 24px;
    color: #deaf25;
}

.rental-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rental-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rental-value {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
}

.rental-info-item.highlight .rental-value {
    color: #deaf25;
    font-size: 16px;
}

.rental-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   PERSONAL INFORMATION CARD
   ======================================== */
.personal-info-card {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(15, 15, 15, 0.95));
    border: 2px solid rgba(222, 175, 37, 0.2);
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.personal-info-card:hover {
    border-color: rgba(222, 175, 37, 0.4);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(222, 175, 37, 0.2);
}

.card-header i {
    font-size: 28px;
    color: #deaf25;
}

.card-header h3 {
    flex: 1;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.required-badge {
    padding: 6px 12px;
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 15px;
    font-size: 11px;
    color: rgba(255, 59, 48, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modern-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modern-form-group.full-width {
    grid-column: 1 / -1;
}

.modern-form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.modern-form-group label i {
    font-size: 16px;
    color: #deaf25;
    width: 20px;
}

.modern-form-group input,
.modern-form-group textarea {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.modern-form-group input:focus,
.modern-form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: #deaf25;
    box-shadow: 0 0 0 4px rgba(222, 175, 37, 0.1);
    transform: translateY(-2px);
}

.modern-form-group input::placeholder,
.modern-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.booking-title-select-white {
    color: #fff;
}

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

/* ========================================
   SIDEBAR - PRICE SUMMARY
   ======================================== */
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.booking-sidebar::-webkit-scrollbar {
    width: 6px;
}

.booking-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.booking-sidebar::-webkit-scrollbar-thumb {
    background: rgba(222, 175, 37, 0.3);
    border-radius: 10px;
}

.booking-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(222, 175, 37, 0.5);
}

.price-summary-card {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(15, 15, 15, 0.95));
    border: 2px solid rgba(222, 175, 37, 0.2);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.price-summary-card:hover {
    border-color: rgba(222, 175, 37, 0.4);
}

.summary-header,
.payment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(222, 175, 37, 0.2);
}

.summary-header i,
.payment-header i {
    font-size: 22px;
    color: #deaf25;
}

.summary-header h3,
.payment-header h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
}

.price-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-label-inline {
    white-space: nowrap;
}

.price-label i {
    font-size: 14px;
    color: #deaf25;
}

.price-value {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    text-align: right;
}

.price-item-primary {
    padding: 16px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(222, 175, 37, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.price-item.subtotal {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-item.tax {
    color: rgba(255, 255, 255, 0.5);
}

.price-item.advance {
    padding: 14px 16px;
    border: 1px solid rgba(226, 75, 60, 0.35);
    background: rgba(226, 75, 60, 0.08);
    border-radius: 10px;
}

.price-item.advance .price-label {
    color: rgba(255, 255, 255, 0.85);
}

.price-item.advance .price-label i {
    color: #e24b3c;
}

.price-item.advance .price-value {
    color: #e24b3c;
    font-weight: 700;
}

.discount-offer-row {
    padding: 12px 14px;
    border: 1px solid rgba(222, 175, 37, 0.2);
    background: rgba(222, 175, 37, 0.06);
    border-radius: 10px;
}

.discount-offer-row .price-label {
    color: rgba(255, 255, 255, 0.82);
}

.discount-offer-row .price-label i {
    color: #deaf25;
}

.discount-offer-row .price-value {
    color: #deaf25;
    font-weight: 700;
}

.advance-note {
    margin: -2px 0 6px;
    padding: 10px 12px;
    font-size: 13px;
    color: #fff;
    text-align: left;
    background: linear-gradient(135deg, rgba(226, 75, 60, 0.18), rgba(226, 75, 60, 0.05));
    border-left: 3px solid #e24b3c;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.2px;
}

.advance-note i {
    color: #e24b3c;
    font-size: 14px;
}

.price-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(222, 175, 37, 0.3), transparent);
    margin: 10px 0;
}

.addons-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(222, 175, 37, 0.15), rgba(222, 175, 37, 0.05));
    border: 2px solid rgba(222, 175, 37, 0.3);
    border-radius: 15px;
    margin-top: 10px;
}

.total-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.total-value {
    font-size: 32px;
    color: #deaf25;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.total-value .currency {
    font-size: 20px;
}

.daily-rate-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    margin-top: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.daily-rate-info i {
    color: #deaf25;
    font-size: 16px;
}

.daily-rate-info strong {
    color: #deaf25;
}

/* ========================================
   PAYMENT OPTIONS CARD
   ======================================== */
.payment-options-card {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(15, 15, 15, 0.95));
    border: 2px solid rgba(222, 175, 37, 0.2);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.payment-option {
    position: relative;
    cursor: pointer;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.payment-option-content i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.payment-option-content span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.payment-option:hover .payment-option-content {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(222, 175, 37, 0.3);
}

.payment-option input[type="radio"]:checked + .payment-option-content {
    background: linear-gradient(135deg, rgba(222, 175, 37, 0.15), rgba(222, 175, 37, 0.05));
    border-color: #deaf25;
    box-shadow: 0 0 20px rgba(222, 175, 37, 0.2);
}

.payment-option input[type="radio"]:checked + .payment-option-content i {
    color: #deaf25;
    transform: scale(1.1);
}

.payment-option input[type="radio"]:checked + .payment-option-content span {
    color: #deaf25;
}

.payment-option.payment-option-disabled {
    cursor: not-allowed;
}

.payment-option input[type="radio"]:disabled + .payment-option-content {
    opacity: 0.45;
    filter: grayscale(0.35);
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.payment-option.payment-option-disabled:hover .payment-option-content {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
}

.payment-option input[type="radio"]:disabled + .payment-option-content i,
.payment-option input[type="radio"]:disabled + .payment-option-content span {
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   TERMS & CONDITIONS
   ======================================== */
.terms-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #deaf25;
}

.terms-checkbox a {
    color: #deaf25;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-checkbox a:hover {
    color: #f0c840;
}

/* ========================================
   COMPLETE BOOKING BUTTON
   ======================================== */
.complete-booking-btn {
    width: 100%;
    padding: 20px 30px;
    background: linear-gradient(135deg, #deaf25 0%, #f0c840 50%, #deaf25 100%);
    background-size: 200% 100%;
    color: #000;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(222, 175, 37, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.complete-booking-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.complete-booking-btn:hover::before {
    width: 500px;
    height: 500px;
}

.complete-booking-btn:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(222, 175, 37, 0.6);
}

.complete-booking-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 24px;
}

.btn-text {
    flex: 1;
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.complete-booking-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* ========================================
   TRUST BADGES
   ======================================== */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.trust-badge i {
    font-size: 16px;
    color: #7eb62e;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(126, 182, 46, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media screen and (max-width: 1200px) {
    .booking-layout {
        grid-template-columns: 1fr 380px;
    }

    .progress-line {
        width: 80px;
    }
}

@media screen and (max-width: 1024px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        position: relative;
        top: 0;
        max-height: none;
    }

    .vehicle-specs-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .rental-info-card {
        flex-direction: column;
        gap: 15px;
    }

    .rental-divider {
        width: 100%;
        height: 1px;
    }
}

@media screen and (max-width: 768px) {
    .booking-section {
        padding: 40px 0 60px;
    }

    .booking-progress {
        padding: 20px 15px;
        flex-wrap: wrap;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .step-label {
        font-size: 11px;
    }

    .progress-line {
        width: 60px;
    }

    .showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .showcase-title {
        font-size: 24px;
    }

    .showcase-image-container {
        height: 280px;
    }

    .vehicle-specs-modern {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .booking-section {
        padding: 30px 0 50px;
    }

    .booking-progress {
        padding: 15px 10px;
    }

    .step-circle {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .progress-line {
        width: 40px;
    }

    .vehicle-showcase-card,
    .personal-info-card,
    .price-summary-card,
    .payment-options-card {
        padding: 20px;
        border-radius: 20px;
    }

    .showcase-image-container {
        height: 220px;
    }

    .complete-booking-btn {
        padding: 18px 25px;
        font-size: 16px;
    }
}

/* ========================================
   CONFIRMATION SECTION
   ======================================== */
.confirmation-section {
    padding: 80px 0;
    background: #0a0909;
    min-height: 100vh;
}

.confirmation-animation {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.success-checkmark {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.check-icon {
    width: 120px;
    height: 120px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #7eb62e;
}

.check-icon::before {
    top: 3px;
    left: -2px;
    width: 40px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}

.check-icon::after {
    top: 0;
    left: 40px;
    width: 80px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}

.icon-line {
    height: 5px;
    background-color: #7eb62e;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.icon-line.line-tip {
    top: 56px;
    left: 20px;
    width: 40px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.icon-line.line-long {
    top: 48px;
    right: 12px;
    width: 65px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(126, 182, 46, 0.5);
}

.icon-fix {
    top: 12px;
    width: 7px;
    left: 34px;
    z-index: 1;
    height: 100px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: #0a0909;
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 30px;
        left: 20px;
        top: 56px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 60px;
        right: 12px;
        top: 48px;
    }
}

.confirmation-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.confirmation-title {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 15px 0;
    animation: fadeInUp 0.8s ease;
}

.confirmation-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 40px 0;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.booking-reference-card {
    background: linear-gradient(135deg, rgba(222, 175, 37, 0.15), rgba(222, 175, 37, 0.05));
    border: 2px solid rgba(222, 175, 37, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.reference-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reference-header i {
    font-size: 24px;
    color: #deaf25;
}

.reference-number {
    font-size: 36px;
    font-weight: 700;
    color: #deaf25;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.reference-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.confirmation-summary {
    text-align: left;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.summary-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(222, 175, 37, 0.2);
}

.summary-title i {
    color: #deaf25;
    font-size: 28px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.summary-card {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(15, 15, 15, 0.95));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.summary-card:hover {
    border-color: rgba(222, 175, 37, 0.3);
    transform: translateY(-3px);
}

.summary-card.highlight {
    background: linear-gradient(135deg, rgba(222, 175, 37, 0.15), rgba(222, 175, 37, 0.05));
    border-color: rgba(222, 175, 37, 0.5);
}

.summary-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(222, 175, 37, 0.1);
    border: 2px solid rgba(222, 175, 37, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #deaf25;
    flex-shrink: 0;
}

.summary-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.summary-card.highlight .summary-value {
    font-size: 20px;
    color: #deaf25;
}

.whats-next-section {
    text-align: left;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.whats-next-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(222, 175, 37, 0.2);
}

.whats-next-title i {
    color: #deaf25;
    font-size: 28px;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.next-step {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(15, 15, 15, 0.95));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.next-step:hover {
    border-color: rgba(222, 175, 37, 0.3);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #deaf25, #f0c840);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.step-content h4 {
    font-size: 18px;
    color: #fff;
    margin: 0 0 10px 0;
}

.step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 1s backwards;
}

.confirmation-actions button {
    padding: 16px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-download {
    background: linear-gradient(135deg, #deaf25, #f0c840);
    color: #000;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(222, 175, 37, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-home {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-home:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(222, 175, 37, 0.5);
    transform: translateY(-3px);
}

.confirmation-support {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease 1.2s backwards;
}

.confirmation-support i {
    font-size: 28px;
    color: #deaf25;
}

.confirmation-support p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.confirmation-support a {
    color: #deaf25;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.confirmation-support a:hover {
    color: #f0c840;
}

/* Confirmation Responsive */
@media screen and (max-width: 768px) {
    .confirmation-title {
        font-size: 32px;
    }

    .reference-number {
        font-size: 24px;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .next-steps-grid {
        grid-template-columns: 1fr;
    }

    .confirmation-actions {
        flex-direction: column;
    }

    .confirmation-actions button {
        width: 100%;
        justify-content: center;
    }

    .confirmation-support {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .confirmation-section {
        padding: 40px 0;
    }

    .confirmation-title {
        font-size: 28px;
    }

    .reference-number {
        font-size: 20px;
    }

    .summary-card {
        flex-direction: column;
        text-align: center;
    }
}


 /* ========================================
   VEHICLE SUMMARY CARD
   ======================================== */
.vehicle-summary-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(15, 15, 15, 0.95));
    border: 2px solid rgba(222, 175, 37, 0.2);
    border-radius: 20px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.vehicle-summary-card:hover {
    border-color: rgba(222, 175, 37, 0.4);
    box-shadow: 0 15px 50px rgba(222, 175, 37, 0.2);
}

.summary-title {
    font-size: 24px;
    color: #deaf25;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(222, 175, 37, 0.2);
}

.vehicle-summary-image {
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vehicle-summary-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(222, 175, 37, 0.3));
}

.vehicle-summary-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid rgba(222, 175, 37, 0.3);
    transition: all 0.3s ease;
}

.summary-row:hover {
    background: rgba(222, 175, 37, 0.05);
    border-left-color: #deaf25;
    transform: translateX(3px);
}

.summary-row.highlight {
    background: rgba(222, 175, 37, 0.1);
    border-left-color: #deaf25;
    border-left-width: 4px;
}

.summary-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.summary-value {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    text-align: right;
}

.summary-row.highlight .summary-value {
    color: #deaf25;
    font-size: 16px;
}

/* ========================================
   BOOKING FORM CARD
   ======================================== */
.booking-form-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(15, 15, 15, 0.95));
    border: 2px solid rgba(222, 175, 37, 0.2);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.booking-form-card:hover {
    border-color: rgba(222, 175, 37, 0.4);
}

.form-title {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 30px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(222, 175, 37, 0.2);
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: #deaf25;
    box-shadow: 0 0 0 3px rgba(222, 175, 37, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   ORDER SUMMARY CARD
   ======================================== */
.order-summary-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(15, 15, 15, 0.95));
    border: 2px solid rgba(222, 175, 37, 0.2);
    border-radius: 20px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.order-summary-card:hover {
    border-color: rgba(222, 175, 37, 0.4);
    box-shadow: 0 15px 50px rgba(222, 175, 37, 0.2);
}

.order-title {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(222, 175, 37, 0.2);
}

.order-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.order-row:hover {
    background: rgba(255, 255, 255, 0.04);
}

.order-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.order-value {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}

.order-row.total-row {
    background: rgba(222, 175, 37, 0.15);
    border: 2px solid rgba(222, 175, 37, 0.3);
    margin-top: 10px;
    padding: 15px;
}

.order-row.total-row .order-label {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}

.order-row.total-row .total-value {
    font-size: 24px;
    color: #deaf25;
    font-weight: 700;
}

.addons-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.addon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(222, 175, 37, 0.05);
    border-radius: 8px;
    border-left: 3px solid rgba(222, 175, 37, 0.5);
}

.addon-row .order-label {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   PAYMENT SECTION
   ======================================== */
.payment-section {
    margin-bottom: 25px;
}

.payment-title {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.payment-select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: #deaf25;
    box-shadow: 0 0 0 3px rgba(222, 175, 37, 0.1);
}

.payment-select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

/* ========================================
   BOOK NOW BUTTON
   ======================================== */
.book-now-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #deaf25 0%, #f0c840 50%, #deaf25 100%);
    background-size: 200% 100%;
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 5px 25px rgba(222, 175, 37, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.book-now-btn:hover::before {
    width: 400px;
    height: 400px;
}

.book-now-btn:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(222, 175, 37, 0.6);
}

.book-now-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.book-now-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.book-now-btn:hover i {
    transform: scale(1.2) rotate(360deg);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet Landscape */
@media screen and (max-width: 1200px) {
    .booking-grid {
        grid-template-columns: 320px 1fr 320px;
        gap: 25px;
    }

    .vehicle-summary-card,
    .order-summary-card {
        padding: 25px;
    }

    .booking-form-card {
        padding: 30px;
    }
}

/* Tablet Portrait */
@media screen and (max-width: 1024px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vehicle-summary-card,
    .order-summary-card {
        position: relative;
        top: 0;
    }

    .summary-title,
    .order-title {
        font-size: 22px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .booking-banner {
        height: 280px;
        margin-top: 70px;
    }

    .booking-banner h1 {
        font-size: 32px;
    }

    .booking-banner-subtitle {
        font-size: 14px;
    }

    .booking-section {
        padding: 40px 0 60px;
    }

    .booking-grid {
        gap: 25px;
        margin-top: 30px;
    }

    .vehicle-summary-card,
    .booking-form-card,
    .order-summary-card {
        padding: 20px;
        border-radius: 15px;
    }

    .vehicle-summary-image {
        height: 180px;
        padding: 15px;
    }

    .form-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 14px;
    }

    .book-now-btn {
        padding: 16px 25px;
        font-size: 16px;
    }

    .summary-row {
        padding: 8px 12px;
    }

    .order-row {
        padding: 10px 12px;
    }
}

/* Extra Small Mobile */
@media screen and (max-width: 480px) {
    .booking-banner h1 {
        font-size: 26px;
    }

    .container {
        padding: 0 15px;
    }

    .vehicle-summary-card,
    .booking-form-card,
    .order-summary-card {
        padding: 18px;
    }

    .summary-title,
    .form-title,
    .order-title {
        font-size: 20px;
    }

    .summary-row,
    .order-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .summary-value,
    .order-value {
        text-align: left;
    }

    .order-row.total-row {
        flex-direction: row;
        align-items: center;
    }
}

/* ========================================
   LOADING STATE
   ======================================== */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #deaf25;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   SUCCESS MESSAGE
   ======================================== */
.success-message {
    background: rgba(126, 182, 46, 0.1);
    border: 2px solid rgba(126, 182, 46, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideIn 0.5s ease;
}

.success-message i {
    font-size: 24px;
    color: #7eb62e;
}

.success-message p {
    color: #fff;
    margin: 0;
    font-size: 15px;
}

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

/* ========================================
   FOOTER SECTION
   ======================================== */
.site-footer {
    width: 100%;
    background: linear-gradient(180deg, #080706 0%, #000000 100%);
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url(../images/about_right_bg.png) right center no-repeat;
    background-size: cover;
    opacity: 0.02;
    z-index: 1;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer About Column */
.footer-about .footer-logo {
    width: 50px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(222, 175, 37, 0.3));
}

/* Footer Responsive */
@media screen and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
}

@media screen and (max-width: 768px) {
    .site-footer {
        padding: 60px 0 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-about .footer-logo {
        margin: 0 auto 20px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-menu,
    .footer-contact-list {
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    .site-footer {
        padding: 40px 0 0 0;
    }

    .footer-content {
        gap: 30px;
    }
}

@media screen and (max-width: 767px) {
    .price-item,
    .price-total {
        align-items: flex-start;
        flex-direction: column;
    }

    .price-value,
    .total-value {
        text-align: left;
    }
}




