/* Booking Form Styles */
.shipco-booking-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.shipco-booking-main {
    flex: 1;
    max-width: 720px;
}

.shipco-quote-sidebar {
    width: 340px;
    flex-shrink: 0;
}

.shipco-progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.shipco-progress-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    right: 0;
    height: 2px;
    width: 92%;
    background: #e0e0e0;
    z-index: 1;
}

.shipco-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.shipco-step-number {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: 600;
}

.shipco-step.active .shipco-step-number {
    background: #ff5400;
    border-color: #ff5400;
    color: white;
}

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

.shipco-step span {
    font-size: 14px;
    color: #6B7280;
}

.shipco-step.active span {
    color: #111827;
    font-weight: 500;
}

/* Form Styling */
.shipco-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shipco-form h2 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #333;
}

.shipco-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.shipco-form-group {
    margin-bottom: 20px;
}

.shipco-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.shipco-form-group input[type="text"],
.shipco-form-group input[type="email"],
.shipco-form-group input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.shipco-form-group input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* Radio Groups */
.shipco-radio-group {
    display: flex;
    gap: 20px;
}

.shipco-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.shipco-radio input[type="radio"] {
    margin-right: 8px;
}

/* Phone Fields */
.shipco-phone-fields {
    margin-bottom: 20px;
}

.shipco-add-phone {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    margin-top: 8px;
    font-size: 14px;
}

.shipco-add-phone:hover {
    text-decoration: underline;
}

/* Navigation Buttons */
.shipco-next-btn,
.shipco-prev-btn,
.shipco-submit-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.shipco-next-btn,
.shipco-submit-btn {
    background: #ff5400;
    color: white;
}

.shipco-prev-btn {
    background: #f8f9fa;
    color: #333;
    margin-right: 12px;
}

.shipco-next-btn:hover,
.shipco-submit-btn:hover {
    background: #ff5400;
}

.shipco-prev-btn:hover {
    background: #e2e6ea;
}

/* Quote Sidebar */
.shipco-quote-sidebar {
    position: sticky;
    top: 20px;
}

.shipco-quote-details {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shipco-quote-details h3 {
    margin: 0 0 20px;
    font-size: 20px;
    color: #333;
}

.shipco-detail-group {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.shipco-detail-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.shipco-detail-group h4 {
    margin: 0 0 12px;
    font-size: 16px;
    color: #666;
}

.shipco-detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 15px;
}

.shipco-detail-item label {
    color: #666;
}

.shipco-price {
    font-size: 24px;
    font-weight: 600;
    color: #28a745;
    margin-bottom: 8px;
}

.shipco-price-note {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .shipco-booking-container {
        flex-direction: column;
    }

    .shipco-quote-sidebar {
        width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .shipco-progress-steps {
        display: none;
    }

    .shipco-form {
        padding: 20px;
    }

    .shipco-radio-group {
        flex-direction: column;
        gap: 10px;
    }
}

.shipco-thank-you {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shipco-thank-you-header {
    text-align: center;
    margin-bottom: 3rem;
}

.shipco-thank-you-icon {
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease-out;
}

.shipco-confirmation-number {
    color: #666;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.shipco-confirmation-details {
    display: grid;
    gap: 2rem;
}

.shipco-confirmation-section {
    margin-bottom: 2rem;
}

.shipco-steps-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.shipco-step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.2s;
}

.shipco-step-item:hover {
    transform: translateY(-2px);
}

.shipco-step-number {
    background: #4CAF50;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.shipco-step-content h4 {
    margin: 0 0 0.5rem;
    color: #2c3e50;
}

.shipco-step-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.shipco-contact-info {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 2rem;
}

.shipco-contact-methods {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.shipco-contact-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #FF5402;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.shipco-contact-button:hover {
    background: rgb(214, 68, 0);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .shipco-thank-you {
        padding: 1.5rem;
    }

    .shipco-contact-methods {
        flex-direction: column;
    }

    .shipco-contact-button {
        width: 100%;
        justify-content: center;
    }
}

