.order-hero {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.92) 0%, rgba(15, 118, 110, 0.92) 100%),
                url('https://images.pexels.com/photos/1007657/pexels-photo-1007657.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    padding: 60px 0 40px;
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}

.order-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, transparent 25%, rgba(255,255,255,0.02) 25%, rgba(255,255,255,0.02) 50%, transparent 50%, transparent 75%, rgba(255,255,255,0.02) 75%),
        linear-gradient(-45deg, transparent 25%, rgba(255,255,255,0.02) 25%, rgba(255,255,255,0.02) 50%, transparent 50%, transparent 75%, rgba(255,255,255,0.02) 75%);
    background-size: 60px 60px;
    opacity: 0.3;
}

.order-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.order-hero .breadcrumb a,
.order-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
}

.order-hero .breadcrumb a:hover {
    color: white;
}

.order-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.order-hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.order-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
}

.order-form-container {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.order-form-header {
    background: linear-gradient(135deg, #1e40af 0%, #0f766e 100%);
    padding: 32px;
    color: white;
}

.order-form-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-form-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.order-form {
    padding: 32px;
}

.form-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: var(--primary-color);
}

.checkbox-group {
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    line-height: 1.6;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    padding: 16px 32px;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.6;
}

.form-note i {
    color: var(--primary-color);
}

.order-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-summary {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.order-summary h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-item i {
    font-size: 20px;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
    margin-top: 2px;
}

.summary-item div {
    flex: 1;
}

.summary-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.summary-item span {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
}

.summary-price {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-price span {
    font-size: 14px;
    color: var(--text-secondary);
}

.summary-price strong {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.summary-note {
    margin-top: 16px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.summary-note i {
    color: var(--primary-color);
    margin-top: 2px;
    font-size: 14px;
}

.summary-note p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.help-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.help-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.help-card h4 i {
    color: var(--primary-color);
}

.help-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.help-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    margin-bottom: 12px;
}

.help-link:last-child {
    margin-bottom: 0;
}

.help-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.help-link.whatsapp {
    background: #25D366;
    color: white;
}

.help-link.whatsapp:hover {
    background: #1fa855;
}

.trust-badges {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}

.trust-item i {
    font-size: 18px;
    color: var(--success-color);
    width: 20px;
    text-align: center;
}

@media (max-width: 1024px) {
    .order-grid {
        grid-template-columns: 1fr;
    }

    .order-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .order-hero {
        padding: 40px 0 30px;
    }

    .order-hero h1 {
        font-size: 28px;
    }

    .order-section {
        padding: 40px 0;
    }

    .order-form-header {
        padding: 24px;
    }

    .order-form-header h2 {
        font-size: 20px;
    }

    .order-form {
        padding: 24px;
    }

    .form-section {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

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

    .summary-price strong {
        font-size: 24px;
    }
}
