/* Order Method Page Styles */

/* Header Section */
.order-header {
    margin-top: 80px;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Order Steps */
.order-steps {
    padding: 100px 0;
    background: #f7fafc;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(66, 153, 225, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.step-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #4299e1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #f7fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    border-color: #4299e1;
    background: rgba(66, 153, 225, 0.1);
}

.step-icon i {
    font-size: 2rem;
    color: #4299e1;
}

.step-card h3 {
    font-size: 1.4rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    color: #718096;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-details {
    list-style: none;
    text-align: left;
}

.step-details li {
    color: #48bb78;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.step-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

/* Quick Order Demo */
.quick-order-demo {
    padding: 100px 0;
    background: white;
}

.quick-order-demo h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
}

.quick-order-demo > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 50px;
}

.demo-form {
    max-width: 700px;
    margin: 0 auto;
    background: #f7fafc;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.form-step h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

/* Service Options */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-option {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.service-option:hover {
    border-color: #4299e1;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(66, 153, 225, 0.2);
}

.service-option.selected {
    border-color: #4299e1;
    background: rgba(66, 153, 225, 0.05);
}

.service-option i {
    font-size: 2rem;
    color: #4299e1;
    margin-bottom: 10px;
}

.service-option span {
    display: block;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 5px;
}

.service-option .price {
    color: #48bb78;
    font-weight: 500;
    font-size: 0.9rem;
}

/* URL Input */
.url-input-group {
    margin-bottom: 30px;
}

.url-input-group label {
    display: block;
    margin-bottom: 10px;
    color: #1a365d;
    font-weight: 600;
}

.url-input-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.url-input-group input:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.url-validation {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #48bb78;
    font-size: 0.9rem;
}

.url-validation.show {
    display: flex;
}

.url-validation i {
    color: #48bb78;
}

/* Quantity Selector */
.quantity-selector {
    margin-bottom: 30px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 10px;
    color: #1a365d;
    font-weight: 600;
}

.quantity-selector select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.price-summary {
    text-align: center;
    margin-bottom: 30px;
}

.total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
}

.total-price span {
    color: #4299e1;
}

/* Demo Buttons */
.demo-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.next-btn, .prev-btn, .restart-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.next-btn {
    background: #4299e1;
    color: white;
}

.next-btn:hover:not(:disabled) {
    background: #3182ce;
    transform: translateY(-2px);
}

.next-btn:disabled {
    background: #a0aec0;
    cursor: not-allowed;
}

.prev-btn {
    background: #e2e8f0;
    color: #2d3748;
}

.prev-btn:hover {
    background: #cbd5e0;
}

.restart-btn {
    background: #48bb78;
    color: white;
}

.restart-btn:hover {
    background: #38a169;
    transform: translateY(-2px);
}

/* Demo Success */
.demo-success {
    text-align: center;
}

.demo-success i {
    font-size: 4rem;
    color: #48bb78;
    margin-bottom: 20px;
}

.demo-success h4 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 600;
}

.demo-success p {
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.success-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.success-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.success-features .feature i {
    font-size: 1.5rem;
    color: #4299e1;
}

.success-features .feature span {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

/* Payment Methods */
.payment-methods {
    padding: 100px 0;
    background: #f7fafc;
}

.payment-methods h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 700;
}

.payment-methods > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 50px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.payment-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: #4299e1;
}

.payment-card.featured {
    border-color: #4299e1;
    border-width: 2px;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #4299e1;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: #f7fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

.payment-card:hover .payment-icon {
    border-color: #4299e1;
    background: rgba(66, 153, 225, 0.1);
}

.payment-icon i {
    font-size: 2rem;
    color: #4299e1;
}

.payment-card h3 {
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 600;
}

.payment-card p {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 20px;
}

.payment-card ul {
    list-style: none;
    text-align: left;
}

.payment-card ul li {
    color: #48bb78;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.payment-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

/* Order FAQ */
.order-faq {
    padding: 100px 0;
    background: white;
}

.order-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f7fafc;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #4299e1;
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.1);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f7fafc;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: #1a365d;
    font-weight: 600;
}

.faq-question i {
    color: #4299e1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #718096;
    line-height: 1.6;
    font-size: 1rem;
}

/* Order CTA */
.order-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: #4299e1;
    color: white;
    border: 2px solid #4299e1;
}

.cta-btn.primary:hover {
    background: #3182ce;
    border-color: #3182ce;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(66, 153, 225, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #4299e1;
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.2rem;
    }

    .header-content p {
        font-size: 1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-card {
        padding: 30px 20px;
    }

    .demo-form {
        padding: 30px 20px;
    }

    .service-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .demo-buttons {
        flex-direction: column;
        align-items: center;
    }

    .demo-buttons button {
        width: 100%;
        max-width: 200px;
    }

    .success-features {
        gap: 20px;
    }

    .payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .order-header {
        padding: 60px 0;
    }

    .header-content h1 {
        font-size: 1.8rem;
    }

    .order-steps,
    .quick-order-demo,
    .payment-methods,
    .order-faq,
    .order-cta {
        padding: 60px 0;
    }

    .step-card {
        padding: 20px 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        font-size: 1.5rem;
    }

    .demo-form {
        padding: 20px 15px;
    }

    .form-step h3 {
        font-size: 1.3rem;
    }

    .service-option {
        padding: 20px 15px;
    }

    .service-option i {
        font-size: 1.5rem;
    }

    .payment-card {
        padding: 20px;
    }

    .payment-icon {
        width: 60px;
        height: 60px;
    }

    .payment-icon i {
        font-size: 1.5rem;
    }

    .faq-question,
    .faq-answer {
        padding: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
    }

    .cta-benefits {
        grid-template-columns: 1fr;
    }

    .benefit-item i {
        font-size: 2rem;
    }
}